input stringlengths 6 259 | output stringlengths 26 381 |
|---|---|
round trip houston to las vegas nonstop | [[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'houston', 'toloc.city_name': 'las vegas', 'flight_stop': 'nonstop'} |
show flights from denver into san francisco | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'} |
what are the flights from boston to san francisco | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'} |
sunday 's flights between tampa and charlotte | [[FUNCTION]] get_flight {'depart_date.day_name': "sunday 's", 'fromloc.city_name': 'tampa', 'toloc.city_name': 'charlotte'} |
show me flights from baltimore to dallas | [[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'} |
what airlines fly from burbank to denver | [[FUNCTION]] get_airline {'fromloc.city_name': 'burbank', 'toloc.city_name': 'denver'} |
list all flights from chicago to seattle on continental which depart on saturday and serve meals | [[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'airline_name': 'continental', 'depart_date.day_name': 'saturday', 'meal': 'meals'} |
list all flights leaving denver arriving in seattle on saturday that depart after 1230 pm | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'seattle', 'arrive_date.day_name': 'saturday', 'depart_time.time_relative': 'after', 'depart_time.time': '1230 pm'} |
how do you get from the airport to downtown dallas please | [[FUNCTION]] get_flight {'toloc.city_name': 'dallas'} |
please list the tuesday flights from atlanta to st. louis | [[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'st. louis'} |
i would like an early flight from la to charlotte monday morning | [[FUNCTION]] get_flight {'flight_mod': 'early', 'fromloc.city_name': 'la', 'toloc.city_name': 'charlotte', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'morning'} |
saturday flights from las vegas to montreal | [[FUNCTION]] get_flight {'depart_date.day_name': 'saturday', 'fromloc.city_name': 'las vegas', 'toloc.city_name': 'montreal'} |
show me boston ground transportation | [[FUNCTION]] get_ground_service {'city_name': 'boston'} |
list all the flights from charlotte to atlanta that return around 7 pm | [[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'around', 'depart_time.time': '7 pm'} |
show me first class round trip flights from new york to miami i want the cheapest first class fare please | [[FUNCTION]] get_flight {'class_type': 'first class', 'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'cost_relative': 'cheapest'} |
please list the flights from pittsburgh to baltimore arriving may seventh | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'may', 'arrive_date.day_number': 'seventh'} |
do the airlines still offer first class | [[FUNCTION]] get_airline {'class_type': 'first class'} |
i need to know if there are any direct flights from st. petersburg florida to tacoma washington leaving preferably tomorrow morning | [[FUNCTION]] get_flight {'connect': 'direct', 'fromloc.city_name': 'st. petersburg', 'fromloc.state_name': 'florida', 'toloc.city_name': 'tacoma', 'toloc.state_name': 'washington', 'depart_date.today_relative': 'tomorrow', 'depart_time.period_of_day': 'morning'} |
how much is a us air boston to pittsburgh daily nonstop flight | [[FUNCTION]] get_airfare {'airline_name': 'us air', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'flight_days': 'daily', 'flight_stop': 'nonstop'} |
i 'd like to book a flight from columbus to nashville please | [[FUNCTION]] get_flight {'fromloc.city_name': 'columbus', 'toloc.city_name': 'nashville'} |
what flights from detroit to st. petersburg | [[FUNCTION]] get_flight {'fromloc.city_name': 'detroit', 'toloc.city_name': 'st. petersburg'} |
what airlines fly from dallas to baltimore | [[FUNCTION]] get_airline {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'} |
what is the cost for these flights from baltimore to philadelphia | [[FUNCTION]] get_airfare {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'} |
show me the flights on delta that go through atlanta | [[FUNCTION]] get_flight {'airline_name': 'delta', 'stoploc.city_name': 'atlanta'} |
list the flights on sunday afternoon from oakland to dallas | [[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'dallas'} |
show me the earliest nonstop flight from dallas to houston | [[FUNCTION]] get_flight {'flight_mod': 'earliest', 'flight_stop': 'nonstop', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston'} |
i want to travel from pittsburgh to oakland around midnight could you give me the flights | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'oakland', 'depart_time.time_relative': 'around', 'depart_time.period_of_day': 'midnight'} |
show me the flights from boston to san francisco | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'} |
what are the cities that american airlines serves | [[FUNCTION]] get_city {'airline_name': 'american airlines'} |
is there a late afternoon flight leaving washington for denver | [[FUNCTION]] get_flight {'depart_time.period_of_day': 'late afternoon', 'fromloc.city_name': 'washington', 'toloc.city_name': 'denver'} |
i need one first class ticket from dallas fort worth to san francisco | [[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'dallas fort worth', 'toloc.city_name': 'san francisco'} |
show me all the direct flights from atlanta to baltimore | [[FUNCTION]] get_flight {'connect': 'direct', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'} |
show me the monday flights from san francisco to pittsburgh | [[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'} |
please show me the return flights from miami to new york | [[FUNCTION]] get_flight {'round_trip': 'return', 'fromloc.city_name': 'miami', 'toloc.city_name': 'new york'} |
show me the cheapest flights from san francisco to philadelphia | [[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'philadelphia'} |
show me the price of all flights from atlanta to washington dc | [[FUNCTION]] get_airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'} |
give me flights from pittsburgh to baltimore | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'} |
find travel arrangements for a round trip flight from baltimore to pittsburgh | [[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'pittsburgh'} |
all right would you let me know type of aircraft united airlines is using on the flights from denver to san francisco i would like to know the type of aircraft that they use on these flights before 10 in the morning | [[FUNCTION]] get_aircraft {'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'before', 'depart_time.time': '10', 'depart_time.period_of_day': 'morning'} |
show me the flights from philadelphia to dallas | [[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas'} |
what is the earliest flight i can get from baltimore to boston | [[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'boston'} |
flights to baltimore | [[FUNCTION]] get_flight {'toloc.city_name': 'baltimore'} |
hi i need to go from cincinnati to san jose california after 6 pm on saturday | [[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'san jose', 'toloc.state_name': 'california', 'depart_time.time_relative': 'after', 'depart_time.time': '6 pm', 'depart_date.day_name': 'saturday'} |
what is the flight number of the earliest flight between boston and washington dc | [[FUNCTION]] get_flight_no {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'} |
are there any flights on us air from pittsburgh to atlanta on wednesday | [[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'wednesday'} |
do you have ground transportation between airport and downtown in boston | [[FUNCTION]] get_ground_service {'toloc.city_name': 'boston'} |
list all flights from baltimore to philadelphia | [[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'} |
all northwest flights with stopovers in denver | [[FUNCTION]] get_flight {'airline_name': 'northwest', 'stoploc.city_name': 'denver'} |
i 'd like to get a flight from washington to oakland with a stopover in dallas fort worth for september fifteenth | [[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'oakland', 'stoploc.city_name': 'dallas fort worth', 'depart_date.month_name': 'september', 'depart_date.day_number': 'fifteenth'} |
are there wednesday morning flights between pittsburgh and boston | [[FUNCTION]] get_flight {'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'boston'} |
what is the round trip cost of a first class ticket from boston to san francisco | [[FUNCTION]] get_airfare {'round_trip': 'round trip', 'class_type': 'first class', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'} |
what 's the lowest round trip fare from dallas to any city | [[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'round_trip': 'round trip', 'fromloc.city_name': 'dallas'} |
give me the flights from boston to san francisco leaving early today | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'depart_time.period_mod': 'early', 'depart_date.today_relative': 'today'} |
ground transportation in oakland | [[FUNCTION]] get_ground_service {'city_name': 'oakland'} |
please list pm flights from boston pittsburgh | [[FUNCTION]] get_flight {'depart_time.period_of_day': 'pm', 'fromloc.city_name': 'pittsburgh'} |
show me all flights from philadelphia to san francisco with one stop in dallas | [[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'flight_stop': 'one stop', 'stoploc.city_name': 'dallas'} |
what evening flights do you have available from baltimore to philadelphia | [[FUNCTION]] get_flight {'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'} |
show me flights from los angeles to pittsburgh for tuesday | [[FUNCTION]] get_flight {'fromloc.city_name': 'los angeles', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'tuesday'} |
what is the cheapest one way fare from any city to another | [[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way'} |
i 'd like to find a flight from charlotte to las vegas and make a stop in st. louis | [[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'las vegas', 'stoploc.city_name': 'st. louis'} |
i live in denver and i 'd like to make a trip to pittsburgh | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'} |
list all flights from baltimore to atlanta after 12 noon thursday | [[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'after', 'depart_time.time': '12 noon', 'depart_date.day_name': 'thursday'} |
show me the cheapest one way flight from san francisco to boston leaving san francisco after 9 pm | [[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': '9 pm'} |
give me all flights from boston to philadelphia next week arriving after lunch | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia', 'depart_date.date_relative': 'next', 'arrive_time.time_relative': 'after', 'meal_description': 'lunch'} |
what are all flights from denver to philadelphia on saturday | [[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'saturday'} |
flight information on january twenty third from denver to san francisco | [[FUNCTION]] get_flight {'depart_date.month_name': 'january', 'depart_date.day_number': 'twenty third', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco'} |
i 'd like to find the cheapest one way fare from baltimore to denver | [[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'denver'} |
i need a flight on sunday from long beach to columbus | [[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'fromloc.city_name': 'long beach', 'toloc.city_name': 'columbus'} |
what are the fares for flights from charlotte to newark on tuesday and wednesday | [[FUNCTION]] get_airfare {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'newark', 'depart_date.day_name': 'wednesday'} |
show me the itinerary of the connecting flight from boston to denver that departs boston at 10 am | [[FUNCTION]] get_flight {'connect': 'connecting', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_time.time': '10 am'} |
find me a flight from atlanta to baltimore | [[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'} |
what are the flights and fares from atlanta to philadelphia | [[FUNCTION]] get_flight+airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'} |
i would like an early morning nonstop flight from new york to las vegas on february twenty eighth | [[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'flight_stop': 'nonstop', 'fromloc.city_name': 'new york', 'toloc.city_name': 'las vegas', 'arrive_date.month_name': 'february', 'arrive_date.day_number': 'twenty eighth'} |
describe fare code qx | [[FUNCTION]] get_abbreviation {'fare_basis_code': 'qx'} |
what is the earliest flight on friday from washington to san francisco | [[FUNCTION]] get_flight {'flight_mod': 'earliest', 'depart_date.day_name': 'friday', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco'} |
american flights from chicago to los angeles morning | [[FUNCTION]] get_flight {'airline_name': 'american', 'fromloc.city_name': 'chicago', 'toloc.city_name': 'los angeles', 'depart_time.period_of_day': 'morning'} |
show all flights from pittsburgh to oakland | [[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'oakland'} |
list all flights from chicago to seattle on continental airlines which depart on saturday before noon and include a meal | [[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'airline_name': 'continental airlines', 'depart_date.day_name': 'saturday', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon', 'meal': 'meal'} |
i would like the first flight into houston from dallas on march first and the last flight from houston to dallas on march first | [[FUNCTION]] get_flight {'flight_mod': 'last', 'toloc.city_name': 'dallas', 'fromloc.city_name': 'houston', 'arrive_date.month_name': 'march', 'arrive_date.day_number': 'first', 'depart_date.month_name': 'march', 'depart_date.day_number': 'first'} |
please give me ground transportation information for denver | [[FUNCTION]] get_ground_service {'city_name': 'denver'} |
show me the united flights from bwi to denver | [[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.airport_code': 'bwi', 'toloc.city_name': 'denver'} |
what are the flights from chicago to indianapolis | [[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'indianapolis'} |
show me the fare for us flight 3357 from philadelphia to baltimore | [[FUNCTION]] get_airfare {'airline_code': 'us', 'flight_number': '3357', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'baltimore'} |
first class price san francisco pittsburgh round trip | [[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'pittsburgh', 'round_trip': 'round trip'} |
what flights are there from minneapolis to chicago | [[FUNCTION]] get_flight {'fromloc.city_name': 'minneapolis', 'toloc.city_name': 'chicago'} |
all right now i need a flight from seattle to san diego | [[FUNCTION]] get_flight {'fromloc.city_name': 'seattle', 'toloc.city_name': 'san diego'} |
what is your last trip on august twenty seventh from washington to boston | [[FUNCTION]] get_flight {'flight_mod': 'last', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twenty seventh', 'fromloc.city_name': 'washington', 'toloc.city_name': 'boston'} |
i want to depart washington april twentieth to atlanta least expensive fare | [[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'depart_date.month_name': 'april', 'depart_date.day_number': 'twentieth', 'toloc.city_name': 'atlanta', 'cost_relative': 'least expensive'} |
show me the first class fares from baltimore to dallas | [[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'} |
i 'd like to fly from cleveland to indianapolis tomorrow morning as early as possible what 's available | [[FUNCTION]] get_flight {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'indianapolis', 'depart_date.today_relative': 'tomorrow', 'depart_time.period_of_day': 'morning', 'flight_mod': 'early'} |
i need to make a trip starting in boston going to dallas denver oakland and back to boston | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'boston'} |
what flights are available from boston to denver on wednesday in early morning | [[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning'} |
i want to make a round trip flight from washington to san francisco and return | [[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco'} |
on united airlines flying from denver to san francisco before 10 am what type of aircraft is used | [[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'before', 'depart_time.time': '10 am'} |
lowest fare from san francisco to los angeles | [[FUNCTION]] get_airfare {'cost_relative': 'lowest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'los angeles'} |
what flights go from philadelphia to dallas with a stopover in atlanta | [[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'atlanta'} |
show me the flights from baltimore to oakland | [[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'oakland'} |
what does code qw mean | [[FUNCTION]] get_abbreviation {'fare_basis_code': 'qw'} |
are there any flights from new york to montreal canada leaving on thursday | [[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'montreal', 'toloc.country_name': 'canada', 'depart_date.day_name': 'thursday'} |
show me all flights from oakland to philadelphia on saturday which serve a meal | [[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'saturday', 'meal': 'meal'} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.