input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
what 's the lowest round trip fare from dallas to atlanta
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'round_trip': 'round trip', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'atlanta'}
|
find me the earliest flight from boston to atlanta on any day of the week
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
display all flights from boston to baltimore on july thirty first
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'july', 'depart_date.day_number': 'thirty first'}
|
economy fares new york to miami round trip
|
[[FUNCTION]] get_airfare {'economy': 'economy', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'round_trip': 'round trip'}
|
i need to fly from boston to denver on to san francisco and back
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
i wish to book a flight from pittsburgh to atlanta coach discount fare
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'class_type': 'coach'}
|
show me flights to dallas from san francisco and atlanta and pittsburgh
|
[[FUNCTION]] get_flight {'toloc.city_name': 'dallas', 'fromloc.city_name': 'pittsburgh'}
|
tell me distance from orlando airport to the city
|
[[FUNCTION]] get_distance {'fromloc.airport_name': 'orlando airport'}
|
hi i need to get a flight from memphis to salt lake city departing before 10 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'salt lake city', 'depart_time.time_relative': 'before', 'depart_time.time': '10 am'}
|
what is the cheapest fare i can get from dallas to denver
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'denver'}
|
i would like a flight from philadelphia to dallas arrive dallas about 12 noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'arrive_time.time_relative': 'about', 'arrive_time.time': '12 noon'}
|
us air 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'}
|
could you please find me the cheapest one way fare from boston to philadelphia
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
i 'd like a flight from detroit to st. petersburg for tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'detroit', 'toloc.city_name': 'st. petersburg', 'depart_date.day_name': 'tuesday'}
|
return from miami to new york on tower air on saturdays
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'miami', 'toloc.city_name': 'new york', 'airline_name': 'tower air', 'depart_date.day_name': 'saturdays'}
|
show me ground transportation in san francisco
|
[[FUNCTION]] get_ground_service {'city_name': 'san francisco'}
|
please give me the earliest flight tomorrow from st. petersburg to milwaukee
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'milwaukee'}
|
i need ground transportation in dallas please show me what 's available
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas'}
|
what 's fare code yn
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'yn'}
|
the cheapest flights from atlanta to philadelphia that arrive after 12 pm on a tuesday
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'arrive_time.time_relative': 'after', 'arrive_time.time': '12 pm', 'arrive_date.day_name': 'tuesday'}
|
is there an early morning delta airlines flight between boston and washington
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'airline_name': 'delta airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
what flights from orlando to tacoma on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'orlando', 'toloc.city_name': 'tacoma', 'depart_date.day_name': 'saturday'}
|
show me all flights both direct and connecting from dallas fort worth to either san francisco or oakland that depart after 7 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas fort worth', 'toloc.city_name': 'oakland', 'or': 'or', 'depart_time.time_relative': 'after', 'depart_time.time': '7 pm'}
|
give me flights from chicago to seattle on saturday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'depart_date.day_name': 'saturday', 'depart_time.period_of_day': 'morning'}
|
okay tell me what the earliest flight is that leaves between atlanta and denver
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
i want a flight from toronto to montreal that leaves early friday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'montreal', 'depart_time.period_mod': 'early', 'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'morning'}
|
what first class flights are available from denver to baltimore on july twenty fifth 1991
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'july', 'depart_date.day_number': 'twenty fifth', 'depart_date.year': '1991'}
|
show me the airlines from love field
|
[[FUNCTION]] get_airline {'fromloc.airport_name': 'love field'}
|
what 's the cheapest one way ticket from baltimore to atlanta
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta'}
|
a first class flight on american to san francisco on tuesday in the next week
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'airline_name': 'american', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'tuesday', 'depart_date.date_relative': 'next'}
|
what airlines fly between boston and san francisco and stop in denver
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'}
|
what 're the 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'}
|
flights on friday from newark to tampa
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'friday', 'fromloc.city_name': 'newark', 'toloc.city_name': 'tampa'}
|
flights from san francisco august one
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'depart_date.month_name': 'august', 'depart_date.day_number': 'one'}
|
how many stops on continental 1765 from boston to san francisco
|
[[FUNCTION]] get_quantity {'airline_name': 'continental', 'flight_number': '1765', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
on flight us air 2153 from san francisco to baltimore what time and what city does the plane stop in between
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'flight_number': '2153', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'baltimore', 'flight_time': 'time'}
|
i need a flight from st. petersburg to charlotte which will get me into charlotte by 5 pm or as soon thereafter as possible
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'charlotte', 'arrive_time.time_relative': 'by', 'arrive_time.time': '5 pm', 'or': 'or'}
|
i want a one way ticket from dallas to baltimore
|
[[FUNCTION]] get_airfare {'round_trip': 'one way', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
find me the latest flight leaving atlanta august seventh and arriving in denver
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'atlanta', 'depart_date.month_name': 'august', 'depart_date.day_number': 'seventh', 'toloc.city_name': 'denver'}
|
what 's the lowest one way fare from pittsburgh to denver
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'round_trip': 'one way', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'denver'}
|
show me flights from los angeles to pittsburgh on monday evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'los angeles', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'evening'}
|
show 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'}
|
show me flights from pittsburgh to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
show me the shortest flight from boston to denver which arrives in denver wednesday before noon
|
[[FUNCTION]] get_flight {'flight_mod': 'shortest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'arrive_date.day_name': 'wednesday', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
what are the flights from orlando to kansas city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'orlando', 'toloc.city_name': 'kansas city'}
|
show me flights from san francisco to boston on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_date.day_name': 'thursday'}
|
sunday flights from new york city to las vegas
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'fromloc.city_name': 'new york city', 'toloc.city_name': 'las vegas'}
|
i need a flight from pittsburgh to new york leaving at 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'new york', 'depart_time.time': '5 pm'}
|
what 's the smallest plane that flies from pittsburgh to baltimore on eight sixteen
|
[[FUNCTION]] get_aircraft {'mod': 'smallest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_time.time': 'eight'}
|
give me the flights on december twenty seventh with the fares from indianapolis to orlando
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'december', 'depart_date.day_number': 'twenty seventh', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'orlando'}
|
show me all the us air flights leaving pittsburgh between 12 and 4 in the afternoon
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'pittsburgh', 'depart_time.start_time': '12', 'depart_time.end_time': '4', 'depart_time.period_of_day': 'afternoon'}
|
i want a cheap from denver to atlanta
|
[[FUNCTION]] get_flight {'flight_mod': 'cheap', 'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
show all flights from miami to jfk
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'miami', 'toloc.airport_code': 'jfk'}
|
show me all flights from san francisco to pittsburgh on a monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'monday'}
|
show me the earliest flight from boston to denver
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
i need a united airlines flight from denver to baltimore on saturday
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'depart_date.day_name': 'saturday'}
|
what are the cheapest one way flights from denver to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
all flights from boston to washington dc after 5 pm on november eleventh economy class
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_time.time_relative': 'after', 'depart_time.time': '5 pm', 'depart_date.month_name': 'november', 'depart_date.day_number': 'eleventh', 'economy': 'economy class'}
|
is there ground transportation in oakland
|
[[FUNCTION]] get_ground_service {'city_name': 'oakland'}
|
list united flights from denver to san francisco on wednesdays
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'wednesdays'}
|
what is the cheapest way to fly from denver to oakland
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland'}
|
philadelphia to san francisco with one stop in dallas please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'flight_stop': 'one stop', 'stoploc.city_name': 'dallas'}
|
i would like to fly us air from orlando to cleveland in the late evening what do you have available
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'orlando', 'toloc.city_name': 'cleveland', 'depart_time.period_mod': 'late', 'depart_time.period_of_day': 'evening'}
|
what does restriction ap 57 mean
|
[[FUNCTION]] get_abbreviation {'restriction_code': 'ap 57'}
|
what are the latest flights that i can take from baltimore to boston
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston'}
|
list flights from philadelphia to san francisco via dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
how much does the american airlines flight 71 from dallas to san francisco cost
|
[[FUNCTION]] get_airfare {'airline_name': 'american airlines', 'flight_number': '71', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
all flights from boston to philadelphia which show up on tuesday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'tuesday', 'depart_time.period_of_day': 'afternoon'}
|
show me flights from new york to miami on a tuesday with a round trip fare less than 466 dollars
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'depart_date.day_name': 'tuesday', 'round_trip': 'round trip', 'cost_relative': 'less', 'fare_amount': '466 dollars'}
|
nonstop flights from seattle to denver
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'seattle', 'toloc.city_name': 'denver'}
|
give me the flights and fares on december twenty seventh from indianapolis to orlando
|
[[FUNCTION]] get_flight+airfare {'depart_date.month_name': 'december', 'depart_date.day_number': 'twenty seventh', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'orlando'}
|
what flights are available wednesday afternoon from denver to san francisco
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
what are the flights from tacoma to san jose also on tuesday the eighteenth of may
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'tacoma', 'toloc.city_name': 'san jose', 'depart_date.day_name': 'tuesday', 'depart_date.day_number': 'eighteenth', 'depart_date.month_name': 'may'}
|
what 's the ground transportation like at pittsburgh
|
[[FUNCTION]] get_ground_service {'city_name': 'pittsburgh'}
|
list daily flights from boston to oakland using united airlines
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland', 'airline_name': 'united airlines'}
|
in the next two days i want to fly from nashville to san jose or to tacoma
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'fromloc.city_name': 'nashville', 'toloc.city_name': 'tacoma', 'or': 'or'}
|
how many flights does each airline have with business class service
|
[[FUNCTION]] get_quantity {'class_type': 'business class'}
|
what flights from st. paul to kansas city on friday with supper served
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. paul', 'toloc.city_name': 'kansas city', 'depart_date.day_name': 'friday', 'meal_description': 'supper'}
|
show flights from san francisco to denver on either wednesday the twenty third or thursday the twenty fourth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver', 'depart_date.day_name': 'thursday', 'depart_date.day_number': 'twenty fourth', 'or': 'or'}
|
what are the flights available between 10 am and 3 pm between pittsburgh and fort worth
|
[[FUNCTION]] get_flight {'depart_time.start_time': '10 am', 'depart_time.end_time': '3 pm', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'fort worth'}
|
list all flights from memphis to seattle
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'seattle'}
|
airline code as
|
[[FUNCTION]] get_airline {'airline_code': 'as'}
|
show me the flights from san francisco to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
show me all flights from san diego to phoenix on a boeing 737
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san diego', 'toloc.city_name': 'phoenix', 'aircraft_code': '737'}
|
may i have a list of flights going from boston to denver on the twenty ninth of july
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_date.day_number': 'twenty ninth', 'depart_date.month_name': 'july'}
|
could you tell me the cheapest fare from atlanta to boston on thirty first of august
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_date.day_number': 'thirty first', 'depart_date.month_name': 'august'}
|
which united airlines flight flies from boston to san francisco and makes a stopover in philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'philadelphia'}
|
what are the latest flights from boston to dallas on the evening of july seventh
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas', 'depart_time.period_of_day': 'evening', 'depart_date.month_name': 'july', 'depart_date.day_number': 'seventh'}
|
can you tell me how to get from the airport in philadelphia to downtown
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia'}
|
what is bna
|
[[FUNCTION]] get_abbreviation {'airport_code': 'bna'}
|
now show me the flights from denver to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
what is the cost of flight dl 106 from philadelphia to boston
|
[[FUNCTION]] get_airfare {'airline_code': 'dl', 'flight_number': '106', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston'}
|
what stops does dl 838 make from san francisco to atlanta
|
[[FUNCTION]] get_flight {'flight_stop': 'stops', 'airline_code': 'dl', 'flight_number': '838', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'atlanta'}
|
what are the cheapest round trip flights from denver to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
what are the flights from atlanta to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas'}
|
delta flights to san francisco please
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'toloc.city_name': 'san francisco'}
|
i would like to know the latest flight on wednesday you have leaving from oakland to salt lake city which offers a meal
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'depart_date.day_name': 'wednesday', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'salt lake city', 'meal': 'meal'}
|
what are the costs of car rental in dallas
|
[[FUNCTION]] get_ground_fare {'transport_type': 'car rental', 'city_name': 'dallas'}
|
what airlines fly from boston to pittsburgh
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
can you tell me which flights go from memphis to tacoma and make a stop in los angeles
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'tacoma', 'stoploc.city_name': 'los angeles'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.