input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
list all the airlines that fly into general mitchell international
|
[[FUNCTION]] get_airline {'toloc.airport_name': 'general mitchell international'}
|
show me the cheapest one way fare from baltimore to dallas
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
show me all nonstop flights from salt lake city to cincinnati
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'salt lake city', 'toloc.city_name': 'cincinnati'}
|
what afternoon flights are available from atlanta to san francisco
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco'}
|
what airlines have business class service between boston and san francisco
|
[[FUNCTION]] get_airline {'class_type': 'business class', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
what type of aircraft is used flying from atlanta to denver before 12 noon
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'before', 'depart_time.time': '12 noon'}
|
show me oakland to dallas flights
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'dallas'}
|
how many first class flights does united have leaving from all cities today
|
[[FUNCTION]] get_quantity {'class_type': 'first class', 'airline_name': 'united', 'depart_date.today_relative': 'today'}
|
what are the flights that leave detroit and arrive in chicago around 7 pm next wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'detroit', 'toloc.city_name': 'chicago', 'arrive_time.time_relative': 'around', 'arrive_time.time': '7 pm', 'arrive_date.date_relative': 'next', 'arrive_date.day_name': 'wednesday'}
|
what are the nonstop flights from kansas city to burbank arriving on saturday may twenty two
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'kansas city', 'toloc.city_name': 'burbank', 'arrive_date.day_name': 'saturday', 'arrive_date.month_name': 'may', 'arrive_date.day_number': 'twenty two'}
|
what kind of airplanes are used by delta airlines flying between washington and denver
|
[[FUNCTION]] get_aircraft {'airline_name': 'delta airlines', 'fromloc.city_name': 'washington', 'toloc.city_name': 'denver'}
|
what is the earliest flight from boston to oakland that serves a meal
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland', 'meal': 'meal'}
|
flight from denver to philadelphia saturday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'saturday', 'depart_time.period_of_day': 'afternoon'}
|
show me all nonstop flights between denver and oakland leaving after noon and arriving after 5 pm
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland', 'arrive_time.time_relative': 'after', 'arrive_time.time': '5 pm'}
|
what type of ground transportation is available at philadelphia airport
|
[[FUNCTION]] get_ground_service {'airport_name': 'philadelphia airport'}
|
tell me about flights from salt lake city to st. petersburg
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'salt lake city', 'toloc.city_name': 'st. petersburg'}
|
fares and flights from denver to philadelphia
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
i want a flight from cincinnati to burbank on american airlines and leave in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'burbank', 'airline_name': 'american airlines', 'depart_time.period_of_day': 'afternoon'}
|
okay could you get me a round trip ticket from indianapolis to kansas city
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'kansas city'}
|
can you show me the available flights from baltimore to dallas with economy fares
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas', 'economy': 'economy'}
|
show me us air flights from san francisco to pittsburgh on tuesday
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'tuesday'}
|
flights from indianapolis to seattle
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'seattle'}
|
list the flights from philadelphia to san francisco via dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
i would like a flight from boston to denver on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_date.day_name': 'monday'}
|
what about a car rental in denver
|
[[FUNCTION]] get_ground_service {'transport_type': 'car rental', 'city_name': 'denver'}
|
do any us air flights leave from san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'san francisco'}
|
please show me airlines with flights from denver to philadelphia
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
what flights leave from nashville to phoenix
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'nashville', 'toloc.city_name': 'phoenix'}
|
i 'd like to fly from atlanta to denver on august twenty ninth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twenty ninth'}
|
what ground transportation is there in denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
list all round trip fares from st. petersburg to washington
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'washington'}
|
how much is a first class ticket from washington to san francisco leaving on friday
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'friday'}
|
show me flights from pittsburgh to atlanta on monday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'afternoon'}
|
i would like to book a flight for may twenty sixth going from tampa to milwaukee a direct flight if possible
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'may', 'depart_date.day_number': 'twenty sixth', 'fromloc.city_name': 'tampa', 'toloc.city_name': 'milwaukee', 'connect': 'direct'}
|
show me the flights from boston to san francisco stopping in dallas on american airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas', 'airline_name': 'american airlines'}
|
what is restriction ap 57
|
[[FUNCTION]] get_abbreviation {'restriction_code': 'ap 57'}
|
i 'd like to know the information from boston to philadelphia nonstop
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia', 'flight_stop': 'nonstop'}
|
show me non first class flights from baltimore to dallas
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
can i get from dallas to san francisco leaving in the morning and arriving in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco', 'depart_time.period_of_day': 'morning', 'arrive_time.period_of_day': 'morning'}
|
show all wednesday morning flights from denver to boston
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
what flights are available friday afternoon from philadelphia to oakland california
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'oakland', 'toloc.state_name': 'california'}
|
all flights from san francisco to boston leaving before noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon'}
|
flights from ontario to orlando
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'ontario', 'toloc.city_name': 'orlando'}
|
wednesday from baltimore to newark
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'wednesday', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'newark'}
|
round trip fare from baltimore to philadelphia less than 1000 dollars
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia', 'cost_relative': 'less', 'fare_amount': '1000 dollars'}
|
okay on monday may thirty first i 'd like to go from san diego to phoenix early in the morning
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'depart_date.month_name': 'may', 'depart_date.day_number': 'thirty first', 'fromloc.city_name': 'san diego', 'toloc.city_name': 'phoenix', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'morning'}
|
list all flights from denver to san francisco on wednesday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'afternoon'}
|
what is the cheapest flight from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
does northwest fly into denver
|
[[FUNCTION]] get_flight {'airline_name': 'northwest', 'toloc.city_name': 'denver'}
|
show flights from new york city to las vegas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york city', 'toloc.city_name': 'las vegas'}
|
i would like to fly from denver to boston on wednesday the twenty first
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'boston', 'depart_date.day_name': 'wednesday', 'depart_date.day_number': 'twenty first'}
|
i 'd like to fly from boston to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
oakland to san francisco please breakfast flight
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'san francisco', 'meal_description': 'breakfast'}
|
show me all the flights from boston to denver that serve lunch
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'meal_description': 'lunch'}
|
i want to go from boston to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland'}
|
what is the cost of flights from denver to san francisco
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
all flights from pittsburgh to philadelphia next tuesday arriving near 6 o'clock
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'tuesday', 'arrive_time.time_relative': 'near', 'arrive_time.time': "6 o'clock"}
|
hi i need to go from newark to nashville on american airlines leaving around 630 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'nashville', 'airline_name': 'american airlines', 'depart_time.time_relative': 'around', 'depart_time.time': '630 pm'}
|
show me the evening flights from atlanta to washington on wednesdays
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'depart_date.day_name': 'wednesdays'}
|
show me nonstop flights from miami to new york with coach class fares
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'miami', 'toloc.city_name': 'new york', 'class_type': 'coach class'}
|
information of a flight from atlanta to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'pittsburgh'}
|
show me all flights from montreal to nashville
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'montreal', 'toloc.city_name': 'nashville'}
|
please give me flights available from baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
show me the flights from dallas to baltimore with a fare of 415 dollars
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'fare_amount': '415 dollars'}
|
show me the flights from pittsburgh to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
i 'm requesting flight information on a flight from san francisco to pittsburgh on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'friday'}
|
delta flights from san francisco please
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'san francisco'}
|
please list all delta flights from kansas city to salt lake city
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'kansas city', 'toloc.city_name': 'salt lake city'}
|
what flights are available from dallas to atlanta with one way economy fares
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'atlanta', 'round_trip': 'one way', 'economy': 'economy'}
|
how do i get from bwi to washington
|
[[FUNCTION]] get_flight {'fromloc.airport_code': 'bwi', 'toloc.city_name': 'washington'}
|
i 'd like a list of all the flights from san francisco to pittsburgh on sunday please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'sunday'}
|
is there a direct flight from denver to pittsburgh in the morning of august thirty first that is nonstop
|
[[FUNCTION]] get_flight {'connect': 'direct', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'depart_time.period_of_day': 'morning', 'depart_date.month_name': 'august', 'depart_date.day_number': 'thirty first', 'flight_stop': 'nonstop'}
|
i 'd like to buy a coach class ticket from denver to atlanta with a stopover in pittsburgh
|
[[FUNCTION]] get_airfare {'class_type': 'coach class', 'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta', 'stoploc.city_name': 'pittsburgh'}
|
show me all flights from philadelphia to dallas which arrive in dallas before 3 o'clock pm on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'arrive_time.time_relative': 'before', 'arrive_time.time': "3 o'clock pm", 'arrive_date.day_name': 'saturday'}
|
show flights from san francisco to denver on a thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver', 'depart_date.day_name': 'thursday'}
|
please list the friday night flights from st. paul to kansas city
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'night', 'fromloc.city_name': 'st. paul', 'toloc.city_name': 'kansas city'}
|
what are the flights from boston to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
let 's see how much would a direct flight from atlanta to denver be on may seventh
|
[[FUNCTION]] get_airfare {'connect': 'direct', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.month_name': 'may', 'depart_date.day_number': 'seventh'}
|
am flights from dallas to san francisco
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'am', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
show me all flights from chicago to kansas city on thursday june seventeenth arriving in kansas city at around 7 o'clock in the evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'kansas city', 'depart_date.day_name': 'thursday', 'depart_date.month_name': 'june', 'depart_date.day_number': 'seventeenth', 'arrive_time.time_relative': 'around', 'arrive_time.time': "7 o'clock", 'arrive_time.period_of_day': 'evening'}
|
list list flights between oakland and denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'denver'}
|
what northwest flights leave denver before noon
|
[[FUNCTION]] get_flight {'airline_name': 'northwest', 'fromloc.city_name': 'denver', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon'}
|
which airlines fly from bwi to dallas fort worth
|
[[FUNCTION]] get_airline {'fromloc.airport_code': 'bwi', 'toloc.city_name': 'dallas fort worth'}
|
show me all the saturday flights from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'saturday', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
american airlines from denver to milwaukee
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'milwaukee'}
|
i need flight information on thursday leaving pittsburgh and arriving in baltimore in the morning
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'thursday', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'arrive_time.period_of_day': 'morning'}
|
do you have an early morning direct flight from philadelphia to pittsburgh
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'connect': 'direct', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'pittsburgh'}
|
flight from washington dc to salt lake city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'salt lake city'}
|
what ground transportation is available in san francisco
|
[[FUNCTION]] get_ground_service {'city_name': 'san francisco'}
|
i would like a flight from dallas to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'philadelphia'}
|
what are the flights from denver to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland'}
|
what are the flights on tuesday october first from atlanta to baltimore
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'depart_date.month_name': 'october', 'class_type': 'first', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
i 'd like to see flights from baltimore to atlanta that arrive before noon and i 'd like to see flights from denver to atlanta that arrive before noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
show me all the flights between philadelphia and denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver'}
|
show me flights from boston to pittsburgh after 1700 hours on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'after', 'depart_time.time': '1700 hours', 'depart_date.day_name': 'wednesday'}
|
show me round trip tickets from new york to miami
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
what is the schedule of ground transportation from washington airport into downtown
|
[[FUNCTION]] get_flight_time {'flight_time': 'schedule', 'fromloc.airport_name': 'washington airport'}
|
i want to fly from philadelphia to dallas to san francisco on monday july eighth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'monday', 'depart_date.month_name': 'july', 'depart_date.day_number': 'eighth'}
|
list lowest cost flight from dallas to baltimore that serves a meal
|
[[FUNCTION]] get_flight {'cost_relative': 'lowest cost', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'meal': 'meal'}
|
show me all the flights between oakland and denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'denver'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.