input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
what 's the ground transportation from oakland to san francisco
|
[[FUNCTION]] get_ground_service {'fromloc.city_name': 'oakland', 'toloc.city_name': 'san francisco'}
|
give me the 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'}
|
all flights from boston to washington dc on november eleventh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.month_name': 'november', 'depart_date.day_number': 'eleventh'}
|
i would like to see the flights from baltimore to philadelphia again
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
i need a flight from indianapolis to toronto reaching toronto on thursday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'toronto', 'arrive_date.day_name': 'thursday', 'arrive_time.period_of_day': 'morning'}
|
please show me the round trip flights from st. petersburg to toronto
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'toronto'}
|
show flights from denver into san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
what is the most expensive one way fare from boston to atlanta on american airlines
|
[[FUNCTION]] get_airfare {'cost_relative': 'most expensive', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'airline_name': 'american airlines'}
|
price of flight from nashville to cleveland
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'nashville', 'toloc.city_name': 'cleveland'}
|
i would like to fly from boston to oakland what airlines fly from boston to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland'}
|
what airline is ac
|
[[FUNCTION]] get_airline {'airline_code': 'ac'}
|
pittsburgh to baltimore please on january one
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'january', 'depart_date.day_number': 'one'}
|
flight will start from boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston'}
|
am flights from atlanta to philadelphia
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'am', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'}
|
what flights are there from milwaukee to phoenix on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'phoenix', 'depart_date.day_name': 'saturday'}
|
do i get a meal on the atlanta to bwi flight eastern 210
|
[[FUNCTION]] get_meal {'meal': 'meal', 'fromloc.city_name': 'atlanta', 'toloc.airport_code': 'bwi', 'airline_name': 'eastern', 'flight_number': '210'}
|
please show me continental flights from san francisco to pittsburgh on friday
|
[[FUNCTION]] get_flight {'airline_name': 'continental', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'friday'}
|
what 's the cheapest flight from denver to pittsburgh
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
list the flights arriving in atlanta from boston between 4 and 8 pm
|
[[FUNCTION]] get_flight {'toloc.city_name': 'atlanta', 'fromloc.city_name': 'boston', 'arrive_time.start_time': '4', 'arrive_time.end_time': '8 pm'}
|
does any airline have an afternoon flight from atlanta to boston
|
[[FUNCTION]] get_airline {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
what flights depart san francisco after 4 pm and fly to washington via indianapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '4 pm', 'toloc.city_name': 'washington', 'stoploc.city_name': 'indianapolis'}
|
could you tell me what flights you have that run daily from boston to san francisco please
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
on tuesday the twenty third flights from philadelphia to san francisco on american airlines
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'depart_date.day_number': 'twenty third', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'airline_name': 'american airlines'}
|
please list all flights that leave denver before noon on northwest airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon', 'airline_name': 'northwest airlines'}
|
what is lowest cost air fare available for a flight from dallas to baltimore arriving on july fourth
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest cost', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'july', 'arrive_date.day_number': 'fourth'}
|
can you tell me what aircraft is used for delta flight 1222 from kansas city to salt lake city
|
[[FUNCTION]] get_aircraft {'airline_name': 'delta', 'flight_number': '1222', 'fromloc.city_name': 'kansas city', 'toloc.city_name': 'salt lake city'}
|
show me the cheapest round trips from dallas to baltimore
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'round trips', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
what car rentals are available next sunday from denver airport
|
[[FUNCTION]] get_ground_service {'transport_type': 'car rentals', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'sunday', 'fromloc.airport_name': 'denver airport'}
|
show me the airlines
|
[[FUNCTION]] get_airline {}
|
what are the rental car rates in dallas
|
[[FUNCTION]] get_ground_fare {'transport_type': 'rental car', 'city_name': 'dallas'}
|
in economy class from dallas to baltimore arriving july seventh i 'd like to know what 's the cheapest ticket possible
|
[[FUNCTION]] get_airfare {'economy': 'economy class', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'july', 'arrive_date.day_number': 'seventh', 'cost_relative': 'cheapest'}
|
what classes of service does twa provide
|
[[FUNCTION]] get_flight {'airline_code': 'twa'}
|
is there ground transportation in st. louis
|
[[FUNCTION]] get_ground_service {'city_name': 'st. louis'}
|
please give me the cheapest round trip airfare from atlanta to philadelphia on august the first
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'depart_date.month_name': 'august', 'depart_date.day_number': 'first'}
|
what is the cheapest round trip fare on continental 1291 round trip denver san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'airline_name': 'continental', 'flight_number': '1291', 'fromloc.city_name': 'san francisco'}
|
how much does it cost to fly from boston to atlanta
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
which cities are serviced by both american and delta airlines
|
[[FUNCTION]] get_city {'airline_name': 'delta airlines'}
|
show me the flights from philadelphia to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'baltimore'}
|
what flights are available from boston to washington dc late the twenty fifth or early the twenty sixth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_time.period_mod': 'early', 'depart_date.day_number': 'twenty sixth', 'or': 'or'}
|
list the flights that arrive and depart from general mitchell international airport
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'general mitchell international airport'}
|
all right give me the flight times in the morning on september twentieth from pittsburgh to san francisco
|
[[FUNCTION]] get_flight_time {'flight_time': 'flight times', 'depart_time.period_of_day': 'morning', 'depart_date.month_name': 'september', 'depart_date.day_number': 'twentieth', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
show all nonstop flights from atlanta to san francisco
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco'}
|
list all flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
a one way flight from boston to san francisco please
|
[[FUNCTION]] get_flight {'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
i would like an american airlines flight from cincinnati to burbank leaving this afternoon
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'burbank', 'depart_time.period_of_day': 'afternoon'}
|
show me ground transportation in denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
what is the lowest cost fare that delta has between boston and san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest cost', 'airline_name': 'delta', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
what flights do you have today from san francisco to pittsburgh
|
[[FUNCTION]] get_flight {'depart_date.today_relative': 'today', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'}
|
show me flights from minneapolis to seattle on july second
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'minneapolis', 'toloc.city_name': 'seattle', 'depart_date.month_name': 'july', 'depart_date.day_number': 'second'}
|
list all the takeoffs and landings at general mitchell international
|
[[FUNCTION]] get_flight {'airport_name': 'general mitchell international'}
|
show me flights leaving from dallas to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
what is the cost of a first class ticket 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'}
|
does american airlines fly from philadelphia to san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco'}
|
list all flights on continental leaving denver and arriving at chicago on monday before noon
|
[[FUNCTION]] get_flight {'airline_name': 'continental', 'fromloc.city_name': 'denver', 'toloc.city_name': 'chicago', 'arrive_date.day_name': 'monday', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
i would like a flight from nashville to st. louis that arrives in st. louis around 6 pm and is nonstop
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'nashville', 'toloc.city_name': 'st. louis', 'arrive_time.time_relative': 'around', 'arrive_time.time': '6 pm', 'flight_stop': 'nonstop'}
|
does midwest express have any flights from montreal to nashville
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'fromloc.city_name': 'montreal', 'toloc.city_name': 'nashville'}
|
flights from westchester county to st. paul
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'westchester county', 'toloc.city_name': 'st. paul'}
|
what are the flights from nashville to tacoma on tuesday the eighteenth of may
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'nashville', 'toloc.city_name': 'tacoma', 'depart_date.day_name': 'tuesday', 'depart_date.day_number': 'eighteenth', 'depart_date.month_name': 'may'}
|
i 'd like the cheapest cost fare to fort worth from boston
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'toloc.city_name': 'fort worth', 'fromloc.city_name': 'boston'}
|
what is the cheapest one way fare from boston to baltimore
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
what flights are available friday afternoon from pittsburgh to san francisco
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
on august thirtieth please schedule me on a flight from denver to san francisco early in the morning
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'august', 'depart_date.day_number': 'thirtieth', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'morning'}
|
i need information on a flight from san francisco to atlanta that would stop in fort worth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'atlanta', 'stoploc.city_name': 'fort worth'}
|
show me all flights to dallas that are less than 1500 dollars round trip
|
[[FUNCTION]] get_flight {'toloc.city_name': 'dallas', 'cost_relative': 'less', 'fare_amount': '1500 dollars', 'round_trip': 'round trip'}
|
how many passengers can a boeing 737 hold
|
[[FUNCTION]] get_capacity {'aircraft_code': '737'}
|
i need a flight from philadelphia to dallas next wednesday in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning'}
|
show me the flights from love field to all other airports
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'love field'}
|
what airline is ea the abbreviation for
|
[[FUNCTION]] get_airline {'airline_code': 'ea'}
|
show departures and arrivals in atlanta for american airlines
|
[[FUNCTION]] get_flight {'city_name': 'atlanta', 'airline_name': 'american airlines'}
|
what flight from boston to baltimore is the least expensive flight
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'cost_relative': 'least expensive'}
|
from washington dc to philadelphia departing in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'philadelphia', 'depart_time.period_of_day': 'afternoon'}
|
show me flights from san francisco to denver after 4 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'after', 'depart_time.time': '4 pm'}
|
i 'd like to fly from minneapolis to long beach two days from today in the early morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'minneapolis', 'toloc.city_name': 'long beach', 'depart_date.date_relative': 'two', 'depart_date.today_relative': 'today', 'depart_time.period_of_day': 'morning'}
|
i need a ticket from los angeles to charlotte that leaves early in the morning
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'los angeles', 'toloc.city_name': 'charlotte', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'morning'}
|
i need ground transportation in seattle
|
[[FUNCTION]] get_ground_service {'city_name': 'seattle'}
|
does midwest express serve indianapolis
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'city_name': 'indianapolis'}
|
i want to leave oakland and arrive in boston at 5 o'clock in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'boston', 'arrive_time.time': "5 o'clock", 'arrive_time.period_of_day': 'afternoon'}
|
what is fare code y mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'y'}
|
round trip first class fares new york to miami
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'class_type': 'first class', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
july seventh what is the cost of a round trip ticket traveling first class on united airlines leaving from denver going to baltimore
|
[[FUNCTION]] get_airfare {'depart_date.month_name': 'july', 'depart_date.day_number': 'seventh', 'round_trip': 'round trip', 'class_type': 'first class', 'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
could i have listings of flights from new york to montreal canada leaving on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'montreal', 'toloc.country_name': 'canada', 'depart_date.day_name': 'wednesday'}
|
explain fare code qx
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'qx'}
|
what 's the cheapest flight from pittsburgh to san francisco on friday
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'friday'}
|
please show me all fares for flights from denver to oakland
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland'}
|
what flights are between washington and san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco'}
|
what kind of aircraft will i be flying on if i take a first class american airlines flight from philadelphia to dallas
|
[[FUNCTION]] get_aircraft {'class_type': 'first class', 'airline_name': 'american airlines', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
can you tell me the time a flight would leave from atlanta to boston in the afternoon
|
[[FUNCTION]] get_flight_time {'flight_time': 'time', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_time.period_of_day': 'afternoon'}
|
i 'd like to arrange a trip to baltimore on january first
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'depart_date.month_name': 'january', 'depart_date.day_number': 'first'}
|
what is the ground transportation available in fort worth texas
|
[[FUNCTION]] get_ground_service {'city_name': 'fort worth', 'state_name': 'texas'}
|
what is the earliest flight leaving denver going to boston
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
pm flights dallas to atlanta
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'pm', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'atlanta'}
|
display all flights from toronto to san diego on us air with a layover in phoenix
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'san diego', 'airline_name': 'us air', 'stoploc.city_name': 'phoenix'}
|
san francisco to denver tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver', 'depart_date.day_name': 'tuesday'}
|
tell me about flights from indianapolis to houston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'houston'}
|
show me all flights from new york to miami leaving on a tuesday and returning on sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'depart_date.day_name': 'tuesday', 'return_date.day_name': 'sunday'}
|
hi i 'd like a flight from tampa to montreal
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'tampa', 'toloc.city_name': 'montreal'}
|
show me the lowest fare for a round trip flight from baltimore to dallas
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
show me flights from philadelphia to oakland on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'oakland', 'depart_date.day_name': 'friday'}
|
give me the flights for american airline from dallas to san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'american airline', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
i 'd like to see all the flights from boston to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.