input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
tell me about flights from toronto to salt lake city leaving after 530 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'salt lake city', 'depart_time.time_relative': 'after', 'depart_time.time': '530 pm'}
|
show me the flights from indianapolis to orlando with round trip fares less than 1288
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'orlando', 'round_trip': 'round trip', 'cost_relative': 'less', 'fare_amount': '1288'}
|
i need a flight from boston to pittsburgh that leaves early in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'morning'}
|
what is the first flight from atlanta to baltimore that serves lunch
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'meal_description': 'lunch'}
|
show me the flights from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
all flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
oakland to philadelphia saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'saturday'}
|
give me the earliest flight tomorrow on united airlines from st. petersburg to milwaukee
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'depart_date.today_relative': 'tomorrow', 'airline_name': 'united airlines', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'milwaukee'}
|
show me flights on monday from philadelphia to boston after 7 am
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': '7 am'}
|
show me all the flights leaving baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore'}
|
show me the flights from philadelphia to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston'}
|
is there a plane from boston to washington
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
i need to go from boston to atlanta and back in the same day find me the earliest flight from boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'return_date.date_relative': 'day', 'flight_mod': 'earliest'}
|
what are flights between boston and pittsburgh on august tenth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_date.month_name': 'august', 'depart_date.day_number': 'tenth'}
|
what are the schedule of flights from boston to san francisco for august first
|
[[FUNCTION]] get_flight_time {'flight_time': 'schedule', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'depart_date.month_name': 'august', 'depart_date.day_number': 'first'}
|
show me one way flights from milwaukee to orlando wednesday
|
[[FUNCTION]] get_flight {'round_trip': 'one way', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando', 'depart_date.day_name': 'wednesday'}
|
show me all flights from pittsburgh to baltimore tomorrow which serve a meal
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.today_relative': 'tomorrow', 'meal': 'meal'}
|
give me flights on american airlines from milwaukee to phoenix
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'phoenix'}
|
show all flights from pittsburgh to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
i wish to fly from boston to washington please find an airline for me
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
please list the flights from dallas fort worth to dc baltimore on july twenty third
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas fort worth', 'toloc.state_code': 'dc', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'july', 'depart_date.day_number': 'twenty third'}
|
which flights from memphis to tacoma also stop in los angeles
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'tacoma', 'stoploc.city_name': 'los angeles'}
|
show me the flights on tuesday morning from charlotte to baltimore
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'charlotte', 'toloc.city_name': 'baltimore'}
|
i need 2 first class tickets from dallas fort worth to san francisco
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'dallas fort worth', 'toloc.city_name': 'san francisco'}
|
are there any flights from philadelphia to dallas which stop in atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'atlanta'}
|
flights to baltimore
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore'}
|
what does mco stand for
|
[[FUNCTION]] get_abbreviation {'airport_code': 'mco'}
|
what is the least expensive way to fly from philadelphia to san francisco
|
[[FUNCTION]] get_flight {'cost_relative': 'least expensive', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco'}
|
list all nonstop flights from los angeles to pittsburgh before 5 pm on tuesday
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'los angeles', 'toloc.city_name': 'pittsburgh', 'arrive_time.time_relative': 'before', 'arrive_time.time': '5 pm', 'arrive_date.day_name': 'tuesday'}
|
how many booking classes are there
|
[[FUNCTION]] get_quantity {}
|
flight numbers from columbus to minneapolis tomorrow
|
[[FUNCTION]] get_flight_no {'fromloc.city_name': 'columbus', 'toloc.city_name': 'minneapolis', 'depart_date.today_relative': 'tomorrow'}
|
give me the continental flights from chicago to seattle on friday
|
[[FUNCTION]] get_flight {'airline_name': 'continental', 'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'depart_date.day_name': 'friday'}
|
what are the united airlines flights between baltimore and denver on august twelfth
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'denver', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twelfth'}
|
show me the flights next tuesday between philadelphia and san francisco
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'depart_date.day_name': 'tuesday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco'}
|
find a flight on american airlines from boston to san francisco that makes a stopover in denver
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'}
|
show me the fares on all flights round trip from pittsburgh to oakland
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'oakland'}
|
what 's the difference between fare code q and fare code f
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'f'}
|
flights from cincinnati to salt lake city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'salt lake city'}
|
ground transportation denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
show me flights from denver to washington dc on wednesdays
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'wednesdays'}
|
find a flight between denver and oakland the flight should be in the afternoon and arrive close to 5 pm the flight should be nonstop
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland', 'depart_time.period_of_day': 'afternoon', 'arrive_time.time_relative': 'close', 'arrive_time.time': '5 pm', 'flight_stop': 'nonstop'}
|
show me all flights from atlanta to washington with prices
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington'}
|
flights between new york and miami
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
please list the monday morning flights from kansas city to atlanta
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'kansas city', 'toloc.city_name': 'atlanta'}
|
list all american airlines flights from phoenix to milwaukee which arrive on wednesday after 4 pm
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'milwaukee', 'arrive_date.day_name': 'wednesday', 'arrive_time.time_relative': 'after', 'arrive_time.time': '4 pm'}
|
what round trip tickets are there from cleveland to miami on us air that arrive before 4 pm
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'cleveland', 'toloc.city_name': 'miami', 'airline_name': 'us air', 'arrive_time.time_relative': 'before', 'arrive_time.time': '4 pm'}
|
i 'd like to go from boston to denver at 9 o'clock saturday night
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_time.time': "9 o'clock", 'depart_date.day_name': 'saturday', 'depart_time.period_of_day': 'night'}
|
show me the northwest flights from detroit to st. petersburg
|
[[FUNCTION]] get_flight {'airline_name': 'northwest', 'fromloc.city_name': 'detroit', 'toloc.city_name': 'st. petersburg'}
|
what is the available ground transportation between the airport in denver and downtown
|
[[FUNCTION]] get_ground_service {'fromloc.city_name': 'denver'}
|
on may four atlanta to denver delta flight 257
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'may', 'depart_date.day_number': 'four', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'airline_name': 'delta', 'flight_number': '257'}
|
show me all flights from indianapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis'}
|
which airlines have flights between philadelphia and pittsburgh
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'pittsburgh'}
|
which are the flights from denver to baltimore or washington dc
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'washington', 'or': 'or', 'toloc.state_code': 'dc'}
|
list the number of flights leaving boston for dallas fort worth before 9 am in the morning
|
[[FUNCTION]] get_quantity {'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas fort worth', 'depart_time.time_relative': 'before', 'depart_time.time': '9 am', 'depart_time.period_of_day': 'morning'}
|
are there delta flights leaving atlanta
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'atlanta'}
|
can you list all round trip flights from orlando to kansas city and then to minneapolis
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'orlando', 'toloc.city_name': 'minneapolis'}
|
i would like to find a flight from kansas city to salt lake city on delta and arriving at about 8 o'clock in the evening could you please tell me the aircraft and the flight number thank you
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'salt lake city', 'airline_name': 'delta', 'arrive_time.time_relative': 'about', 'arrive_time.time': "8 o'clock", 'arrive_time.period_of_day': 'evening'}
|
i would like a flight from washington to boston leaving at 230 on august twentieth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'boston', 'depart_time.time': '230', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twentieth'}
|
how much is a flight from washington to boston
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'washington', 'toloc.city_name': 'boston'}
|
show me all flights from orlando to san diego on a boeing 737
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'orlando', 'toloc.city_name': 'san diego', 'aircraft_code': '737'}
|
what flights are there on sunday from seattle to minneapolis
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'fromloc.city_name': 'seattle', 'toloc.city_name': 'minneapolis'}
|
where is mco
|
[[FUNCTION]] get_city {'airport_code': 'mco'}
|
show me all flights from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
which united airlines flight flies across this continent and leaves from boston goes to dallas and makes a stopover in philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'philadelphia'}
|
list daily flights of united airline from denver to baltimore with first class service
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'airline_name': 'united airline', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'class_type': 'first class'}
|
show me flights from pittsburgh to atlanta on monday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'morning'}
|
all flights phoenix to sfo
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.airport_code': 'sfo'}
|
i want to travel from washington dc to philadelphia on tuesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'tuesday', 'depart_time.period_of_day': 'morning'}
|
what is the fare going from atlanta to boston one way on november seventh
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'round_trip': 'one way', 'depart_date.month_name': 'november', 'depart_date.day_number': 'seventh'}
|
is there a flight on american airlines from boston to denver
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
what flights are available from san francisco to pittsburgh on thursday evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'evening'}
|
do you have an afternoon flight leaving in the afternoon going from boston to san francisco with a stopover in dallas
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
show the flights from pittsburgh to san francisco again on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'monday'}
|
show me a list of flights on american airlines from boston to dc on july twenty second
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'boston', 'toloc.state_code': 'dc', 'depart_date.month_name': 'july', 'depart_date.day_number': 'twenty second'}
|
now i 'd like flights from philadelphia to pittsburgh leaving between 430 and 530 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'pittsburgh', 'depart_time.start_time': '430', 'depart_time.end_time': '530 pm'}
|
what economy flights are available from dallas to baltimore on december seventeenth
|
[[FUNCTION]] get_flight {'economy': 'economy', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'december', 'depart_date.day_number': 'seventeenth'}
|
please show me flights from san francisco to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'dallas'}
|
please show me all the flights from indianapolis to san diego tomorrow
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'san diego', 'depart_date.today_relative': 'tomorrow'}
|
what does flight code us mean
|
[[FUNCTION]] get_flight {'airline_code': 'us'}
|
i would like a flight from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
what is the flight schedule of the f28 from pittsburgh to baltimore
|
[[FUNCTION]] get_flight_time {'flight_time': 'flight schedule', 'aircraft_code': 'f28', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
looking for a flight from dc to minnesota
|
[[FUNCTION]] get_flight {'fromloc.state_code': 'dc', 'toloc.state_name': 'minnesota'}
|
how many us air flights leave from washington
|
[[FUNCTION]] get_quantity {'airline_name': 'us air', 'fromloc.city_name': 'washington'}
|
show me times for flights from san francisco to atlanta
|
[[FUNCTION]] get_flight_time {'flight_time': 'times', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'atlanta'}
|
what flights are there on wednesday evening or thursday morning from denver to sfo
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning', 'or': 'or', 'fromloc.city_name': 'denver', 'toloc.airport_code': 'sfo'}
|
how many flights go from dallas to baltimore on july nineteenth
|
[[FUNCTION]] get_quantity {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'july', 'depart_date.day_number': 'nineteenth'}
|
could you show me all the flights from oakland to salt lake city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'salt lake city'}
|
find me a flight from boston to san francisco with layover in denver on united
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver', 'airline_name': 'united'}
|
what flights are available between boston and washington arriving in washington at 630
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'arrive_time.time': '630'}
|
show me the airlines between toronto and denver
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'toronto', 'toloc.city_name': 'denver'}
|
what flights do you have between pittsburgh and atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
show me the flights from denver to westchester county
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'westchester county'}
|
i need information for a flight from denver to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
what is the cheapest flight from boston to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
what is the cheapest flight from atlanta to pittsburgh one way
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'pittsburgh', 'round_trip': 'one way'}
|
show me all overnight flights from washington dc to san francisco and list their fares
|
[[FUNCTION]] get_flight {'flight_mod': 'overnight', 'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'san francisco'}
|
round trip flights between new york and miami
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
show me the one way flight from detroit to westchester county with the highest fare
|
[[FUNCTION]] get_flight {'round_trip': 'one way', 'fromloc.city_name': 'detroit', 'toloc.city_name': 'westchester county', 'cost_relative': 'highest'}
|
what flights are there from newark to chicago on continental
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'chicago', 'airline_name': 'continental'}
|
i 'm trying to make a connection between denver and san francisco does delta airline fly between those two
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'airline_name': 'delta airline'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.