input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
find me the earliest flight from boston to atlanta
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
list nonstop flights from houston to dallas which arrive before midnight
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'houston', 'toloc.city_name': 'dallas', 'arrive_time.time_relative': 'before', 'arrive_time.period_of_day': 'midnight'}
|
show me the flights from boston to san francisco that stop in atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'atlanta'}
|
show me flights to san francisco from philadelphia stopping in dallas
|
[[FUNCTION]] get_flight {'toloc.city_name': 'san francisco', 'fromloc.city_name': 'philadelphia', 'stoploc.city_name': 'dallas'}
|
what city is the airport mco in
|
[[FUNCTION]] get_city {'fromloc.airport_code': 'mco'}
|
how much does it cost to rent a car in tacoma
|
[[FUNCTION]] get_ground_fare {'transport_type': 'car', 'city_name': 'tacoma'}
|
show me flights from baltimore to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
show me a list of ground transportation at denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
i 'd like a flight from columbus to phoenix stopping in cincinnati and serving dinner what 's available
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'columbus', 'toloc.city_name': 'phoenix', 'stoploc.city_name': 'cincinnati', 'meal_description': 'dinner'}
|
also show me flights from san francisco to pittsburgh on tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'tuesday'}
|
show flights from dallas to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'oakland'}
|
give me the cheapest flight from charlotte to long beach
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'charlotte', 'toloc.city_name': 'long beach'}
|
show me all flights from san francisco to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'}
|
find me a flight on united from boston to san francisco with a stopover in denver
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'}
|
show me the last flight from love field
|
[[FUNCTION]] get_flight {'flight_mod': 'last', 'fromloc.airport_name': 'love field'}
|
what flights go from newark to boston after 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': '5 pm'}
|
what are all the flights from boston to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas'}
|
what is the earliest flight departing san francisco and arriving in boston on november ninth
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'arrive_date.month_name': 'november', 'arrive_date.day_number': 'ninth'}
|
what is the earliest flight flying from pittsburgh to atlanta on july fifth
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.month_name': 'july', 'depart_date.day_number': 'fifth'}
|
please list available flights for next saturday from philadelphia to dallas
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'depart_date.day_name': 'saturday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
what flights leave pittsburgh and arrive in los angeles after 5 pm on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'los angeles', 'arrive_time.time_relative': 'after', 'arrive_time.time': '5 pm', 'arrive_date.day_name': 'thursday'}
|
what is the transportation time from the airport to boston
|
[[FUNCTION]] get_ground_service {'time': 'time', 'toloc.city_name': 'boston'}
|
which airline has the smallest plane leaving pittsburgh and arriving in baltimore on july fourth
|
[[FUNCTION]] get_airline {'mod': 'smallest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'july', 'arrive_date.day_number': 'fourth'}
|
what are the nonstop flights on america west or southwest air from kansas city to burbank on saturday may twenty two
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'airline_name': 'southwest', 'or': 'or', '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 are the classes of service for american airlines
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines'}
|
i would like to find out what flights there are on friday june eleventh from st. petersburg to milwaukee and then from milwaukee to tacoma thank you
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'friday', 'depart_date.month_name': 'june', 'depart_date.day_number': 'eleventh', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'tacoma'}
|
all flights from boston to washington dc on november tenth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.month_name': 'november', 'depart_date.day_number': 'tenth'}
|
what are the flights from denver to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'}
|
on the 8 am flight from san francisco to atlanta what type of aircraft is used
|
[[FUNCTION]] get_aircraft {'depart_time.time': '8 am', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'atlanta'}
|
which flight is a one way fare at 329 dollars from denver to pittsburgh
|
[[FUNCTION]] get_flight {'round_trip': 'one way', 'fare_amount': '329 dollars', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
what flights leave baltimore for boston after 6 o'clock on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': "6 o'clock", 'depart_date.day_name': 'friday'}
|
okay i need to get a flight from houston to seattle
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'houston', 'toloc.city_name': 'seattle'}
|
please list flights between denver and boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
find me the flights that are nonstop between boston and dallas that leave between 12 and 2 in the afternoon
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas', 'depart_time.start_time': '12', 'depart_time.end_time': '2', 'depart_time.period_of_day': 'afternoon'}
|
i would like some information on flights leaving boston to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
show me the latest nonstop flight from denver to washington dc
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'flight_stop': 'nonstop', 'fromloc.city_name': 'denver', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
what are the flights from dallas to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
i would like a nonstop flight from new york to las vegas on march second
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'new york', 'toloc.city_name': 'las vegas', 'arrive_date.month_name': 'march', 'arrive_date.day_number': 'second'}
|
no i want to go from denver to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland'}
|
show me all the night fares between philadelphia and san francisco
|
[[FUNCTION]] get_airfare {'depart_time.period_of_day': 'night', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco'}
|
what kinds of ground transportation is available in dallas fort worth
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas fort worth'}
|
can you show me economy class one way fares for flights from oakland to dallas on december sixteenth
|
[[FUNCTION]] get_airfare {'economy': 'economy class', 'round_trip': 'one way', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'dallas', 'depart_date.month_name': 'december', 'depart_date.day_number': 'sixteenth'}
|
what is fare code qw
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'qw'}
|
i 'd like a flight on july ninth from orlando to kansas city in the afternoon
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'july', 'depart_date.day_number': 'ninth', 'fromloc.city_name': 'orlando', 'toloc.city_name': 'kansas city', 'depart_time.period_of_day': 'afternoon'}
|
what are the coach fares from charlotte to la wednesday night
|
[[FUNCTION]] get_airfare {'class_type': 'coach', 'fromloc.city_name': 'charlotte', 'toloc.city_name': 'la', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'night'}
|
is there ground transportation available in denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
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'}
|
i would like to know the flights available from boston to denver arriving in denver by 8 o'clock wednesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'arrive_time.time_relative': 'by', 'arrive_time.time': "8 o'clock", 'arrive_date.day_name': 'wednesday', 'arrive_time.period_of_day': 'morning'}
|
i would like to fly the cheapest rate available from pittsburgh to atlanta on wednesday morning
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning'}
|
list the flight from philadelphia to san francisco on american airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'airline_name': 'american airlines'}
|
flights from memphis to las vegas on sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'las vegas', 'depart_date.day_name': 'sunday'}
|
what is the first flight from atlanta to boston on thursday september fifth that leaves after 8 am
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_date.day_name': 'thursday', 'depart_date.month_name': 'september', 'depart_date.day_number': 'fifth', 'depart_time.time_relative': 'after', 'depart_time.time': '8 am'}
|
what is the first class fare on united flight 352 from denver to boston
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'airline_name': 'united', 'flight_number': '352', 'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
flight from philadelphia to dallas arriving before 4 pm on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'arrive_time.time_relative': 'before', 'arrive_time.time': '4 pm', 'arrive_date.day_name': 'saturday'}
|
list flights tomorrow from san diego to phoenix
|
[[FUNCTION]] get_flight {'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'san diego', 'toloc.city_name': 'phoenix'}
|
show me all flights from san francisco to washington dc area
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
sure i want to go from philadelphia to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
show me all the united airlines flights leaving dallas
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'dallas'}
|
can you list all the flights between phoenix and las vegas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'las vegas'}
|
list all flights from baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
round trip flights from minneapolis to san diego coach economy fare
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'minneapolis', 'toloc.city_name': 'san diego', 'class_type': 'coach', 'economy': 'economy'}
|
i want to fly from boston to denver and i don 't want any stopovers and i 'd like to fly only during the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_time.period_of_day': 'afternoon'}
|
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'}
|
show me the flights from denver to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
what flights are there on delta from boston to dallas
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas'}
|
what kind of ground transportation can you offer me in seattle
|
[[FUNCTION]] get_ground_service {'city_name': 'seattle'}
|
leaving washington going to san francisco the latest flight
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco', 'flight_mod': 'latest'}
|
show me the flights available from atlanta to baltimore leaving atlanta in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'depart_time.period_of_day': 'morning'}
|
round trip fares new york to san jose
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'san jose'}
|
which flights are serviced by american airlines
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines'}
|
how do i get from pittsburgh airport to downtown pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'pittsburgh airport', 'toloc.city_name': 'pittsburgh'}
|
does midwest express serve charlotte
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'city_name': 'charlotte'}
|
what flights from houston to milwaukee on friday in the evening on american airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'houston', 'toloc.city_name': 'milwaukee', 'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'evening', 'airline_name': 'american airlines'}
|
what is the earliest flight going from san francisco to dallas on monday august nineteenth
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'dallas', 'depart_date.day_name': 'monday', 'depart_date.month_name': 'august', 'depart_date.day_number': 'nineteenth'}
|
what flights from atlanta to st. louis on tuesday arriving around 230 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'st. louis', 'depart_date.day_name': 'tuesday', 'arrive_time.time_relative': 'around', 'arrive_time.time': '230 pm'}
|
i need a flight from kansas city to chicago that leaves wednesday and arrives in chicago around 7 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'chicago', 'depart_date.day_name': 'wednesday', 'arrive_time.time_relative': 'around', 'arrive_time.time': '7 pm'}
|
i would like information on any flights from pittsburgh to san francisco leaving thursday evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'evening'}
|
i need a cheap flight from baltimore to san francisco
|
[[FUNCTION]] get_flight {'flight_mod': 'cheap', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco'}
|
what is the cost of a first class ticket from baltimore to dallas
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
what is the economy thrift fare from boston to washington
|
[[FUNCTION]] get_airfare {'economy': 'economy', 'class_type': 'thrift', 'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
list the nonstop flights early tuesday morning from dallas to atlanta
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'arrive_time.period_mod': 'early', 'arrive_date.day_name': 'tuesday', 'arrive_time.period_of_day': 'morning', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'atlanta'}
|
what is the earliest flight you have that leaves philadelphia to dallas
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'}
|
are there any flights from dallas fort worth to boston leaving before 10 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas fort worth', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'before', 'depart_time.time': '10 am'}
|
show me all the flights to baltimore after 6 o'clock pm
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'depart_time.time_relative': 'after', 'depart_time.time': "6 o'clock pm"}
|
i need a return flight from philadelphia to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston'}
|
united airlines flights stopping in denver before noon
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'stoploc.city_name': 'denver', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon'}
|
show me the car rentals in baltimore
|
[[FUNCTION]] get_ground_service {'transport_type': 'car rentals', 'city_name': 'baltimore'}
|
what flights go from newark to boston after 1024 in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': '1024', 'depart_time.period_of_day': 'morning'}
|
shortest evening flight from tampa to cincinnati
|
[[FUNCTION]] get_flight {'flight_mod': 'shortest', 'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'tampa', 'toloc.city_name': 'cincinnati'}
|
how much time does it take to go between the airport and downtown by ground transportation in dallas
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas'}
|
flights from boston to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
i 'd like to fly continental airlines between boston and philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
i would like to book a flight on continental airlines from chicago to seattle on june first
|
[[FUNCTION]] get_flight {'airline_name': 'continental airlines', 'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'depart_date.month_name': 'june', 'depart_date.day_number': 'first'}
|
all flights from pittsburgh to dallas round trip after 12 pm less than 100
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'dallas', 'round_trip': 'round trip', 'depart_time.time_relative': 'after', 'depart_time.time': '12 pm', 'cost_relative': 'less', 'fare_amount': '100'}
|
show me flights on sunday going from san francisco to boston nonstop first class leaving after 12 noon
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'flight_stop': 'nonstop', 'class_type': 'first class', 'depart_time.time_relative': 'after', 'depart_time.time': '12 noon'}
|
from las vegas to phoenix
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'las vegas', 'toloc.city_name': 'phoenix'}
|
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'}
|
show me the flight with the smallest seating capacity which leaves pittsburgh and arrives in baltimore on june fourteenth
|
[[FUNCTION]] get_flight {'mod': 'smallest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'june', 'arrive_date.day_number': 'fourteenth'}
|
show all flights from boston to denver on july thirty first
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_date.month_name': 'july', 'depart_date.day_number': 'thirty first'}
|
are there any flights before 12 noon on june fifteenth from long beach to columbus
|
[[FUNCTION]] get_flight {'depart_time.time_relative': 'before', 'depart_time.time': '12 noon', 'depart_date.month_name': 'june', 'depart_date.day_number': 'fifteenth', 'fromloc.city_name': 'long beach', 'toloc.city_name': 'columbus'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.