input stringlengths 6 259 | output stringlengths 26 381 |
|---|---|
list all flights from seattle on continental which depart after 430 pm | [[FUNCTION]] get_flight {'fromloc.city_name': 'seattle', 'airline_name': 'continental', 'depart_time.time_relative': 'after', 'depart_time.time': '430 pm'} |
i 'd like the earliest flight information from boston to san francisco with a meal | [[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'meal': 'meal'} |
what is the cheapest flight from pittsburgh to atlanta leaving on october fifth | [[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.month_name': 'october', 'depart_date.day_number': 'fifth'} |
show me the flights from atlanta to washington dc on wednesday night and thursday morning | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'} |
flights from milwaukee to orlando one way | [[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando', 'round_trip': 'one way'} |
tell me about flights on american airlines from dallas to san francisco on june twenty ninth | [[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco', 'depart_date.month_name': 'june', 'depart_date.day_number': 'twenty ninth'} |
please show me the flights available from san francisco to pittsburgh on tuesday | [[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'tuesday'} |
flight information from san francisco to pittsburgh | [[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'} |
show me all flights arriving at dallas | [[FUNCTION]] get_flight {'toloc.city_name': 'dallas'} |
show me flights from denver to washington dc on a wednesday | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'wednesday'} |
what airlines fly between boston and atlanta | [[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'} |
i would like to fly from boston to baltimore what time are the flights in the afternoon | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'flight_time': 'time', 'depart_time.period_of_day': 'afternoon'} |
please explain fare code f | [[FUNCTION]] get_abbreviation {'fare_basis_code': 'f'} |
i would like to know flights on june fifteenth from long beach to columbus after 12 noon please | [[FUNCTION]] get_flight {'depart_date.month_name': 'june', 'depart_date.day_number': 'fifteenth', 'fromloc.city_name': 'long beach', 'toloc.city_name': 'columbus', 'depart_time.time_relative': 'after', 'depart_time.time': '12 noon'} |
list all flights that leave from baltimore or denver or pittsburgh and arrive in philadelphia | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'or': 'or', 'toloc.city_name': 'philadelphia'} |
what are the classes of service on lufthansa | [[FUNCTION]] get_flight {'airline_name': 'lufthansa'} |
show me the flights from baltimore to boston | [[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston'} |
okay what i 'd like to do on this one is go from washington to atlanta i want a nonstop and i 'd like to leave around 5 pm | [[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'atlanta', 'flight_stop': 'nonstop', 'depart_time.time_relative': 'around', 'depart_time.time': '5 pm'} |
give me flights from atlanta to baltimore | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'} |
show me the flights from montreal to philly | [[FUNCTION]] get_flight {'fromloc.city_name': 'montreal', 'toloc.city_name': 'philly'} |
please list all flights from denver to philadelphia two saturdays from now | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.date_relative': 'two', 'depart_date.day_name': 'saturdays'} |
does flight dl 323 dl 229 from boston to denver stop in philadelphia | [[FUNCTION]] get_flight {'airline_code': 'dl', 'flight_number': '229', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'stoploc.city_name': 'philadelphia'} |
show me the flights from cincinnati | [[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati'} |
yes what flights will be used on july seventh in the morning from atlanta to boston | [[FUNCTION]] get_flight {'depart_date.month_name': 'july', 'depart_date.day_number': 'seventh', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'} |
please give me the flights from denver to pittsburgh which leave in the morning on july second | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'depart_time.period_of_day': 'morning', 'depart_date.month_name': 'july', 'depart_date.day_number': 'second'} |
show me all flights arriving to denver from baltimore oakland and boston | [[FUNCTION]] get_flight {'toloc.city_name': 'denver', 'fromloc.city_name': 'boston'} |
do any of the san francisco to boston flights leave on friday | [[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_date.day_name': 'friday'} |
now i need flights leaving denver in the afternoon on wednesday and arriving in san francisco | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'depart_time.period_of_day': 'afternoon', 'depart_date.day_name': 'wednesday', 'toloc.city_name': 'san francisco'} |
i would like to go from atlanta to denver on tuesday | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.day_name': 'tuesday'} |
does american airlines fly from philadelphia to dallas | [[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'} |
what flights depart from charlotte to newark that leave in the afternoon or leave in the evening | [[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'newark', 'depart_time.period_of_day': 'evening', 'or': 'or'} |
are there any flights available from baltimore to dallas monday afternoon | [[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'afternoon'} |
what kind of ground transportation is available in denver | [[FUNCTION]] get_ground_service {'city_name': 'denver'} |
fares and flights from baltimore to philadelphia | [[FUNCTION]] get_airfare {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'} |
flights from westchester county to san francisco daily | [[FUNCTION]] get_flight {'fromloc.city_name': 'westchester county', 'toloc.city_name': 'san francisco', 'flight_days': 'daily'} |
i need to find a flight from philadelphia to san francisco that has a stopover in dallas | [[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'} |
find me a flight from boston to san francisco with a layover in denver | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'} |
show me the flights from pittsburgh to dallas | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'dallas'} |
show me flights from atlanta to washington dc on wednesday evening | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'evening'} |
show flights from denver to san francisco | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'} |
what are the cities served by delta airlines | [[FUNCTION]] get_city {'airline_name': 'delta airlines'} |
what flights are there from atlanta to washington early on thursday mornings | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'depart_time.period_mod': 'early', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'mornings'} |
list all flights from pittsburgh to philadelphia | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'} |
i 'd like a flight from st. petersburg to miami on that next thursday | [[FUNCTION]] get_flight {'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'miami', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'thursday'} |
show me all flights from new york to miami leaving on a tuesday | [[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'depart_date.day_name': 'tuesday'} |
i want to fly from atlanta to philadelphia nonstop | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia', 'flight_stop': 'nonstop'} |
what is the smallest aircraft that flies from pittsburgh to baltimore arriving may seventh | [[FUNCTION]] get_aircraft {'mod': 'smallest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'may', 'arrive_date.day_number': 'seventh'} |
what flights from memphis to miami on wednesday | [[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'miami', 'depart_date.day_name': 'wednesday'} |
flights on american from phoenix to chicago on wednesday | [[FUNCTION]] get_flight {'airline_name': 'american', 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'chicago', 'depart_date.day_name': 'wednesday'} |
pittsburgh to atlanta please with a stopover in fort worth | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'stoploc.city_name': 'fort worth'} |
show me the round trip flights between phoenix and salt lake city | [[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'salt lake city'} |
does any airline have an early afternoon flight from boston to denver | [[FUNCTION]] get_airline {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'} |
list the fares of the delta airlines flights from boston to philadelphia | [[FUNCTION]] get_airfare {'airline_name': 'delta airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'} |
please give me a flight leaving boston going to washington arriving in washington at 5 o'clock in the afternoon | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'arrive_time.time': "5 o'clock", 'arrive_time.period_of_day': 'afternoon'} |
need an inexpensive flight from baltimore to san francisco | [[FUNCTION]] get_flight {'flight_mod': 'inexpensive', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco'} |
i want a round trip fare from new york to san jose | [[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'san jose'} |
what times does the late afternoon flight leave from washington for denver | [[FUNCTION]] get_flight_time {'flight_time': 'times', 'depart_time.period_of_day': 'late afternoon', 'fromloc.city_name': 'washington', 'toloc.city_name': 'denver'} |
define airline ua | [[FUNCTION]] get_abbreviation {'airline_code': 'ua'} |
flight on monday from philadelphia to oakland california early morning | [[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'oakland', 'toloc.state_name': 'california', 'depart_time.period_of_day': 'morning'} |
show me the 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 me flights from denver to philadelphia | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'} |
i would like to fly on twa from baltimore to san francisco | [[FUNCTION]] get_flight {'airline_code': 'twa', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco'} |
all flights from charlotte to anywhere on us air | [[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'airline_name': 'us air'} |
show me all flights from boston to detroit | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'detroit'} |
i want to fly from cleveland to san diego tomorrow and stop in indianapolis | [[FUNCTION]] get_flight {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'san diego', 'depart_date.today_relative': 'tomorrow', 'stoploc.city_name': 'indianapolis'} |
all flights from boston to washington dc on the tenth of november | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_number': 'tenth', 'depart_date.month_name': 'november'} |
i actually want to go from ontario to westchester via chicago | [[FUNCTION]] get_flight {'fromloc.city_name': 'ontario', 'toloc.city_name': 'westchester', 'stoploc.city_name': 'chicago'} |
i need to fly from kansas city to chicago leaving next wednesday and returning the following day | [[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'chicago', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'wednesday', 'return_date.date_relative': 'the following day'} |
show me all flights from philadelphia to atlanta that leave after 5 pm on wednesday | [[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'after', 'depart_time.time': '5 pm', 'depart_date.day_name': 'wednesday'} |
show me ground transportation in denver during weekdays | [[FUNCTION]] get_ground_service {'city_name': 'denver'} |
i 'd like to get a flight leaving san francisco and arriving at philadelphia pennsylvania | [[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'philadelphia', 'toloc.state_name': 'pennsylvania'} |
which airlines have flights from denver to pittsburgh | [[FUNCTION]] get_airline {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'} |
what are the flights from memphis to tacoma | [[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'tacoma'} |
does us air fly from dc to dallas | [[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.state_code': 'dc', 'toloc.city_name': 'dallas'} |
what are the flights from atlanta to baltimore which arrive in baltimore at 7 o'clock pm | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'arrive_time.time': "7 o'clock pm"} |
i need a flight from new york to montreal thursday may six arriving before noon | [[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'montreal', 'depart_date.day_name': 'thursday', 'depart_date.month_name': 'may', 'depart_date.day_number': 'six', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'} |
what does fare code qx mean | [[FUNCTION]] get_abbreviation {'fare_basis_code': 'qx'} |
is there a flight between san francisco and boston with a stopover at dallas fort worth | [[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'stoploc.city_name': 'dallas fort worth'} |
flights from atlanta to washington dc | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'} |
what kind of plane is used on the earliest flight from boston to san francisco afternoon | [[FUNCTION]] get_aircraft {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'depart_time.period_of_day': 'afternoon'} |
flights from indianapolis to seattle | [[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'seattle'} |
dallas to baltimore monday | [[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.day_name': 'monday'} |
is fare code b the same as business class | [[FUNCTION]] get_abbreviation {'fare_basis_code': 'b', 'mod': 'same', 'class_type': 'business class'} |
does midwest express serve nashville | [[FUNCTION]] get_flight {'airline_name': 'midwest', 'city_name': 'nashville'} |
flights from indianapolis nashville memphis to seattle | [[FUNCTION]] get_flight {'fromloc.city_name': 'memphis'} |
i 'd like a flight tomorrow late from nashville to houston with dinner please | [[FUNCTION]] get_flight {'depart_date.today_relative': 'tomorrow', 'depart_time.period_mod': 'late', 'fromloc.city_name': 'nashville', 'toloc.city_name': 'houston', 'meal_description': 'dinner'} |
give me the one way flights from pittsburgh to boston | [[FUNCTION]] get_flight {'round_trip': 'one way', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'boston'} |
i want information on flights from atlanta to washington dc i want to leave wednesday after 4 pm or thursday before 9 am | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'thursday', 'depart_time.time_relative': 'before', 'depart_time.time': '9 am', 'or': 'or'} |
i want the cheapest flight from pittsburgh to atlanta | [[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'} |
show me the flights from toronto to salt lake city which leave toronto after 6 pm | [[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'salt lake city', 'depart_time.time_relative': 'after', 'depart_time.time': '6 pm'} |
what is the cheapest ticket from baltimore to san francisco on friday august thirtieth | [[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'friday', 'depart_date.month_name': 'august', 'depart_date.day_number': 'thirtieth'} |
show me all the flights from cincinnati to toronto | [[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'toronto'} |
what time are flights from denver 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'} |
how about flights from dallas to atlanta on wednesday morning | [[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning'} |
how long is a trip from philadelphia airport to downtown philadelphia | [[FUNCTION]] get_distance {'fromloc.airport_name': 'philadelphia airport', 'toloc.city_name': 'philadelphia'} |
how many seats in a 734 | [[FUNCTION]] get_capacity {'aircraft_code': '734'} |
is there a flight on eastern airlines from boston to denver | [[FUNCTION]] get_flight {'airline_name': 'eastern airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'} |
from las vegas to new york a nonstop twa and fare | [[FUNCTION]] get_flight {'fromloc.city_name': 'las vegas', 'toloc.city_name': 'new york', 'flight_stop': 'nonstop', 'airline_code': 'twa'} |
show me all the flights from philadelphia to cincinnati | [[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'cincinnati'} |
all flights from washington to san francisco leaving after 2 | [[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'after', 'depart_time.time': '2'} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.