input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
show me the list of flights from philadelphia to denver that leave in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver', 'depart_time.period_of_day': 'afternoon'}
|
show me the flights from denver that go to pittsburgh and then atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
show me the flights from san francisco to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
please list only united airlines flights between denver and boston
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
what 's the lowest round trip fare from atlanta to bwi
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'round_trip': 'round trip', 'fromloc.city_name': 'atlanta', 'toloc.airport_code': 'bwi'}
|
what does restriction ap 57 mean
|
[[FUNCTION]] get_abbreviation {'restriction_code': 'ap 57'}
|
i need a flight from pittsburgh to new york city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'new york city'}
|
i am looking for the cheapest fare from indianapolis to orlando on december twenty seventh
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'orlando', 'depart_date.month_name': 'december', 'depart_date.day_number': 'twenty seventh'}
|
what flights leave charlotte north carolina and arrive in phoenix arizona on monday before 4 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'fromloc.state_name': 'north carolina', 'toloc.city_name': 'phoenix', 'toloc.state_name': 'arizona', 'arrive_date.day_name': 'monday', 'arrive_time.time_relative': 'before', 'arrive_time.time': '4 pm'}
|
fares between atlanta and boston
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
show ground transportation in denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
thank you very much now can you help me with information on flights from boston to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
what are the flight numbers of the flights which go from san francisco to washington via indianapolis
|
[[FUNCTION]] get_flight_no {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'washington', 'stoploc.city_name': 'indianapolis'}
|
what is the latest departure from boston to pittsburgh on the seventh of july
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_date.day_number': 'seventh', 'depart_date.month_name': 'july'}
|
flights from atlanta to washington dc on thursday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'}
|
what flights can i find from pittsburgh to san francisco after 9 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '9 am'}
|
show me the flights from san diego to newark
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san diego', 'toloc.city_name': 'newark'}
|
what flights go from dallas to denver after 3 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'after', 'depart_time.time': '3 pm'}
|
flights from newark to cleveland daily
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'cleveland', 'flight_days': 'daily'}
|
do you have any flights from chicago to indianapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'indianapolis'}
|
do you have a 9 o'clock flight from boston to philadelphia
|
[[FUNCTION]] get_flight {'depart_time.time': "9 o'clock", 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
what classes of service does twa have
|
[[FUNCTION]] get_flight {'airline_code': 'twa'}
|
what flights do you have available from denver dallas and pittsburgh into baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
does any airline have a jet flight between pittsburgh and baltimore
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
show me the flights from st. petersburg to salt lake city that arrive before noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'salt lake city', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
what is the earliest flight leaving washington to san francisco
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco'}
|
are there any united airlines flights between boston and dallas
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas'}
|
what flights from st. paul to kansas city on friday with a meal
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. paul', 'toloc.city_name': 'kansas city', 'depart_date.day_name': 'friday', 'meal': 'meal'}
|
i want a flight on continental airlines leaving san francisco california arriving pittsburgh pennsylvania
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'fromloc.city_name': 'san francisco', 'fromloc.state_name': 'california', 'toloc.city_name': 'pittsburgh', 'toloc.state_name': 'pennsylvania'}
|
show me flights from denver to philadelphia on a monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'monday'}
|
tell me about flights from atlanta to charlotte next monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'charlotte', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'monday'}
|
may i see all the flights from cleveland to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'dallas'}
|
all flights before 10 am boston denver
|
[[FUNCTION]] get_flight {'depart_time.time_relative': 'before', 'depart_time.time': '10 am', 'fromloc.city_name': 'denver'}
|
what is the least expensive business class flight between atlanta and dallas
|
[[FUNCTION]] get_flight {'cost_relative': 'least expensive', 'class_type': 'business class', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas'}
|
which flights are there on tuesday from san francisco to pittsburgh
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'}
|
what are the flights from indianapolis to san diego on wednesday the twelfth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'san diego', 'depart_date.day_name': 'wednesday', 'depart_date.day_number': 'twelfth'}
|
i 'd like to find a flight from miami florida to las vegas nevada that would arrive before 4 pm on sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'miami', 'fromloc.state_name': 'florida', 'toloc.city_name': 'las vegas', 'toloc.state_name': 'nevada', 'arrive_time.time_relative': 'before', 'arrive_time.time': '4 pm', 'arrive_date.day_name': 'sunday'}
|
i would like a flight from boston to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
i will be staying downtown in atlanta for two hours could you tell me what the ground transportation is available
|
[[FUNCTION]] get_ground_service {'city_name': 'atlanta'}
|
what is the first flight that travels from atlanta to baltimore that serves lunch
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'meal_description': 'lunch'}
|
is there ground transportation from the airport in denver to downtown
|
[[FUNCTION]] get_ground_service {'fromloc.city_name': 'denver'}
|
what time is the last flight from washington to san francisco
|
[[FUNCTION]] get_flight_time {'flight_time': 'time', 'flight_mod': 'last', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco'}
|
show me flights to san francisco arriving before 1
|
[[FUNCTION]] get_flight {'toloc.city_name': 'san francisco', 'arrive_time.time_relative': 'before', 'arrive_time.time': '1'}
|
what are the flights and fares from boston to philadelphia
|
[[FUNCTION]] get_flight+airfare {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
please show me united nonstop flights between boston and san francisco departing around 5 in the evening
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'flight_stop': 'nonstop', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'arrive_time.time_relative': 'around', 'arrive_time.time': '5', 'arrive_time.period_of_day': 'evening'}
|
i want a flight originating in denver going to pittsburgh and atlanta in either order
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
show me flights from san francisco to dallas please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'dallas'}
|
i would like to know the flights that are available leaving out of pittsburgh to san francisco on thursday night after 9 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'night', 'depart_time.time_relative': 'after', 'depart_time.time': '9 pm'}
|
what is fare code h
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'h'}
|
list all the landings at general mitchell international
|
[[FUNCTION]] get_flight {'toloc.airport_name': 'general mitchell international'}
|
all flights from cleveland to newark
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'newark'}
|
does us air have a flight from toronto to salt lake city monday may thirty first
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'toronto', 'toloc.city_name': 'salt lake city', 'depart_date.day_name': 'monday', 'depart_date.month_name': 'may', 'depart_date.day_number': 'thirty first'}
|
please show me the flights from atlanta to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
what 's the earliest flight from boston to bwi that serves dinner
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.airport_code': 'bwi', 'meal_description': 'dinner'}
|
when do planes leave boston for
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston'}
|
show me the nonstop flights from houston to dallas
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'houston', 'toloc.city_name': 'dallas'}
|
show me any show me what the first class fares are of the flights from pittsburgh to san francisco on monday
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'monday'}
|
show me ground transportation in boston
|
[[FUNCTION]] get_ground_service {'city_name': 'boston'}
|
show me the flights from salt lake city to st. petersburg on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'salt lake city', 'toloc.city_name': 'st. petersburg', 'depart_date.day_name': 'wednesday'}
|
show me the flights from baltimore to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'oakland'}
|
i would like a flight from toronto to san diego that stops in kansas city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'san diego', 'stoploc.city_name': 'kansas city'}
|
is twa flight 497766 from st. petersburg to milwaukee with one stop available tomorrow morning
|
[[FUNCTION]] get_flight {'airline_code': 'twa', 'flight_number': '497766', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'milwaukee', 'flight_stop': 'one stop', 'depart_date.today_relative': 'tomorrow', 'depart_time.period_of_day': 'morning'}
|
please list united flights between boston and denver departing at 9 am
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_time.time': '9 am'}
|
show me the flights from cleveland to memphis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'memphis'}
|
what american airlines flights from phoenix to milwaukee depart phoenix after 6 pm on wednesday
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'milwaukee', 'depart_time.time_relative': 'after', 'depart_time.time': '6 pm', 'depart_date.day_name': 'wednesday'}
|
what is the distance from toronto international airport to toronto
|
[[FUNCTION]] get_distance {'fromloc.airport_name': 'toronto international airport', 'toloc.city_name': 'toronto'}
|
is there an airline that has a flight from philadelphia to san francisco with a stop in dallas
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
show me ground transportation in san francisco
|
[[FUNCTION]] get_ground_service {'city_name': 'san francisco'}
|
what are the flights from milwaukee to orlando on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando', 'depart_date.day_name': 'thursday'}
|
information on american airlines from fort worth texas to philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'fort worth', 'fromloc.state_name': 'texas', 'toloc.city_name': 'philadelphia'}
|
give me all the flights from new york to miami round trip with costs less than 466 dollars
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'round_trip': 'round trip', 'cost_relative': 'less', 'fare_amount': '466 dollars'}
|
what is the seating capacity of the various airplanes that united airlines uses
|
[[FUNCTION]] get_capacity {'airline_name': 'united airlines'}
|
what flights from kansas city to chicago leave next wednesday returning the following day
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'chicago', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'wednesday', 'return_date.today_relative': 'the following day'}
|
what is the lowest fare from denver to pittsburgh
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
could you list for me the flights that leave oakland on sunday and arrive in dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'depart_date.day_name': 'sunday', 'toloc.city_name': 'dallas'}
|
i would like to book a flight from baltimore to san francisco before 12 o'clock on tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'before', 'depart_time.time': "12 o'clock", 'depart_date.day_name': 'tuesday'}
|
flight from denver to san francisco in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.period_of_day': 'afternoon'}
|
is us air
|
[[FUNCTION]] get_airline {'airline_name': 'us air'}
|
what is the least expensive one way fare from boston to san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'least expensive', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
is there ground transportation in dallas from the dallas airport to downtown dallas
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas', 'fromloc.airport_name': 'dallas airport', 'toloc.city_name': 'dallas'}
|
show me the cheapest fare from dallas to baltimore
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
what 's the smallest plane flying from pittsburgh to baltimore on december seventeenth
|
[[FUNCTION]] get_aircraft {'mod': 'smallest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'december', 'depart_date.day_number': 'seventeenth'}
|
show me first class flights one way tampa to st. louis
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'round_trip': 'one way', 'fromloc.city_name': 'tampa', 'toloc.city_name': 'st. louis'}
|
can you show me evening flights from nashville to houston that serve dinner
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'nashville', 'toloc.city_name': 'houston', 'meal_description': 'dinner'}
|
now i need flights leaving from atlanta and arriving in philadelphia on wednesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'arrive_date.day_name': 'wednesday', 'arrive_time.period_of_day': 'morning'}
|
okay that sounds great let 's go from atlanta on april twenty one in the morning to dallas least expensive fare one way
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'depart_date.month_name': 'april', 'depart_date.day_number': 'twenty one', 'depart_time.period_of_day': 'morning', 'toloc.city_name': 'dallas', 'cost_relative': 'least expensive', 'round_trip': 'one way'}
|
what ground transportation is available in dallas
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas'}
|
show me all daily flights from milwaukee to orlando
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando'}
|
show afternoon flights from houston to dallas
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'houston', 'toloc.city_name': 'dallas'}
|
could you tell me about ground transportation arrangements from the dallas airport to downtown dallas
|
[[FUNCTION]] get_ground_service {'fromloc.airport_name': 'dallas airport', 'toloc.city_name': 'dallas'}
|
please show me flights from dallas fort worth to atlanta on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas fort worth', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'monday'}
|
i 'd like the lowest fare from denver to pittsburgh
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
give me flights that arrive in baltimore from denver
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'fromloc.city_name': 'denver'}
|
from denver to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
what flights leave after 7 pm from philadelphia to boston
|
[[FUNCTION]] get_flight {'depart_time.time_relative': 'after', 'depart_time.time': '7 pm', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston'}
|
i want to fly boston to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas'}
|
what united airlines first class airfare flights are available from denver to baltimore on july three
|
[[FUNCTION]] get_airfare {'airline_name': 'united airlines', 'class_type': 'first class', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'july', 'depart_date.day_number': 'three'}
|
flight from salt lake city to oakland california
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'salt lake city', 'toloc.city_name': 'oakland', 'toloc.state_name': 'california'}
|
where do the flights from boston to oakland stop
|
[[FUNCTION]] get_airport {'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland', 'flight_stop': 'stop'}
|
ground transportation atlanta
|
[[FUNCTION]] get_ground_service {'city_name': 'atlanta'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.