input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
what flights from miami to indianapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'miami', 'toloc.city_name': 'indianapolis'}
|
which airlines fly between boston and pittsburgh
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
flight from nashville to cleveland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'nashville', 'toloc.city_name': 'cleveland'}
|
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'}
|
does midwest express serve philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'city_name': 'philadelphia'}
|
show me the flights from denver to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
i would like a flight from washington to boston flight 324 on august twentieth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'boston', 'flight_number': '324', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twentieth'}
|
show me the nonstop flights from dallas to houston
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston'}
|
what is the least expensive business class flight between boston and san francisco
|
[[FUNCTION]] get_flight {'cost_relative': 'least expensive', 'class_type': 'business class', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
is there a flight between philadelphia and denver that leaves philadelphia around 2 o'clock in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'around', 'depart_time.time': "2 o'clock", 'depart_time.period_of_day': 'afternoon'}
|
list the flights from dallas to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
show me the costs and times for flights from san francisco to atlanta
|
[[FUNCTION]] get_airfare+flight_time {'flight_time': 'times', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'atlanta'}
|
show me the flights from denver to atlanta on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'friday'}
|
what does the fare code y mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'y'}
|
i would like to see the flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
is there an atlanta flight to denver connecting
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'connect': 'connecting'}
|
what is the last flight out of pittsburgh to boston in the evening on tuesdays
|
[[FUNCTION]] get_flight {'flight_mod': 'last', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'boston', 'depart_time.period_of_day': 'evening', 'depart_date.day_name': 'tuesdays'}
|
what are all monday flights from denver to san francisco on united airlines
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'airline_name': 'united airlines'}
|
show all flights from pittsburgh to san francisco on july twenty eighth 1991
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco', 'depart_date.month_name': 'july', 'depart_date.day_number': 'twenty eighth', 'depart_date.year': '1991'}
|
i would like information on any flights from san francisco to pittsburgh arriving in pittsburgh before 8 am tuesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'arrive_time.time_relative': 'before', 'arrive_time.time': '8 am', 'arrive_date.day_name': 'tuesday', 'arrive_time.period_of_day': 'morning'}
|
i would like to see the flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
which airline has the most business class flights
|
[[FUNCTION]] get_airline {'mod': 'most', 'class_type': 'business class'}
|
find travel arrangements for a round trip flight from dallas to pittsburgh after 8 pm
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'after', 'depart_time.time': '8 pm'}
|
does united airlines fly from denver to baltimore
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
can you show me the flights from baltimore to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
show me all the delta flights leaving or arriving at pittsburgh between 12 and 4 in the afternoon
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'toloc.city_name': 'pittsburgh', 'depart_time.start_time': '12', 'depart_time.end_time': '4', 'depart_time.period_of_day': 'afternoon'}
|
what airline besides continental flies between boston and denver
|
[[FUNCTION]] get_airline {'mod': 'besides', 'airline_name': 'continental', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me all flights direct and connecting from boston to pittsburgh that arrive in pittsburgh before 10 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'arrive_time.time_relative': 'before', 'arrive_time.time': '10 am'}
|
is there any flight leaving washington around 3 o'clock for denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'depart_time.time_relative': 'around', 'depart_time.time': "3 o'clock", 'toloc.city_name': 'denver'}
|
i would like a schedule of flights from denver to san francisco on tuesday
|
[[FUNCTION]] get_flight_time {'flight_time': 'schedule', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'tuesday'}
|
can i rent a car in san jose too
|
[[FUNCTION]] get_ground_service {'transport_type': 'car', 'city_name': 'san jose'}
|
list the flights from st. paul to san jose and from st. paul to houston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. paul', 'toloc.city_name': 'houston'}
|
what 's the earliest flight from dallas to houston
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston'}
|
i would like information on flights from philadelphia to oakland california on friday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'oakland', 'toloc.state_name': 'california', 'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'afternoon'}
|
what type of aircraft is used on the flight from atlanta to philadelphia before 12 o'clock noon
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'depart_time.time_relative': 'before', 'depart_time.time': "12 o'clock noon"}
|
what airline is dl
|
[[FUNCTION]] get_airline {'airline_code': 'dl'}
|
show me all flights from san francisco to boston philadelphia or baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'baltimore'}
|
what are the early weekday flights from san francisco to pittsburgh
|
[[FUNCTION]] get_flight {'flight_mod': 'early', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'}
|
atlanta to oakland thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'oakland', 'depart_date.day_name': 'thursday'}
|
i want a flight from ontario to chicago
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'ontario', 'toloc.city_name': 'chicago'}
|
list all flights from minneapolis to long beach on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'minneapolis', 'toloc.city_name': 'long beach', 'depart_date.day_name': 'saturday'}
|
i want to fly from boston to denver with a stop in philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'stoploc.city_name': 'philadelphia'}
|
i need a list of late afternoon flights from st. louis to chicago
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'late afternoon', 'fromloc.city_name': 'st. louis', 'toloc.city_name': 'chicago'}
|
what flights go from boston to orlando
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'orlando'}
|
list all flights going from boston to atlanta on wednesday after 6 o'clock pm on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'wednesday', 'depart_time.time_relative': 'after', 'depart_time.time': "6 o'clock pm"}
|
what flights does delta have from denver to dallas after 5
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'denver', 'toloc.city_name': 'dallas', 'depart_time.time_relative': 'after', 'depart_time.time': '5'}
|
i 'd like to go from boston to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
show me flights to philadelphia coming from baltimore or denver or pittsburgh
|
[[FUNCTION]] get_flight {'toloc.city_name': 'philadelphia', 'fromloc.city_name': 'pittsburgh', 'or': 'or'}
|
show me all the flights from san francisco to boston for august thirty first 1991
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_date.month_name': 'august', 'depart_date.day_number': 'thirty first', 'depart_date.year': '1991'}
|
what flights go from chicago to seattle on saturday on continental airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'depart_date.day_name': 'saturday', 'airline_name': 'continental airlines'}
|
price of flight from cleveland to nashville
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'nashville'}
|
what flights depart newark for tampa on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'tampa', 'depart_date.day_name': 'friday'}
|
what is your cheapest flight from pittsburgh to denver
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'denver'}
|
on september fourth i 'll be traveling from pittsburgh to atlanta can you tell me what flight would be the cheapest
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'september', 'depart_date.day_number': 'fourth', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'cost_relative': 'cheapest'}
|
list all the arriving flights at general mitchell international
|
[[FUNCTION]] get_flight {'flight_mod': 'arriving', 'fromloc.airport_name': 'general mitchell international'}
|
show me all economy prices from dallas to baltimore
|
[[FUNCTION]] get_airfare {'economy': 'economy', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
tell me about ground transportation between orlando international and orlando
|
[[FUNCTION]] get_ground_service {'fromloc.airport_name': 'orlando international', 'toloc.city_name': 'orlando'}
|
what type of ground transportation is available at logan airport
|
[[FUNCTION]] get_ground_service {'airport_name': 'logan airport'}
|
name the earliest flight from boston to san francisco
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
weekday flights from san francisco to denver
|
[[FUNCTION]] get_flight {'flight_mod': 'weekday', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver'}
|
give me the cheapest one way flights between boston and philadelphia which arrive after noon on a tuesday
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia', 'arrive_time.time_relative': 'after', 'arrive_time.time': 'noon', 'arrive_date.day_name': 'tuesday'}
|
show me the flights from boston to pittsburgh next wednesday night after 6 o'clock
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'night', 'depart_time.time_relative': 'after', 'depart_time.time': "6 o'clock"}
|
show me all flights from philadelphia to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'baltimore'}
|
show me all flights from boston to denver which arrive in denver wednesday before 6
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'arrive_date.day_name': 'wednesday', 'arrive_time.time_relative': 'before', 'arrive_time.time': '6'}
|
i would like a flight that leaves on friday from philadelphia to dallas that makes a stop in atlanta
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'friday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'atlanta'}
|
phoenix to newark on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'newark', 'depart_date.day_name': 'wednesday'}
|
ground transportation for st. paul
|
[[FUNCTION]] get_ground_service {'city_name': 'st. paul'}
|
is there a flight from atlanta to san francisco on november seventh at noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco', 'depart_date.month_name': 'november', 'depart_date.day_number': 'seventh', 'depart_time.time': 'noon'}
|
find me the earliest flight from boston to atlanta and the latest return from atlanta to boston within the same day
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_date.date_relative': 'same'}
|
what is fare code h
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'h'}
|
what is the meaning of meal code s
|
[[FUNCTION]] get_abbreviation {'meal_code': 'meal code s'}
|
what does the fare code qx mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'qx'}
|
how many fares are there one way from tacoma to montreal
|
[[FUNCTION]] get_quantity {'round_trip': 'one way', 'fromloc.city_name': 'tacoma', 'toloc.city_name': 'montreal'}
|
does continental airlines fly from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
all flights and fares from atlanta to dallas round trip after 12 pm less than 1100 dollars
|
[[FUNCTION]] get_flight+airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas', 'round_trip': 'round trip', 'depart_time.time_relative': 'after', 'depart_time.time': '12 pm', 'cost_relative': 'less', 'fare_amount': '1100 dollars'}
|
what type of aircraft leaving philadelphia to dallas
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
what flights are available on sunday to pittsburgh from san francisco
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'toloc.city_name': 'pittsburgh', 'fromloc.city_name': 'san francisco'}
|
are there delta flights leaving denver
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'denver'}
|
please list ground transportation in atlanta
|
[[FUNCTION]] get_ground_service {'city_name': 'atlanta'}
|
what ground transportation is available in san francisco
|
[[FUNCTION]] get_ground_service {'city_name': 'san francisco'}
|
show me all the direct flights from baltimore to atlanta
|
[[FUNCTION]] get_flight {'connect': 'direct', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta'}
|
i would like to fly from pittsburgh to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
i 'm looking for a flight from pittsburgh to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
list all flights on continental leaving denver
|
[[FUNCTION]] get_flight {'airline_name': 'continental', 'fromloc.city_name': 'denver'}
|
i would like to fly from atlanta to boston arriving in boston at 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'arrive_time.time': '5 pm'}
|
do you have a flight from boston to fort worth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'fort worth'}
|
show me the united airlines flights from denver to baltimore leaving on june fourteenth
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'june', 'depart_date.day_number': 'fourteenth'}
|
show me flights from san francisco to seattle
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'seattle'}
|
what flights are there between washington dc and san francisco after 6 pm on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '6 pm', 'depart_date.day_name': 'wednesday'}
|
find the flights that leave philadelphia and arrive in dallas by noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'arrive_time.time_relative': 'by', 'arrive_time.time': 'noon'}
|
information on flights from baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
what is restriction ap 57
|
[[FUNCTION]] get_abbreviation {'restriction_code': 'ap 57'}
|
i need your help with information on ground transportation from the airport in philadelphia to downtown
|
[[FUNCTION]] get_ground_service {'fromloc.city_name': 'philadelphia'}
|
list flights leaving denver and arriving in orlando on saturday departing after 12 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'orlando', 'arrive_date.day_name': 'saturday', 'depart_time.time_relative': 'after', 'depart_time.time': '12 pm'}
|
please list all flights between boston and san francisco nonstop
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'flight_stop': 'nonstop'}
|
the most expensive flight between boston and philadelphia
|
[[FUNCTION]] get_flight {'cost_relative': 'most expensive', 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
does midwest express have any flights from montreal to detroit
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'fromloc.city_name': 'montreal', 'toloc.city_name': 'detroit'}
|
list all flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
find travel arrangements for a one way flight from san francisco to dallas
|
[[FUNCTION]] get_flight {'round_trip': 'one way', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'dallas'}
|
what is fare code c
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'c'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.