input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
show all flights on lufthansa airlines out of boston
|
[[FUNCTION]] get_flight {'airline_name': 'lufthansa airlines', 'fromloc.city_name': 'boston'}
|
can you tell me the cheapest flight between boston and san francisco
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
i would like to see the flights from baltimore to philadelphia please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
give me flights from atlanta to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
i want a flight departing from newark to los angeles that leaves in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'los angeles', 'depart_time.period_of_day': 'morning'}
|
list the flights from baltimore to seattle that stop in minneapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'seattle', 'stoploc.city_name': 'minneapolis'}
|
i need a flight from pittsburgh to new york departing after 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'new york', 'depart_time.time_relative': 'after', 'depart_time.time': '5 pm'}
|
show me all flights from phoenix to milwaukee on american airlines on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'milwaukee', 'airline_name': 'american airlines', 'depart_date.day_name': 'wednesday'}
|
which are the least expensive flights between dallas and baltimore on july nineteenth
|
[[FUNCTION]] get_flight {'cost_relative': 'least expensive', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'july', 'depart_date.day_number': 'nineteenth'}
|
show me all flights from san francisco to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver'}
|
which airlines fly between baltimore and san francisco
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco'}
|
what airlines fly from boston to denver
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
round trip flights between houston and las vegas
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'houston', 'toloc.city_name': 'las vegas'}
|
what american airlines flights depart milwaukee for phoenix on saturday or sunday
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'phoenix', 'depart_date.day_name': 'sunday', 'or': 'or'}
|
i 'm looking for a flight that goes from ontario to westchester and stops in chicago
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'ontario', 'toloc.city_name': 'westchester', 'stoploc.city_name': 'chicago'}
|
what is the cheapest one way ticket from denver to pittsburgh
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
what kind of airline is flight ua 281 from boston to denver
|
[[FUNCTION]] get_airline {'airline_code': 'ua', 'flight_number': '281', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
which airlines fly between boston and philadelphia
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
list nonstop flights from baltimore washington airport to oakland that depart in the afternoon
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'baltimore', 'fromloc.airport_name': 'washington airport', 'toloc.city_name': 'oakland', 'arrive_time.period_of_day': 'afternoon'}
|
please list fares for all the flights from atlanta to philadelphia on august the first
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'depart_date.month_name': 'august', 'depart_date.day_number': 'first'}
|
show me the flights that go from san diego to newark new jersey by way of houston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san diego', 'toloc.city_name': 'newark', 'toloc.state_name': 'new jersey', 'stoploc.city_name': 'houston'}
|
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'}
|
what kind of aircraft is used on the first class american airlines flight from philadelphia to san francisco stopping in dallas
|
[[FUNCTION]] get_aircraft {'class_type': 'first class', 'airline_name': 'american airlines', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
what is the cost of round trip ticket first class between oakland and atlanta
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'class_type': 'first class', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'atlanta'}
|
i need flight information on saturday for a flight from philadelphia to dallas
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'saturday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
what night flight do you have from san francisco to denver on united on the evening of august twenty seventh
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver', 'airline_name': 'united', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twenty seventh'}
|
what are the flights from philadelphia to dallas on october first 1991
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'depart_date.month_name': 'october', 'depart_date.day_number': 'first', 'depart_date.year': '1991'}
|
list all tuesday night flights from boston to denver
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'depart_time.period_of_day': 'night', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
what flights available between pittsburgh and baltimore on august eleventh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'august', 'depart_date.day_number': 'eleventh'}
|
i want a flight from denver to pittsburgh then from pittsburgh to atlanta then from atlanta back to pittsburgh back to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
give me a flight from newark to tampa on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'tampa', 'depart_date.day_name': 'friday'}
|
what are the flights from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
list the american airlines flights from dallas to san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
what afternoon flights are available from pittsburgh to atlanta on a weekday
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'flight_mod': 'weekday'}
|
what does the abbreviation ua mean
|
[[FUNCTION]] get_abbreviation {'airline_code': 'ua'}
|
i 'd like a flight on united airlines from dallas to san francisco that leaves after 815 am
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '815 am'}
|
what is the fare on american airlines flight 928 from dallas fort worth to boston
|
[[FUNCTION]] get_airfare {'airline_name': 'american airlines', 'flight_number': '928', 'fromloc.city_name': 'dallas fort worth', 'toloc.city_name': 'boston'}
|
flights from indianapolis to seattle washington
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'seattle', 'toloc.state_name': 'washington'}
|
which airline is the cheapest to fly from dallas to baltimore on december twenty fourth
|
[[FUNCTION]] get_airline {'cost_relative': 'cheapest', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'december', 'depart_date.day_number': 'twenty fourth'}
|
how much is a round trip first class fare between boston and washington
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'class_type': 'first class', 'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
i 'd like to find a flight from tampa to montreal that makes a stop in new york
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'tampa', 'toloc.city_name': 'montreal', 'stoploc.city_name': 'new york'}
|
show the flights that leave philadelphia that go to atlanta that leave early on thursday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'atlanta', 'depart_time.period_mod': 'early', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'}
|
show me the airlines for flights to or from love field
|
[[FUNCTION]] get_airline {'fromloc.airport_name': 'love field'}
|
how many flights does each airline have with first class service
|
[[FUNCTION]] get_quantity {'class_type': 'first class'}
|
show me next wednesday 's flights between phoenix and milwaukee
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'depart_date.day_name': "wednesday 's", 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'milwaukee'}
|
show me flights from philadelphia to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'baltimore'}
|
round trip air fares from pittsburgh to philadelphia less than 1000 dollars
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia', 'cost_relative': 'less', 'fare_amount': '1000 dollars'}
|
show me the flights from boston to san francisco leaving after 4 pm on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '4 pm', 'depart_date.day_name': 'friday'}
|
what does code y stand for
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'y'}
|
what is the cheapest round trip flight from denver to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
can you show me flights that are economy class from baltimore to dallas
|
[[FUNCTION]] get_flight {'economy': 'economy class', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
ground transportation denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
what is the earliest flight from boston to san francisco that serves a meal
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'meal': 'meal'}
|
what ground transportation is available at denver airport
|
[[FUNCTION]] get_ground_service {'airport_name': 'denver airport'}
|
okay i 'm sorry could you tell me what flights leave atlanta and arrive in philadelphia around 5 o'clock
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'arrive_time.time_relative': 'around', 'arrive_time.time': "5 o'clock"}
|
and how much does it cost to travel from boston airport to downtown
|
[[FUNCTION]] get_airfare {'fromloc.airport_name': 'boston airport'}
|
earliest flight from atlanta to philadelphia
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'}
|
what flights from indianapolis to memphis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'memphis'}
|
when is the first flight in the morning from boston to denver
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me the nonstop flights from nashville to st. louis
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'nashville', 'toloc.city_name': 'st. louis'}
|
show flights from atlanta to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
where is general mitchell international located
|
[[FUNCTION]] get_city {'airport_name': 'general mitchell international'}
|
what is bur
|
[[FUNCTION]] get_abbreviation {'airport_code': 'bur'}
|
are there any nonstop flights from san francisco to boston on thursdays
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'arrive_date.day_name': 'thursdays'}
|
thank you for that information now i would like information on a flight on april sixteen from atlanta to philadelphia early in the morning
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'april', 'depart_date.day_number': 'sixteen', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'morning'}
|
i 'd like flights going from boston to atlanta leaving on august sixth in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'depart_date.month_name': 'august', 'depart_date.day_number': 'sixth', 'depart_time.period_of_day': 'afternoon'}
|
i need to fly from denver to san francisco tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'tuesday'}
|
what does ff mean
|
[[FUNCTION]] get_abbreviation {'airline_code': 'ff'}
|
i want to fly from milwaukee to orlando on either wednesday evening or thursday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning', 'or': 'or'}
|
all flights from pittsburgh to philadelphia that arrive at 6 o'clock next tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia', 'arrive_time.time': "6 o'clock", 'arrive_date.date_relative': 'next', 'arrive_date.day_name': 'tuesday'}
|
list all flights departing from general mitchell
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'general mitchell'}
|
show me the one way fares from san diego to miami nonstop
|
[[FUNCTION]] get_airfare {'round_trip': 'one way', 'fromloc.city_name': 'san diego', 'toloc.city_name': 'miami', 'flight_stop': 'nonstop'}
|
show me the flights from atlanta to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
what are the delta flights from dallas to boston
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'boston'}
|
show me all flights from boston to dfw
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.airport_code': 'dfw'}
|
what is the departure time of the latest flight of united airlines from denver to boston
|
[[FUNCTION]] get_flight_time {'flight_time': 'departure time', 'flight_mod': 'latest', 'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
show me the airlines that fly between toronto and denver
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'toronto', 'toloc.city_name': 'denver'}
|
on thursday i 'd like a flight from st. petersburg to miami
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'thursday', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'miami'}
|
please find me a flight between boston and philadelphia that arrives in philadelphia close to 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia', 'arrive_time.time_relative': 'close', 'arrive_time.time': '5 pm'}
|
what northwest airline flights leave denver before noon
|
[[FUNCTION]] get_flight {'airline_name': 'northwest airline', 'fromloc.city_name': 'denver', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon'}
|
from denver to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
i 'm trying to find a flight from columbus to phoenix through cincinnati
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'columbus', 'toloc.city_name': 'phoenix', 'stoploc.city_name': 'cincinnati'}
|
flight information between washington and denver on september third
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'denver', 'depart_date.month_name': 'september', 'depart_date.day_number': 'third'}
|
what flights go from boston to denver before 10 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'before', 'depart_time.time': '10 am'}
|
flights from charlotte to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'baltimore'}
|
what is restriction ap57
|
[[FUNCTION]] get_restriction {'restriction_code': 'ap57'}
|
please list all flights from dallas to philadelphia on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'monday'}
|
list all united flights from boston to san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
are there any flights from boston to san francisco with a stopover in dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
i need a flight from san francisco to pittsburgh from pittsburgh to new york and then new york to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'san francisco'}
|
what flights from atlanta to st. louis on tuesday arriving around 230 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'st. louis', 'depart_date.day_name': 'tuesday', 'arrive_time.time_relative': 'around', 'arrive_time.time': '230 pm'}
|
show me the flights to love field from all other airports
|
[[FUNCTION]] get_flight {'toloc.airport_name': 'love field'}
|
show me all flights from montreal
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'montreal'}
|
is there a flight departing from san francisco and arriving in oakland on november seventh in the evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'oakland', 'arrive_date.month_name': 'november', 'arrive_date.day_number': 'seventh', 'arrive_time.period_of_day': 'evening'}
|
show me the flights from denver to westchester county
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'westchester county'}
|
can you tell me the latest evening flight from atlanta to denver on july seventh
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.month_name': 'july', 'depart_date.day_number': 'seventh'}
|
show me all flights from denver or philadelphia or pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'or': 'or', 'toloc.city_name': 'baltimore'}
|
flights from las vegas to montreal
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'las vegas', 'toloc.city_name': 'montreal'}
|
does midwest express serve cleveland
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'city_name': 'cleveland'}
|
what kind of aircraft does delta fly before 8 am on august second from boston to denver
|
[[FUNCTION]] get_aircraft {'airline_name': 'delta', 'depart_time.time_relative': 'before', 'depart_time.time': '8 am', 'depart_date.month_name': 'august', 'depart_date.day_number': 'second', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.