input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
show me flights between new york city and las vegas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york city', 'toloc.city_name': 'las vegas'}
|
what 's the cheapest flight from baltimore to dallas on american
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas', 'airline_name': 'american'}
|
does midwest express serve baltimore
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'city_name': 'baltimore'}
|
i 'd like to know the ground travel available in fort worth
|
[[FUNCTION]] get_ground_service {'city_name': 'fort worth'}
|
i would like to fly from boston to baltimore please tell me what are the times of the flights
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'flight_time': 'times'}
|
show me all the cities that midwest express serves
|
[[FUNCTION]] get_city {'airline_name': 'midwest'}
|
could you tell me the flights leaving pittsburgh around midnight for oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'around', 'depart_time.period_of_day': 'midnight', 'toloc.city_name': 'oakland'}
|
what flights from tampa to cincinnati
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'tampa', 'toloc.city_name': 'cincinnati'}
|
show me flights going from san francisco to pittsburgh first class on monday of leaving after 12 noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'class_type': 'first class', 'depart_date.day_name': 'monday', 'depart_time.time_relative': 'after', 'depart_time.time': '12 noon'}
|
what does mco mean
|
[[FUNCTION]] get_abbreviation {'airport_code': 'mco'}
|
information on flights from boston to washington
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
show me the ground transportation in the salt lake city airport
|
[[FUNCTION]] get_ground_service {'airport_name': 'salt lake city airport'}
|
all right do you have a flight from atlanta to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
please list all available flights from oakland california to philadelphia on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'fromloc.state_name': 'california', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'wednesday'}
|
please show me all airlines with sunday flights from philadelphia to denver
|
[[FUNCTION]] get_airline {'depart_date.day_name': 'sunday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver'}
|
please show me all the flights from denver to oakland that are nonstop
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland', 'flight_stop': 'nonstop'}
|
i would like to know the types of ground transportation from the airport to las vegas
|
[[FUNCTION]] get_ground_service {'city_name': 'las vegas'}
|
i would like a to know the type of aircraft leaving from atlanta bound to boston on friday this week
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_date.day_name': 'friday'}
|
what is the cheapest one way fare from pittsburgh to atlanta traveling on tuesday august twentieth
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'tuesday', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twentieth'}
|
i 'd like to see all flights from pittsburgh to philadelphia again
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
i would like the first flight from dallas into houston on march first and the last flight from houston back to dallas on march first
|
[[FUNCTION]] get_flight {'flight_mod': 'last', 'fromloc.city_name': 'houston', 'toloc.city_name': 'dallas', 'depart_date.month_name': 'march', 'depart_date.day_number': 'first'}
|
please show me flights available from pittsburgh to atlanta on a weekday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'flight_mod': 'weekday'}
|
show me the earliest flight from san jose to pittsburgh that serves a snack
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'san jose', 'toloc.city_name': 'pittsburgh', 'meal_description': 'snack'}
|
what is the cheapest first class fare from cleveland to miami on us air on february twenty fourth
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'class_type': 'first class', 'fromloc.city_name': 'cleveland', 'toloc.city_name': 'miami', 'airline_name': 'us air', 'depart_date.month_name': 'february', 'depart_date.day_number': 'twenty fourth'}
|
what flights go from boston to pittsburgh after 1205 in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'after', 'depart_time.time': '1205', 'depart_time.period_of_day': 'afternoon'}
|
how many airlines fly from new york to los angeles by way of milwaukee
|
[[FUNCTION]] get_quantity {'fromloc.city_name': 'new york', 'toloc.city_name': 'los angeles', 'stoploc.city_name': 'milwaukee'}
|
what is fare code fn
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'fn'}
|
from washington to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'toloc.city_name': 'atlanta'}
|
what is the earliest morning flight leaving boston for washington
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
what flights are there from newark to seattle on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'seattle', 'depart_date.day_name': 'saturday'}
|
what flights are there between atlanta and denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver'}
|
what are the flights from pittsburgh to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'oakland'}
|
i would like to travel from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
all flights from pittsburgh to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
looking for a flight from toronto to san diego
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'san diego'}
|
do you have a flight from atlanta to baltimore nonstop on a boeing 757 arriving baltimore around 7 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'flight_stop': 'nonstop', 'aircraft_code': '757', 'arrive_time.time_relative': 'around', 'arrive_time.time': '7 pm'}
|
which airlines fly from boston to washington dc via other cities
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
what is the cheapest fare between atlanta and san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco'}
|
please show me all round trip flights from new york to miami
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
ground transportation from airport in boston to downtown boston
|
[[FUNCTION]] get_ground_service {'fromloc.city_name': 'boston', 'toloc.city_name': 'boston'}
|
find me the earliest boston departure and the latest atlanta return trip so that i can be on the ground the maximum amount of time in atlanta and return to boston on the same day
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'return_date.date_relative': 'day'}
|
what are the fares for flights serving a meal from boston to pittsburgh before noon on thursday
|
[[FUNCTION]] get_airfare {'meal': 'meal', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'before', 'depart_time.time': 'noon', 'depart_date.day_name': 'thursday'}
|
list all the takeoffs and landings at general mitchell international
|
[[FUNCTION]] get_flight {'airport_name': 'general mitchell international'}
|
i would like to fly from denver to pittsburgh on the cheapest flight possible
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'cost_relative': 'cheapest'}
|
show me the flights arriving on baltimore on june fourteenth
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'june', 'arrive_date.day_number': 'fourteenth'}
|
list all flights going from boston to atlanta after 6 o'clock pm on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'after', 'depart_time.time': "6 o'clock pm", 'depart_date.day_name': 'wednesday'}
|
show me all twa flights please
|
[[FUNCTION]] get_flight {'airline_code': 'twa'}
|
show flights from memphis to las vegas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'las vegas'}
|
what does code yn mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'yn'}
|
what flights are there on continental from seattle to chicago
|
[[FUNCTION]] get_flight {'airline_name': 'continental', 'fromloc.city_name': 'seattle', 'toloc.city_name': 'chicago'}
|
what is the cheapest one way flight from atlanta to boston
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
show me the flights from boston to san francisco that arrive in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'arrive_time.period_of_day': 'afternoon'}
|
does midwest express serve montreal
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'city_name': 'montreal'}
|
what is the cheapest fare between denver and boston
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
i need to go to pittsburgh and denver
|
[[FUNCTION]] get_flight {'toloc.city_name': 'denver'}
|
now i want to see return flights from miami to new york
|
[[FUNCTION]] get_flight {'round_trip': 'return', 'fromloc.city_name': 'miami', 'toloc.city_name': 'new york'}
|
us air flights departing from charlotte around 1 pm
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'charlotte', 'depart_time.time_relative': 'around', 'depart_time.time': '1 pm'}
|
what 's the earliest flight i can get between boston and dallas
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas'}
|
what is the thrift economy flight fare from washington to san francisco
|
[[FUNCTION]] get_airfare {'class_type': 'thrift', 'economy': 'economy', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco'}
|
i would like information on ground transportation in atlanta from the airport to the city in the morning around 9 am
|
[[FUNCTION]] get_ground_service {'city_name': 'atlanta', 'period_of_day': 'morning', 'time_relative': 'around', 'time': '9 am'}
|
show me all the flights from atlanta to baltimore on any airline on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore', 'depart_date.day_name': 'thursday'}
|
may i have a listing of flight numbers from columbus ohio to minneapolis minnesota on monday
|
[[FUNCTION]] get_flight_no {'fromloc.city_name': 'columbus', 'fromloc.state_name': 'ohio', 'toloc.city_name': 'minneapolis', 'toloc.state_name': 'minnesota', 'depart_date.day_name': 'monday'}
|
i am interested in booking an early morning flight from dallas into houston on february twenty second and returning late in the evening of february twenty second
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston', 'depart_date.month_name': 'february', 'depart_date.day_number': 'twenty second', 'return_time.period_of_day': 'evening', 'return_date.month_name': 'february', 'return_date.day_number': 'twenty second'}
|
show me ground transportation for dallas
|
[[FUNCTION]] get_ground_service {'city_name': 'dallas'}
|
list flights from cincinnati to san jose friday evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'san jose', 'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'evening'}
|
what airlines fly from boston to washington
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington'}
|
show me flights from boston to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me the airlines between boston and toronto
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'toronto'}
|
show me morning flights from atlanta to philadelphia
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'}
|
what are the cheapest flights from denver to pittsburgh that stop in atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'stoploc.city_name': 'atlanta'}
|
how many cities are served by continental with first class flights
|
[[FUNCTION]] get_quantity {'airline_name': 'continental', 'class_type': 'first class'}
|
show me the latest flight from san francisco to denver
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver'}
|
show me all flights from indianapolis to montreal
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'montreal'}
|
what 're the cheapest flights from new york to miami
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami'}
|
show me flights from denver to washington dc wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'wednesday'}
|
what are the flights from washington dc to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'denver'}
|
show me all flights both direct and connecting to either san francisco or oakland from boston that arrive before 2 pm
|
[[FUNCTION]] get_flight {'toloc.city_name': 'oakland', 'or': 'or', 'fromloc.city_name': 'boston', 'arrive_time.time_relative': 'before', 'arrive_time.time': '2 pm'}
|
i 'd like a flight from las vegas to detroit on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'las vegas', 'toloc.city_name': 'detroit', 'depart_date.day_name': 'monday'}
|
baltimore to philadelphia wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'wednesday'}
|
can you list flights from boston to washington with the lowest one way fares that leave on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'cost_relative': 'lowest', 'round_trip': 'one way', 'depart_date.day_name': 'saturday'}
|
what flights go from san francisco to denver on mondays
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver', 'depart_date.day_name': 'mondays'}
|
pittsburgh to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'denver'}
|
leaving denver flying to san francisco before 10 am what type of aircraft is used
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.time_relative': 'before', 'depart_time.time': '10 am'}
|
what flights does delta have from dallas to denver after 5 o'clock
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'after', 'depart_time.time': "5 o'clock"}
|
do you have any direct flights from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'connect': 'direct', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
list daily flights from denver to boston
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
what are the flights from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
which flights arrive in st. louis from st. paul on thursday morning
|
[[FUNCTION]] get_flight {'toloc.city_name': 'st. louis', 'fromloc.city_name': 'st. paul', 'arrive_date.day_name': 'thursday', 'arrive_time.period_of_day': 'morning'}
|
how far from the airport in the dallas fort worth airport is dallas
|
[[FUNCTION]] get_distance {'fromloc.airport_name': 'dallas fort worth airport', 'fromloc.city_name': 'dallas'}
|
what flights are available friday from philadelphia to oakland
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'friday', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'oakland'}
|
show me the flights before 11 am on august second from boston to denver on delta
|
[[FUNCTION]] get_flight {'depart_time.time_relative': 'before', 'depart_time.time': '11 am', 'depart_date.month_name': 'august', 'depart_date.day_number': 'second', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'airline_name': 'delta'}
|
flights from pittsburgh to baltimore between 10 am and 2 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_time.start_time': '10 am', 'depart_time.end_time': '2 pm'}
|
what are the flights from boston to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
what ground transportation is available from the pittsburgh airport to downtown and how much does it cost
|
[[FUNCTION]] get_ground_service+ground_fare {'fromloc.airport_name': 'pittsburgh airport'}
|
what afternoon flights are available from denver to san francisco on wednesdays
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'wednesdays'}
|
list all flights going from boston to atlanta before 7 am on thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'before', 'depart_time.time': '7 am', 'depart_date.day_name': 'thursday'}
|
does dl stand for delta
|
[[FUNCTION]] get_abbreviation {'airline_code': 'dl', 'airline_name': 'delta'}
|
show me the flights from boston to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
okay what flights are there us air from orlando to cleveland leaving in the afternoon
|
[[FUNCTION]] get_flight {'airline_name': 'us air', 'fromloc.city_name': 'orlando', 'toloc.city_name': 'cleveland', 'depart_time.period_of_day': 'afternoon'}
|
on august thirtieth i would like a flight from denver to san francisco in the early am
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'august', 'depart_date.day_number': 'thirtieth', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'am'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.