user_query
stringlengths 15
102
| ground_truth
sequencelengths 1
3
| expected_steps
sequencelengths 1
5
|
---|---|---|
What is the city for location ID 1? | [
"New York"
] | [
"get_city_for_location"
] |
What is the name of food with id 6? | [
"Pasta"
] | [
"get_food_name"
] |
get me eve's user info? | [
"{'id': 42, 'name': 'Eve', 'email': 'eve@example.org', 'location': 5, 'favorite_color': 'blue', 'favorite_foods': [5, 7, 4]}"
] | [
"find_users_by_name"
] |
get the current user id | [
"35"
] | [
"get_current_user_id"
] |
what are bob's preferred food items? | [
"Burger",
"Ice Cream",
"Pasta"
] | [
"find_users_by_name",
"get_user_favorite_foods",
"get_food_name"
] |
what is alice's email address? | [
"alice@gmail.com"
] | [
"find_users_by_name",
"get_user_email"
] |
find donna's favorite color | [
"green"
] | [
"find_users_by_name",
"get_user_favorite_color"
] |
weather in LA right now? | [
"Sunny, Temperature: 75掳F"
] | [
"find_locations_by_name",
"get_current_weather_for_location"
] |
time in chicago | [
"2023-11-14 11:15 AM"
] | [
"find_locations_by_name",
"get_current_time_for_location"
] |
list the allergens in chocolate | [
"Milk",
"Soy"
] | [
"find_foods_by_name",
"get_food_allergic_ingredients"
] |
If i eat a serving of pizza, how many calories will I consume? | [
"285"
] | [
"find_foods_by_name",
"get_food_calories"
] |
what is the current users favorite color? | [
"yellow"
] | [
"get_current_user_id",
"get_user_favorite_color"
] |
eve ate a serving of sushi, what allergens was she exposed to? | [
"Fish",
"Soy"
] | [
"find_foods_by_name",
"get_food_allergic_ingredients"
] |
Frank who is Even's friend is allergic to dairy. Can you check the the allergy ingredients for salads? | [
"[]"
] | [
"find_users_by_name",
"find_foods_by_name",
"get_food_allergic_ingredients"
] |
what is the current users favorite color and name? | [
"yellow",
"Charlie"
] | [
"get_current_user_id",
"get_user_favorite_color",
"get_user_name"
] |
whats the name of the city where bob lives? | [
"Los Angeles"
] | [
"find_users_by_name",
"get_user_location",
"get_city_for_location"
] |
Donna is about to go outside. What's the weather like around her? | [
"Rainy, Temperature: 55掳F"
] | [
"find_users_by_name",
"get_user_location",
"get_current_weather_for_location"
] |
Is it likely that Donna is awake right now? What's the time in her time zone? | [
"2023-11-14 12:00 PM"
] | [
"find_users_by_name",
"get_user_location",
"get_current_time_for_location"
] |
I want to check if alice and charlie use the same email provider? get me both their emails | [
"alice@gmail.com",
"charlie@yahoo.com"
] | [
"find_users_by_name",
"get_user_email",
"get_user_email"
] |
which cities do bob and alice live in? | [
"New York",
"Los Angeles"
] | [
"find_users_by_name",
"get_user_location",
"get_city_for_location",
"get_user_location",
"get_city_for_location"
] |
README.md exists but content is empty.
Use the Edit dataset card button to edit it.
- Downloads last month
- 27