input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
from los angeles to phoenix on a friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'los angeles', 'toloc.city_name': 'phoenix', 'depart_date.day_name': 'friday'}
|
dallas to oakland monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'oakland', 'depart_date.day_name': 'monday'}
|
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'}
|
could you please find me a nonstop flight from atlanta to baltimore on a boeing 757 arriving at 7 pm
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'aircraft_code': '757', 'arrive_time.time': '7 pm'}
|
what are the flights available in the morning between boston and denver
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
ground transportation in dallas and boston
|
[[FUNCTION]] get_ground_service {'city_name': 'boston'}
|
what flights are available from atlanta to oakland with one way economy fares
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'oakland', 'round_trip': 'one way', 'economy': 'economy'}
|
do you have a flight from atlanta to boston that will stop in washington
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'stoploc.city_name': 'washington'}
|
i live in denver and i 'd like to make a trip to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
show me the united flights from denver to baltimore
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
is bwi washington
|
[[FUNCTION]] get_city {'airport_code': 'bwi', 'city_name': 'washington'}
|
list the flights from new york to miami on a tuesday which are nonstop and cost less than 466 dollars
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'depart_date.day_name': 'tuesday', 'flight_stop': 'nonstop', 'cost_relative': 'less', 'fare_amount': '466 dollars'}
|
i would like to fly from denver to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
what flights do you have leaving denver and arriving in san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
what airlines fly from philadelphia to san francisco
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco'}
|
i would like a flight on continental airlines on august twentieth from washington to pittsburgh
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twentieth', 'fromloc.city_name': 'washington', 'toloc.city_name': 'pittsburgh'}
|
show me the dinner flights from baltimore to oakland
|
[[FUNCTION]] get_flight {'meal_description': 'dinner', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'oakland'}
|
show me the last flight on wednesday from atlanta to denver
|
[[FUNCTION]] get_flight {'flight_mod': 'last', 'depart_date.day_name': 'wednesday', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
i would like to make a round trip between washington and san francisco
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco'}
|
how much is the cheapest flight from denver to pittsburgh with a stop in atlanta
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'stoploc.city_name': 'atlanta'}
|
what does ord mean
|
[[FUNCTION]] get_abbreviation {'airport_code': 'ord'}
|
what are connecting flights from chicago to seattle on june first
|
[[FUNCTION]] get_flight {'connect': 'connecting', 'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'depart_date.month_name': 'june', 'depart_date.day_number': 'first'}
|
how about april twenty seventh denver to washington
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'april', 'depart_date.day_number': 'twenty seventh', 'fromloc.city_name': 'denver', 'toloc.city_name': 'washington'}
|
what flights go from boston to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas'}
|
what is sa
|
[[FUNCTION]] get_abbreviation {'days_code': 'sa'}
|
can you show me what fares are available from oakland to dallas on december sixteenth one way only
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'oakland', 'toloc.city_name': 'dallas', 'depart_date.month_name': 'december', 'depart_date.day_number': 'sixteenth', 'round_trip': 'one way'}
|
show me the round trip tickets from baltimore to atlanta
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta'}
|
please show me the flights from denver to baltimore between 10 am and 2 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'depart_time.start_time': '10 am', 'depart_time.end_time': '2 pm'}
|
i need a late flight from san francisco to boston on wednesday
|
[[FUNCTION]] get_flight {'flight_mod': 'late', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_date.day_name': 'wednesday'}
|
i 'd like to go from boston to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
i need a flight from baltimore to dallas tomorrow morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas', 'depart_date.today_relative': 'tomorrow', 'depart_time.period_of_day': 'morning'}
|
what 're the cheapest nonstop flights from new york to miami one way
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'flight_stop': 'nonstop', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'round_trip': 'one way'}
|
list all flights from orlando to kansas city then to minneapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'orlando', 'toloc.city_name': 'minneapolis'}
|
in new york i 'll need to rent a car
|
[[FUNCTION]] get_ground_service {'city_name': 'new york', 'transport_type': 'car'}
|
i 'd like to know the earliest flight from boston to atlanta
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
could you tell me what the earliest flight that goes between atlanta and denver is which serves a meal
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'meal': 'meal'}
|
show me the flights from san francisco to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
what are the flights from pittsburgh to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'denver'}
|
show me all flights from pittsburgh to baltimore on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.day_name': 'thursday'}
|
what time does the flight leave denver going to san francisco on continental airlines
|
[[FUNCTION]] get_flight_time {'flight_time': 'time', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'airline_name': 'continental airlines'}
|
what are the flights available after 3 pm between denver and san francisco
|
[[FUNCTION]] get_flight {'depart_time.time_relative': 'after', 'depart_time.time': '3 pm', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
show me the flights from baltimore to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston'}
|
flights from pittsburgh to newark
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'newark'}
|
what flight from boston to atlanta arrives earliest in atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'flight_mod': 'earliest'}
|
what is the schedule for flights between pittsburgh and boston on the evening of july ninth
|
[[FUNCTION]] get_flight_time {'flight_time': 'schedule for flights', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'boston', 'depart_time.period_of_day': 'evening', 'depart_date.month_name': 'july', 'depart_date.day_number': 'ninth'}
|
i 'd like to fly from boston to oakland through denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland', 'stoploc.city_name': 'denver'}
|
can you list all flights leaving from st. louis and arriving in milwaukee
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. louis', 'toloc.city_name': 'milwaukee'}
|
show me flights from atlanta to washington dc leaving on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'thursday'}
|
show me all flights from san francisco to boston philadelphia or baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'baltimore'}
|
show me the flights arriving at love field
|
[[FUNCTION]] get_flight {'toloc.airport_name': 'love field'}
|
do you have a night flight from washington to boston on august twenty seventh
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'night', 'fromloc.city_name': 'washington', 'toloc.city_name': 'boston', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twenty seventh'}
|
show me all flights from san diego to dulles on boeing 767
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san diego', 'toloc.airport_name': 'dulles', 'aircraft_code': '767'}
|
what are the flights from boston to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
all round trip flights between new york and miami coach fare
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'class_type': 'coach'}
|
i 'd like a flight from kansas city to los angeles that arrives in los angeles in the late afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'los angeles', 'arrive_time.period_of_day': 'late afternoon'}
|
i 'd like a cheap flight from dallas to baltimore on january first
|
[[FUNCTION]] get_flight {'flight_mod': 'cheap', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'january', 'depart_date.day_number': 'first'}
|
round trip fares from denver to philadelphia under 1000 dollars and pittsburgh to philadelphia under 1000 dollars
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia', 'cost_relative': 'under', 'fare_amount': '1000 dollars'}
|
from phoenix to las vegas on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'las vegas', 'depart_date.day_name': 'saturday'}
|
my destination is san francisco i live in denver i would like a flight on august thirtieth in the morning on any airline that will get me there
|
[[FUNCTION]] get_flight {'toloc.city_name': 'san francisco', 'fromloc.city_name': 'denver', 'depart_date.month_name': 'august', 'depart_date.day_number': 'thirtieth', 'depart_time.period_of_day': 'morning'}
|
show me the flights on delta from atlanta in the morning
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'atlanta', 'depart_time.period_of_day': 'morning'}
|
i would like to fly from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
how can i get from indianapolis to montreal in the evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'montreal', 'depart_time.period_of_day': 'evening'}
|
list all arrivals from any airport to baltimore on thursday morning arriving before 9 am
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning', 'arrive_time.time_relative': 'before', 'arrive_time.time': '9 am'}
|
show me the flights from miami to san diego with one stop in denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'miami', 'toloc.city_name': 'san diego', 'flight_stop': 'one stop', 'stoploc.city_name': 'denver'}
|
tell me the last flight from atlanta to philadelphia
|
[[FUNCTION]] get_flight {'flight_mod': 'last', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'}
|
are there any flights between pittsburgh and baltimore using a j31 aircraft
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'aircraft_code': 'j31'}
|
may i please see airlines and flight numbers from new york to toronto on the same date june seventeenth also arriving in toronto before noon thank you
|
[[FUNCTION]] get_airline+flight_no {'fromloc.city_name': 'new york', 'toloc.city_name': 'toronto', 'depart_date.date_relative': 'same', 'depart_date.month_name': 'june', 'depart_date.day_number': 'seventeenth', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
what are the flights from boston to orlando
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'orlando'}
|
i need a flight from baltimore to seattle that stops in minneapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'seattle', 'stoploc.city_name': 'minneapolis'}
|
what ground transportation is available in boston
|
[[FUNCTION]] get_ground_service {'city_name': 'boston'}
|
what is the latest return flight from atlanta to boston
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
could you tell me about flights from philadelphia to dallas that arrives in the early afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'depart_time.period_of_day': 'early', 'arrive_time.period_of_day': 'afternoon'}
|
i need information on flights from kansas city missouri to salt lake city utah i am interested in only those flights on delta airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'fromloc.state_name': 'missouri', 'toloc.city_name': 'salt lake city', 'toloc.state_name': 'utah', 'airline_name': 'delta airlines'}
|
i would like a flight from oakland to philadelphia at one in the afternoon arriving at 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'philadelphia', 'depart_time.time': 'one', 'depart_time.period_of_day': 'afternoon', 'arrive_time.time': '5 pm'}
|
is there a round trip flight from atlanta to dallas via denver
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'denver'}
|
show me the flights before 8 am on august second from boston to denver on delta
|
[[FUNCTION]] get_flight {'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', 'airline_name': 'delta'}
|
what flights are there from baltimore to newark
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'newark'}
|
show me all 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 flights from pittsburgh to newark after 1020 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'newark', 'depart_time.time_relative': 'after', 'depart_time.time': '1020 pm'}
|
how much does it cost to fly from atlanta to san francisco
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco'}
|
what are the flights from san francisco to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver'}
|
show nonstop flights from new york to miami on a tuesday which cost less than 466 dollars one way
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'arrive_date.day_name': 'tuesday', 'cost_relative': 'less', 'fare_amount': '466 dollars', 'round_trip': 'one way'}
|
what is the most expensive flight from boston to dallas round trip
|
[[FUNCTION]] get_flight {'cost_relative': 'most expensive', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas', 'round_trip': 'round trip'}
|
i need a nonstop flight from atlanta to baltimore arriving between 5 pm and 730 pm
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'arrive_time.start_time': '5 pm', 'arrive_time.end_time': '730 pm'}
|
what is the earliest flight in the morning leaving boston for baltimore
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
show me fares less than 400 dollars for flights from dallas to baltimore
|
[[FUNCTION]] get_airfare {'cost_relative': 'less', 'fare_amount': '400 dollars', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
okay on the following wednesday i 'd like to go from memphis to cincinnati as early as possible
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'following', 'depart_date.day_name': 'wednesday', 'fromloc.city_name': 'memphis', 'toloc.city_name': 'cincinnati'}
|
show me flights going from boston to denver arriving on wednesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'arrive_date.day_name': 'wednesday', 'arrive_time.period_of_day': 'morning'}
|
how many cities are served by lufthansa with first class flights
|
[[FUNCTION]] get_quantity {'airline_name': 'lufthansa', 'class_type': 'first class'}
|
show me the flights from all airports to love field
|
[[FUNCTION]] get_flight {'toloc.airport_name': 'love field'}
|
are there any flights from new york to los angeles which stop over in milwaukee
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'los angeles', 'stoploc.city_name': 'milwaukee'}
|
show united flights between pittsburgh and baltimore
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
find travel arrangements for a one way flight from boston to pittsburgh
|
[[FUNCTION]] get_flight {'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
what are flights from boston to st. petersburg
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'st. petersburg'}
|
list flights from phoenix to detroit on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'detroit', 'depart_date.day_name': 'wednesday'}
|
where does delta fly to that american doesn 't
|
[[FUNCTION]] get_flight {'airline_name': 'american', 'mod': "doesn 't"}
|
show me fares for flights from minneapolis to seattle on july first 1993
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'minneapolis', 'toloc.city_name': 'seattle', 'depart_date.month_name': 'july', 'depart_date.day_number': 'first', 'depart_date.year': '1993'}
|
show me all fares from new york to miami leaving on a tuesday
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'depart_date.day_name': 'tuesday'}
|
can i have a list of all the thursday flights from baltimore to atlanta that leave after 1 pm
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'thursday', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'after', 'depart_time.time': '1 pm'}
|
can you show me fares for december sixteenth from oakland to dallas one way only
|
[[FUNCTION]] get_airfare {'depart_date.month_name': 'december', 'depart_date.day_number': 'sixteenth', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'dallas', 'round_trip': 'one way'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.