input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
what flights from houston to milwaukee on friday on american airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'houston', 'toloc.city_name': 'milwaukee', 'depart_date.day_name': 'friday', 'airline_name': 'american airlines'}
|
i want an early morning flight between philadelphia and pittsburgh on tuesday morning
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'tuesday'}
|
what is the cheapest round trip fare from atlanta to pittsburgh
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'pittsburgh'}
|
what is the first flight from boston to san francisco on saturday
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'saturday'}
|
show business class fares on us air from boston to toronto
|
[[FUNCTION]] get_airfare {'class_type': 'business class', 'airline_name': 'us air', 'fromloc.city_name': 'boston', 'toloc.city_name': 'toronto'}
|
show me round trip fares from new york to miami
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
what is the first class fare from boston to dallas
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas'}
|
show me all flights from san francisco to washington dc
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
i would like to fly united airlines from washington dc to denver colorado
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'denver', 'toloc.state_name': 'colorado'}
|
are there any flights from atlanta to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
i 'd like a flight tomorrow from columbus to houston with a stopover in nashville
|
[[FUNCTION]] get_flight {'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'columbus', 'toloc.city_name': 'houston', 'stoploc.city_name': 'nashville'}
|
i 'd like to book the cheapest flight from atlanta to denver on august first
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.month_name': 'august', 'depart_date.day_number': 'first'}
|
show me all flights out of boston on june twentieth that have business class
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'depart_date.month_name': 'june', 'depart_date.day_number': 'twentieth', 'class_type': 'business class'}
|
show me prices of flights from baltimore to dallas
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
what ground transportation is available in charlotte
|
[[FUNCTION]] get_ground_service {'city_name': 'charlotte'}
|
a breakfast flight from denver to san francisco please
|
[[FUNCTION]] get_flight {'meal_description': 'breakfast', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
how many stops are on all flights from boston to san francisco that depart before 12 o'clock noon
|
[[FUNCTION]] get_quantity {'flight_stop': 'stops', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'arrive_time.time_relative': 'before', 'arrive_time.time': "12 o'clock noon"}
|
i would like a flight from atlanta to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
are there any continental flights between dallas and boston
|
[[FUNCTION]] get_flight {'airline_name': 'continental', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'boston'}
|
while i 'm in pittsburgh what ground transportation is available
|
[[FUNCTION]] get_ground_service {'city_name': 'pittsburgh'}
|
next sunday flights from miami to cleveland after 1200 hours
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'depart_date.day_name': 'sunday', 'fromloc.city_name': 'miami', 'toloc.city_name': 'cleveland', 'depart_time.time_relative': 'after', 'depart_time.time': '1200 hours'}
|
show me the flights from baltimore to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
what does fare code qx mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'qx'}
|
show me flights from miami to new york leaving on a sunday first class
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'miami', 'toloc.city_name': 'new york', 'depart_date.day_name': 'sunday', 'class_type': 'first class'}
|
i would like to book a flight for august twenty seventh with us air from baltimore to oakland what flights do you have available
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'august', 'depart_date.day_number': 'twenty seventh', 'airline_name': 'us air', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'oakland'}
|
in atlanta i would like information on ground transportation
|
[[FUNCTION]] get_ground_service {'city_name': 'atlanta'}
|
okay all right do you have a flight on united airlines from atlanta to washington
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington'}
|
please list the afternoon flights from charlotte to minneapolis
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'charlotte', 'toloc.city_name': 'minneapolis'}
|
coach class flights on twa from columbus to st. paul
|
[[FUNCTION]] get_flight {'class_type': 'coach class', 'airline_code': 'twa', 'fromloc.city_name': 'columbus', 'toloc.city_name': 'st. paul'}
|
i want to fly from dallas to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
what is the latest flight leaving boston to denver
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
do you have a flight from boston to san francisco with a stopover in fort worth dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
list all flights from baltimore to atlanta after noon thursday nonstop
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'after', 'depart_time.time': 'noon', 'depart_date.day_name': 'thursday', 'flight_stop': 'nonstop'}
|
show me all prices of first class from baltimore to dallas
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
list all day time flights from pittsburgh to boston
|
[[FUNCTION]] get_flight {'flight_mod': 'day time', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'boston'}
|
show me all the lufthansa flights between philadelphia and denver
|
[[FUNCTION]] get_flight {'airline_name': 'lufthansa', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver'}
|
show me round trip fares from baltimore to philadelphia
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
i would like to fly from philadelphia to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
please list for me the flights on united airlines between boston and denver
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
what are the flights from milwaukee to orlando on wednesday night
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'night'}
|
explain restriction ap80
|
[[FUNCTION]] get_abbreviation {'restriction_code': 'ap80'}
|
what flights are between dfw and oakland
|
[[FUNCTION]] get_flight {'fromloc.airport_code': 'dfw', 'toloc.city_name': 'oakland'}
|
i want a flight from houston to memphis on tuesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'houston', 'toloc.city_name': 'memphis', 'depart_date.day_name': 'tuesday', 'depart_time.period_of_day': 'morning'}
|
what is the earliest flight arriving in charlotte from st. louis on friday
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'toloc.city_name': 'charlotte', 'fromloc.city_name': 'st. louis', 'arrive_date.day_name': 'friday'}
|
give me us air flights for next wednesday from cleveland to miami
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'wednesday', 'fromloc.city_name': 'cleveland', 'toloc.city_name': 'miami'}
|
show me your flights from atlanta to denver on june fourth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.month_name': 'june', 'depart_date.day_number': 'fourth'}
|
i need information on ground transportation between airport and downtown in the city of boston
|
[[FUNCTION]] get_ground_service {'toloc.city_name': 'city of boston'}
|
show me all the prices of flights from baltimore to dallas
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
round trip fares from denver to philadelphia less than 1000 dollars
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'cost_relative': 'less', 'fare_amount': '1000 dollars'}
|
show me flights from baltimore to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston'}
|
could you please give me information concerning american airlines a flight from washington dc to philadelphia the earliest one in the morning as possible
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'philadelphia', 'flight_mod': 'earliest', 'depart_time.period_of_day': 'morning'}
|
show me all flights from baltimore or denver or pittsburgh that fly to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'or': 'or', 'toloc.city_name': 'philadelphia'}
|
does continental airlines fly from denver to san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
which flights on united airlines and northwest go through denver
|
[[FUNCTION]] get_flight {'airline_name': 'northwest', 'stoploc.city_name': 'denver'}
|
are there any thrift economy flights to san francisco from boston
|
[[FUNCTION]] get_flight {'class_type': 'thrift', 'economy': 'economy', 'toloc.city_name': 'san francisco', 'fromloc.city_name': 'boston'}
|
i 'd also like to see a list of the flights from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
please tell me the type of aircraft used from atlanta to denver before 12 o'clock noon
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'before', 'depart_time.time': "12 o'clock noon"}
|
show me flights from dallas to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
give me all flights from new york city to las vegas that arrive on a sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york city', 'toloc.city_name': 'las vegas', 'arrive_date.day_name': 'sunday'}
|
ground transportation dallas
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas'}
|
what are the evening flights flying out of dallas and going to san francisco on american airlines
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco', 'airline_name': 'american airlines'}
|
what flights are there between nashville and st. louis which are nonstop and arrive after noon and before 8 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'nashville', 'toloc.city_name': 'st. louis', 'flight_stop': 'nonstop', 'arrive_time.time_relative': 'before', 'arrive_time.time': '8 pm'}
|
what economy flights are available from dallas to baltimore on july twenty fifth 1991
|
[[FUNCTION]] get_flight {'economy': 'economy', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'july', 'depart_date.day_number': 'twenty fifth', 'depart_date.year': '1991'}
|
list all daily flights between boston and oakland using american airlines
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland', 'airline_name': 'american airlines'}
|
what are the coach fares from la to charlotte monday morning
|
[[FUNCTION]] get_airfare {'class_type': 'coach', 'fromloc.city_name': 'la', 'toloc.city_name': 'charlotte', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'morning'}
|
flights from baltimore to philadelphia please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
what types of aircraft can i get a first class ticket from philadelphia to dallas
|
[[FUNCTION]] get_aircraft {'class_type': 'first class', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
give me the flights from memphis tennessee to charlotte north carolina
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'fromloc.state_name': 'tennessee', 'toloc.city_name': 'charlotte', 'toloc.state_name': 'north carolina'}
|
what is the price of a first class ticket from atlanta to san francisco
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco'}
|
show me all flights from boston to denver which arrive in denver wednesday before noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'arrive_date.day_name': 'wednesday', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
does continental fly from denver to san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'continental', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
list flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
please give me the flight times i would like to fly from boston to baltimore in the morning before 8
|
[[FUNCTION]] get_flight_time {'flight_time': 'flight times', 'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'depart_time.period_of_day': 'morning', 'depart_time.time_relative': 'before', 'depart_time.time': '8'}
|
show me flights from pittsburgh to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
show me the flights leaving saturday or sunday from milwaukee to phoenix
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'or': 'or', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'phoenix'}
|
cheapest round trip airfare from tacoma to orlando
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'tacoma', 'toloc.city_name': 'orlando'}
|
i need a flight on air canada from toronto to san diego with a layover in dc
|
[[FUNCTION]] get_flight {'airline_name': 'air canada', 'fromloc.city_name': 'toronto', 'toloc.city_name': 'san diego', 'stoploc.state_code': 'dc'}
|
list daily flights from denver to baltimore
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
i want to fly from detroit to st. petersburg on northwest airlines and leave around 9 am tell me what aircraft are used by this flight and tell me the flight number
|
[[FUNCTION]] get_aircraft+flight+flight_no {'fromloc.city_name': 'detroit', 'toloc.city_name': 'st. petersburg', 'airline_name': 'northwest airlines', 'depart_time.time_relative': 'around', 'depart_time.time': '9 am'}
|
which cities does united airlines service
|
[[FUNCTION]] get_city {'airline_name': 'united airlines'}
|
what flights are there from dallas to pittsburgh on monday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'morning'}
|
are there any flights from denver to atlanta with stops in pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta', 'stoploc.city_name': 'pittsburgh'}
|
what does iah mean
|
[[FUNCTION]] get_abbreviation {'airport_code': 'iah'}
|
i would like to fly from pittsburgh to atlanta on us air at the latest time possible in the evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'airline_name': 'us air', 'flight_mod': 'latest time possible', 'depart_time.period_of_day': 'evening'}
|
show me all flights from toronto
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto'}
|
i 'd like information on continental airlines flights from washington to philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'fromloc.city_name': 'washington', 'toloc.city_name': 'philadelphia'}
|
list daily flights from oakland to boston using delta airlines
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'boston', 'airline_name': 'delta airlines'}
|
show me all flights from philadelphia to boston on monday which serve a meal and arrive before noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston', 'depart_date.day_name': 'monday', 'meal': 'meal', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
what flights from pittsburgh to atlanta on wednesday morning serves breakfast
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning', 'meal_description': 'breakfast'}
|
i want wednesday flights from atlanta to washington dc
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'wednesday', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
what cities does continental service
|
[[FUNCTION]] get_city {'airline_name': 'continental'}
|
list all american airlines flights from phoenix to milwaukee on wednesday
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'milwaukee', 'depart_date.day_name': 'wednesday'}
|
what ground transportation is available in san francisco
|
[[FUNCTION]] get_ground_service {'city_name': 'san francisco'}
|
does us air fly from washington dc to denver
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'denver'}
|
list the flights from denver to san francisco after 2 pm on a monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '2 pm', 'depart_date.day_name': 'monday'}
|
show me all the flights on delta airlines and twa that go to atlanta in the morning
|
[[FUNCTION]] get_flight {'airline_name': 'delta airlines', 'airline_code': 'twa', 'toloc.city_name': 'atlanta', 'depart_time.period_of_day': 'morning'}
|
i want to go from baltimore to san francisco with a stopover in denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'}
|
please give me the flights available from boston to pittsburgh on wednesday of next week
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'wednesday', 'depart_date.date_relative': 'next'}
|
show me the flights from san francisco to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'dallas'}
|
what ground transportation is available in baltimore
|
[[FUNCTION]] get_ground_service {'city_name': 'baltimore'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.