input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
i want to fly from boston at 838 am and arrive in denver at 1110 in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'depart_time.time': '838 am', 'toloc.city_name': 'denver', 'arrive_time.time': '1110', 'arrive_time.period_of_day': 'morning'}
|
what flights are available from pittsburgh to baltimore on thursday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'}
|
what is the arrival time in san francisco for the 755 am flight leaving washington
|
[[FUNCTION]] get_flight_time {'flight_time': 'arrival time', 'fromloc.city_name': 'washington', 'depart_time.time': '755 am'}
|
cheapest airfare from tacoma to orlando
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'tacoma', 'toloc.city_name': 'orlando'}
|
round trip fares from pittsburgh to philadelphia under 1000 dollars
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia', 'cost_relative': 'under', 'fare_amount': '1000 dollars'}
|
i need a flight tomorrow from columbus to minneapolis
|
[[FUNCTION]] get_flight {'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'columbus', 'toloc.city_name': 'minneapolis'}
|
what kind of aircraft is used on a flight from cleveland to dallas
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'dallas'}
|
show me the flights from pittsburgh to los angeles on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'los angeles', 'depart_date.day_name': 'thursday'}
|
all flights from boston to washington
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
what kind of ground transportation is available in denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
show me the flights from dallas to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
show me the flights from san diego to newark by way of houston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san diego', 'toloc.city_name': 'newark', 'stoploc.city_name': 'houston'}
|
what 's the airport at orlando
|
[[FUNCTION]] get_airport {'city_name': 'orlando'}
|
what is the cheapest flight from boston to bwi
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'boston', 'toloc.airport_code': 'bwi'}
|
all flights to baltimore after 6 pm
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'depart_time.time_relative': 'after', 'depart_time.time': '6 pm'}
|
show me the first class fares from boston to denver
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me the ground transportation in denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
all flights from denver to pittsburgh leaving after 6 pm and before 7 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'before', 'depart_time.time': '7 pm'}
|
i need information on flights for tuesday leaving baltimore for dallas dallas to boston and boston to baltimore
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
please give me the flights from boston to pittsburgh on thursday of next week
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'thursday', 'depart_date.date_relative': 'next'}
|
i would like to fly from denver to pittsburgh on united airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'airline_name': 'united airlines'}
|
show me the flights from san diego to newark
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san diego', 'toloc.city_name': 'newark'}
|
please list all first class flights on united from denver to baltimore
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'airline_name': 'united', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
what kinds of planes are used by american airlines
|
[[FUNCTION]] get_aircraft {'airline_name': 'american airlines'}
|
i 'd like to have some information on a ticket from denver to pittsburgh and atlanta
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
i 'd like to book a flight from atlanta to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
which airline serves denver pittsburgh and atlanta
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'atlanta'}
|
show me all flights from boston to pittsburgh on wednesday of next week which leave boston after 2 o'clock pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'wednesday', 'depart_date.date_relative': 'next', 'depart_time.time_relative': 'after', 'depart_time.time': "2 o'clock pm"}
|
atlanta ground transportation
|
[[FUNCTION]] get_ground_service {'city_name': 'atlanta'}
|
i also need service from dallas to boston arriving by noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'boston', 'arrive_time.time_relative': 'by', 'arrive_time.time': 'noon'}
|
show me the cheapest round trip fare from baltimore to dallas
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
show me all flights from new york to milwaukee on northwest airlines departing at 720 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'milwaukee', 'airline_name': 'northwest airlines', 'depart_time.time': '720 am'}
|
flights from new york to miami
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
please find a flight on delta from philadelphia to san francisco and give me the flight numbers
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco'}
|
i need a flight from dallas to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
fares and flights from pittsburgh to philadelphia
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
show me the airlines with first class flights
|
[[FUNCTION]] get_airline {'class_type': 'first class'}
|
what are the flights from st. louis to burbank sunday evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. louis', 'toloc.city_name': 'burbank', 'depart_date.day_name': 'sunday', 'depart_time.period_of_day': 'evening'}
|
i 'd like to arrange a flight from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
show flights from baltimore to san francisco between 6 pm and 8 pm on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco', 'depart_time.start_time': '6 pm', 'depart_time.end_time': '8 pm', 'depart_date.day_name': 'friday'}
|
how far is it from orlando airport to orlando
|
[[FUNCTION]] get_distance {'fromloc.airport_name': 'orlando airport', 'toloc.city_name': 'orlando'}
|
i would like a list of round trip flights between indianapolis and orlando florida for the twenty seventh and the twenty eighth of december
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'orlando', 'toloc.state_name': 'florida', 'depart_date.day_number': 'twenty eighth', 'depart_date.month_name': 'december'}
|
which airline has the most arrivals in atlanta
|
[[FUNCTION]] get_airline {'mod': 'most', 'toloc.city_name': 'atlanta'}
|
what airlines fly from new york to milwaukee to los angeles
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'new york', 'stoploc.city_name': 'milwaukee', 'toloc.city_name': 'los angeles'}
|
pittsburgh to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'denver'}
|
which airlines serve atlanta
|
[[FUNCTION]] get_airline {'city_name': 'atlanta'}
|
show me information on ground transportation for dallas
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas'}
|
what is fare code h
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'h'}
|
show me all flights from boston to dallas fort worth both direct and connecting that arrive before noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas fort worth', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
i need a flight from charlotte to newark leaving today evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'newark', 'depart_date.today_relative': 'today', 'depart_time.period_of_day': 'evening'}
|
what are the times that you have planes leaving from san francisco going to pittsburgh on july seventh
|
[[FUNCTION]] get_flight_time {'flight_time': 'times', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.month_name': 'july', 'depart_date.day_number': 'seventh'}
|
flights from newark to cleveland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'cleveland'}
|
what flights go from boston to pittsburgh after 6 o'clock next tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'after', 'depart_time.time': "6 o'clock", 'depart_date.date_relative': 'next', 'depart_date.day_name': 'tuesday'}
|
how much does the limousine service cost within pittsburgh
|
[[FUNCTION]] get_ground_fare {'transport_type': 'limousine', 'city_name': 'pittsburgh'}
|
does us air have any flights out of atlanta to denver
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
what is booking class c
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'c'}
|
i 'd like to know the shortest trip between boston and san francisco
|
[[FUNCTION]] get_flight {'flight_mod': 'shortest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
i would like to see information for flights from san francisco leaving after 12 pm to pittsburgh on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '12 pm', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'monday'}
|
what is the least expensive flight from denver to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'least expensive', 'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
i need to know information for flights leaving dallas on tuesday evening and returning to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'depart_date.day_name': 'tuesday', 'depart_time.period_of_day': 'evening', 'toloc.city_name': 'atlanta'}
|
what flight goes from denver to baltimore first class on united airlines arriving on may seventh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'class_type': 'first class', 'airline_name': 'united airlines', 'arrive_date.month_name': 'may', 'arrive_date.day_number': 'seventh'}
|
could you please tell me the airlines that fly from toronto to san diego
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'toronto', 'toloc.city_name': 'san diego'}
|
what flights do you have from burbank to tacoma washington
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'burbank', 'toloc.city_name': 'tacoma', 'toloc.state_name': 'washington'}
|
what is the ground transportation from philadelphia airport to the city proper
|
[[FUNCTION]] get_ground_service {'fromloc.airport_name': 'philadelphia airport'}
|
which airlines have first class flights today
|
[[FUNCTION]] get_airline {'class_type': 'first class', 'depart_date.today_relative': 'today'}
|
find the latest flight from san francisco to atlanta that serves a meal
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'atlanta', 'meal': 'meal'}
|
i would like to make a reservation for a flight to denver from philadelphia on this coming sunday
|
[[FUNCTION]] get_flight {'toloc.city_name': 'denver', 'fromloc.city_name': 'philadelphia', 'depart_date.date_relative': 'this', 'depart_date.day_name': 'sunday'}
|
give me a list of airports in baltimore
|
[[FUNCTION]] get_airport {'city_name': 'baltimore'}
|
show me flights from boston to denver on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_date.day_name': 'wednesday'}
|
show me the flights from boston to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
what does fare code q mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'q'}
|
please give me the flights from san francisco to washington dc
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
i need information from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
from seattle to salt lake city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'seattle', 'toloc.city_name': 'salt lake city'}
|
what is the earliest flight from boston to bwi that serves a snack
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.airport_code': 'bwi', 'meal_description': 'snack'}
|
what types of aircraft does delta fly
|
[[FUNCTION]] get_aircraft {'airline_name': 'delta'}
|
what is the cost of a round trip flight from pittsburgh to atlanta beginning on april twenty fifth and returning on may sixth
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.month_name': 'april', 'depart_date.day_number': 'twenty fifth', 'return_date.month_name': 'may', 'return_date.day_number': 'sixth'}
|
give me the flights leaving denver august ninth coming back to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'depart_date.month_name': 'august', 'depart_date.day_number': 'ninth', 'toloc.city_name': 'boston'}
|
list all the flights that fly into general mitchell international
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'general mitchell international'}
|
what flights fly from denver to san francisco on monday tuesday wednesday thursday and friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'friday'}
|
list all flights from indianapolis to seattle
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'seattle'}
|
in flight meal oakland to philadelphia saturday
|
[[FUNCTION]] get_flight {'meal': 'meal', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'saturday'}
|
show me the flights on twa from atlanta in the morning
|
[[FUNCTION]] get_flight {'airline_code': 'twa', 'fromloc.city_name': 'atlanta', 'depart_time.period_of_day': 'morning'}
|
i want to find the first flight from baltimore to boston that serves a meal
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston', 'meal': 'meal'}
|
of all airlines which airline has the most arrivals in atlanta
|
[[FUNCTION]] get_airline {'mod': 'most', 'toloc.city_name': 'atlanta'}
|
display all flights from baltimore to boston on july twenty ninth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston', 'depart_date.month_name': 'july', 'depart_date.day_number': 'twenty ninth'}
|
i want to travel from atlanta to baltimore early in the morning first flight
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'morning', 'flight_mod': 'first'}
|
i now need a flight from san jose to houston leaving on sunday the fourth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san jose', 'toloc.city_name': 'houston', 'depart_date.day_name': 'sunday', 'depart_date.day_number': 'fourth'}
|
what are the flights available after 6 pm between san francisco and boston
|
[[FUNCTION]] get_flight {'depart_time.time_relative': 'after', 'depart_time.time': '6 pm', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
what flights depart baltimore on friday and arrive in san francisco by 8 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'depart_date.day_name': 'friday', 'toloc.city_name': 'san francisco', 'arrive_time.time_relative': 'by', 'arrive_time.time': '8 pm'}
|
show me flights from boston to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
list the delta airlines flights from boston to philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'delta airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
show me the fares from dallas to san francisco
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
what nonstop flights between boston and washington arrive after 4 o'clock pm
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'arrive_time.time_relative': 'after', 'arrive_time.time': "4 o'clock pm"}
|
what is the distance from los angeles international airport to los angeles
|
[[FUNCTION]] get_distance {'fromloc.airport_name': 'los angeles international airport', 'toloc.city_name': 'los angeles'}
|
ground transportation in san jose
|
[[FUNCTION]] get_ground_service {'city_name': 'san jose'}
|
please tell me how many nonstop flights there are from boston to atlanta
|
[[FUNCTION]] get_quantity {'flight_stop': 'nonstop', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
on the earliest flight from san francisco to atlanta on delta is a meal being served
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'atlanta', 'airline_name': 'delta', 'meal': 'meal'}
|
where does canadian airlines international fly
|
[[FUNCTION]] get_flight {'airline_name': 'canadian airlines international'}
|
what flights from denver to pittsburgh arrive before 8 in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'arrive_time.time_relative': 'before', 'arrive_time.time': '8', 'arrive_time.period_of_day': 'morning'}
|
End of preview. Expand
in Data Studio
No dataset card yet
- Downloads last month
- 43