input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
list flights from detroit to san diego on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'detroit', 'toloc.city_name': 'san diego', 'depart_date.day_name': 'thursday'}
|
what flights are there from phoenix to milwaukee
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'milwaukee'}
|
what flights go from philadelphia to san francisco with a stopover in dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
show flights from denver to oakland that arrive after 12 o'clock
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland', 'arrive_time.time_relative': 'after', 'arrive_time.time': "12 o'clock"}
|
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'}
|
what is the airfare between denver and pittsburgh
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
show me all flights from denver to philadelphia which leave next saturday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'saturday', 'depart_time.period_of_day': 'afternoon'}
|
show me flights from atlanta to baltimore denver and dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas'}
|
one way
|
[[FUNCTION]] get_flight {'round_trip': 'one way'}
|
list all flights on saturday from dallas to san francisco nonstop
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'saturday', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco', 'flight_stop': 'nonstop'}
|
how many airports does oakland have
|
[[FUNCTION]] get_quantity {'city_name': 'oakland'}
|
can you give me a list of the flights from atlanta to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
please give me a list of flights leaving boston going to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
repeating leaving denver to san francisco before 10 am what type of aircraft is used
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'before', 'depart_time.time': '10 am'}
|
what is the earliest flight from washington to atlanta leaving on wednesday september fourth
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'washington', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'wednesday', 'depart_date.month_name': 'september', 'depart_date.day_number': 'fourth'}
|
show me all flights from atlanta to dallas round trip less than 1100 dollars
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas', 'round_trip': 'round trip', 'cost_relative': 'less', 'fare_amount': '1100 dollars'}
|
what flights return from denver to philadelphia on a saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'saturday'}
|
flights from dallas to houston in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston', 'depart_time.period_of_day': 'morning'}
|
what are your flights from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
first flights and fares from pittsburgh to atlanta on a thursday
|
[[FUNCTION]] get_flight+airfare {'flight_mod': 'first', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'thursday'}
|
the earliest flight from boston to san francisco please that will be serving a meal
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'meal': 'meal'}
|
what type of aircraft flies from pittsburgh to baltimore
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
show me the cheapest one way tickets from atlanta to dallas
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas'}
|
give me sunday nonstop flights from memphis to las vegas
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'flight_stop': 'nonstop', 'fromloc.city_name': 'memphis', 'toloc.city_name': 'las vegas'}
|
on the flight from baltimore to san francisco on us air leaving at 420 what type of aircraft is used
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco', 'airline_name': 'us air', 'depart_time.time': '420'}
|
i want a evening flight from dallas to milwaukee
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'milwaukee'}
|
let 's look at baltimore to philadelphia again
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
what are the prices of the flights from dallas to baltimore
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
what kind of airplane is flight ua 281 from boston to denver
|
[[FUNCTION]] get_aircraft {'airline_code': 'ua', 'flight_number': '281', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
how many first class flights does united have today
|
[[FUNCTION]] get_quantity {'class_type': 'first class', 'airline_name': 'united', 'depart_date.today_relative': 'today'}
|
what does ua stand for
|
[[FUNCTION]] get_abbreviation {'airline_code': 'ua'}
|
can i go from boston to san francisco with a stopover in denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'}
|
can you tell me which flight from dallas to baltimore has the least expensive fare
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'cost_relative': 'least expensive'}
|
show me the latest flight to love field
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'toloc.airport_name': 'love field'}
|
what type of plane is an m80
|
[[FUNCTION]] get_aircraft {'aircraft_code': 'm80'}
|
what is the earliest flight that i can take from boston to baltimore
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
list the nonstop flights on wednesday june second from miami to washington arriving in washington between 1115 am and 1245 pm
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'arrive_date.day_name': 'wednesday', 'arrive_date.month_name': 'june', 'arrive_date.day_number': 'second', 'fromloc.city_name': 'miami', 'toloc.city_name': 'washington', 'arrive_time.start_time': '1115 am', 'arrive_time.end_time': '1245 pm'}
|
i would like to fly from st. paul to san jose monday morning from san jose to houston tuesday morning and from houston to st. paul on wednesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'houston', 'toloc.city_name': 'st. paul', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning'}
|
what is fare code m
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'm'}
|
show me ground transportation in baltimore
|
[[FUNCTION]] get_ground_service {'city_name': 'baltimore'}
|
what are all the flights on delta in and out of fort worth
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'fort worth'}
|
show me all the flights from baltimore to columbus
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'columbus'}
|
i want to fly from boston to atlanta i would like the cheapest fare please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'cost_relative': 'cheapest'}
|
would you tell me the cheapest one way fare from boston to oakland
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland'}
|
is there ground transportation from the airport to downtown phoenix
|
[[FUNCTION]] get_ground_service {'toloc.city_name': 'phoenix'}
|
does the phoenix airport have ground transportation to and from downtown
|
[[FUNCTION]] get_ground_service {'airport_name': 'phoenix airport'}
|
give me the flights from milwaukee to st. louis leaving sunday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'st. louis', 'depart_date.day_name': 'sunday', 'depart_time.period_of_day': 'morning'}
|
what is sa
|
[[FUNCTION]] get_abbreviation {'days_code': 'sa'}
|
a flight on continental airlines leaving boston and going to denver
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me all meals on flights from atlanta to washington
|
[[FUNCTION]] get_meal {'meal': 'meals', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington'}
|
saturday flights from las vegas to phoenix
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'saturday', 'fromloc.city_name': 'las vegas', 'toloc.city_name': 'phoenix'}
|
i would like to find the least expensive flight from boston to denver
|
[[FUNCTION]] get_flight {'cost_relative': 'least expensive', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me flights arriving in baltimore from pittsburgh between 4 and 5 pm
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'fromloc.city_name': 'pittsburgh', 'arrive_time.start_time': '4', 'arrive_time.end_time': '5 pm'}
|
i need a flight delta airlines kansas city to salt lake
|
[[FUNCTION]] get_flight {'airline_name': 'delta airlines', 'fromloc.city_name': 'kansas city', 'toloc.city_name': 'salt lake'}
|
can you list all flights from washington to toronto
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'toronto'}
|
show all nonstop flights from boston to san francisco
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
show flights between toronto and san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'san francisco'}
|
show me the flights between boston and san francisco denver and san francisco boston and denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
ground transportation oakland
|
[[FUNCTION]] get_ground_service {'city_name': 'oakland'}
|
show me all daily flights between milwaukee and orlando
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando'}
|
what flights from kansas city to atlanta arriving before 10 am on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'atlanta', 'arrive_time.time_relative': 'before', 'arrive_time.time': '10 am', 'arrive_date.day_name': 'monday'}
|
what flights leave philadelphia for dallas and depart before noon on american airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon', 'airline_name': 'american airlines'}
|
airlines that fly to miami from new york on friday
|
[[FUNCTION]] get_airline {'toloc.city_name': 'miami', 'fromloc.city_name': 'new york', 'depart_date.day_name': 'friday'}
|
what flights leave seattle on sunday on continental after 9 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'seattle', 'depart_date.day_name': 'sunday', 'airline_name': 'continental', 'depart_time.time_relative': 'after', 'depart_time.time': '9 pm'}
|
what is the earliest flight from washington to san francisco on friday that serves breakfast
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'friday', 'meal_description': 'breakfast'}
|
what do you have going from atlanta to philadelphia serving breakfast
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'meal_description': 'breakfast'}
|
i 'd like to see flights from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
what flights are available with q fares from boston to pittsburgh
|
[[FUNCTION]] get_flight {'fare_basis_code': 'q fares', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
is there ground transportation from the milwaukee airport to the downtown area
|
[[FUNCTION]] get_ground_service {'airport_name': 'milwaukee airport'}
|
flights from pittsburgh to newark
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'newark'}
|
i want to go between boston and san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
show departures from atlanta for american
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'airline_name': 'american'}
|
show me the flights available from dallas to baltimore august third
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'august', 'depart_date.day_number': 'third'}
|
show me fares from philadelphia to san francisco on thursday morning
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'}
|
please list the flight times from pittsburgh to newark
|
[[FUNCTION]] get_flight_time {'flight_time': 'flight times', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'newark'}
|
how far is downtown from the airport in dallas
|
[[FUNCTION]] get_distance {'fromloc.city_name': 'dallas'}
|
what flights from any city land at general mitchell international
|
[[FUNCTION]] get_flight {'toloc.airport_name': 'general mitchell international'}
|
show me ground transportation information for san francisco
|
[[FUNCTION]] get_ground_service {'city_name': 'san francisco'}
|
could you find me the cheapest fare from boston to san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
please list information regarding san francisco airport
|
[[FUNCTION]] get_airport {'airport_name': 'san francisco airport'}
|
show me flights between milwaukee and phoenix on saturday or sunday american airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'phoenix', 'depart_date.day_name': 'sunday', 'or': 'or', 'airline_name': 'american airlines'}
|
i 'd like a first class flight from denver to baltimore on january first
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'january', 'depart_date.day_number': 'first'}
|
what 's the name of the denver airport
|
[[FUNCTION]] get_airport {'airport_name': 'denver airport'}
|
list all the takeoffs and landings at general mitchell airport
|
[[FUNCTION]] get_flight {'airport_name': 'general mitchell airport'}
|
show me the flights arriving around noon in baltimore from denver
|
[[FUNCTION]] get_flight {'arrive_time.time_relative': 'around', 'arrive_time.time': 'noon', 'toloc.city_name': 'baltimore', 'fromloc.city_name': 'denver'}
|
on tuesday i 'd like to find a flight from detroit to st. petersburg that arrives before 10 pm
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'fromloc.city_name': 'detroit', 'toloc.city_name': 'st. petersburg', 'arrive_time.time_relative': 'before', 'arrive_time.time': '10 pm'}
|
i 'd like a flight tomorrow from kansas city to newark in the morning
|
[[FUNCTION]] get_flight {'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'kansas city', 'toloc.city_name': 'newark', 'depart_time.period_of_day': 'morning'}
|
list the flights from philadelphia to san francisco which have a layover in dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
now i need a flight leaving fort worth and arriving in denver no later than 2 pm next monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'fort worth', 'toloc.city_name': 'denver', 'arrive_time.time_relative': 'no later than', 'arrive_time.time': '2 pm', 'arrive_date.date_relative': 'next', 'arrive_date.day_name': 'monday'}
|
flights from san jose to st. paul
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san jose', 'toloc.city_name': 'st. paul'}
|
i want information on flights from atlanta to washington dc give me information on flights after 4 pm on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_time.time_relative': 'after', 'depart_time.time': '4 pm', 'depart_date.day_name': 'wednesday'}
|
show ground transportation for pittsburgh
|
[[FUNCTION]] get_ground_service {'city_name': 'pittsburgh'}
|
what is the earliest flight in the morning from boston to pittsburgh
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
morning flight from atlanta to philadelphia
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'}
|
what are the cheapest flights from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
show morning flights from san francisco to pittsburgh
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'}
|
what are the first class and coach fares for flights from chicago to kansas city arriving around 7 pm next thursday
|
[[FUNCTION]] get_airfare {'class_type': 'coach', 'fromloc.city_name': 'chicago', 'toloc.city_name': 'kansas city', 'arrive_time.time_relative': 'around', 'arrive_time.time': '7 pm', 'arrive_date.date_relative': 'next', 'arrive_date.day_name': 'thursday'}
|
show me all flights from dallas to pittsburgh on monday which leave after 8 o'clock pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'monday', 'depart_time.time_relative': 'after', 'depart_time.time': "8 o'clock pm"}
|
find me the cheapest one way fare i can get from boston to denver
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me the flights from atlanta to denver on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.day_name': 'friday'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.