input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
find a flight from washington dc to san francisco on tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'tuesday'}
|
list flights between boston and san francisco that serve breakfast
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'meal_description': 'breakfast'}
|
pm flights leaving san francisco arriving boston
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'pm', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
i would like to see the flights from baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
what is the latest flight leaving las vegas for ontario
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'las vegas', 'toloc.city_name': 'ontario'}
|
all delta flights to everywhere if you can
|
[[FUNCTION]] get_flight {'airline_name': 'delta'}
|
i would like to see all flights from baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
show me the flights from toronto to cincinnati
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'cincinnati'}
|
okay i need to see economy flights on united between dallas and baltimore
|
[[FUNCTION]] get_flight {'economy': 'economy', 'airline_name': 'united', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
list all afternoon flights leaving baltimore and arriving in atlanta on thursday
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta', 'arrive_date.day_name': 'thursday'}
|
show me flights from boston to baltimore coach on wednesday about 12 noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'class_type': 'coach', 'depart_date.day_name': 'wednesday', 'depart_time.time_relative': 'about', 'depart_time.time': '12 noon'}
|
list all flights from boston to san francisco on united airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'airline_name': 'united airlines'}
|
how many flights arrive at general mitchell international
|
[[FUNCTION]] get_quantity {'toloc.airport_name': 'general mitchell international'}
|
cheapest fare from memphis to seattle
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'memphis', 'toloc.city_name': 'seattle'}
|
show me flights from san francisco to minneapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'minneapolis'}
|
please show me flights from pittsburgh to atlanta on wednesday morning serving breakfast
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning', 'meal_description': 'breakfast'}
|
what kind of airline is flight ua 281 from boston to denver
|
[[FUNCTION]] get_airline {'airline_code': 'ua', 'flight_number': '281', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
give me all the flights from memphis to charlotte
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'memphis', 'toloc.city_name': 'charlotte'}
|
show me the flights from philadelphia to dallas with a stop in atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'atlanta'}
|
show me the flights from denver to philadelphia and the flights from pittsburgh to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
also give me a list of flights between oakland and boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'boston'}
|
show first flight from boston to philadelphia
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'boston', 'toloc.city_name': 'philadelphia'}
|
what is the yn code
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'yn'}
|
what is fare code h
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'h'}
|
i need a plane that arrives in san francisco by 9 o'clock pm on friday and leaves from baltimore
|
[[FUNCTION]] get_aircraft {'toloc.city_name': 'san francisco', 'arrive_time.time_relative': 'by', 'arrive_time.time': "9 o'clock pm", 'arrive_date.day_name': 'friday', 'fromloc.city_name': 'baltimore'}
|
list all round trip flights between indianapolis and orlando on the twenty seventh of december
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'orlando', 'depart_date.day_number': 'twenty seventh', 'depart_date.month_name': 'december'}
|
show flights from denver to oakland arriving between 12 and 1 o'clock
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland', 'arrive_time.start_time': '12', 'arrive_time.end_time': "1 o'clock"}
|
what are the flights from charlotte to atlanta returning on tuesday july thirteenth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'atlanta', 'depart_date.day_name': 'tuesday', 'depart_date.month_name': 'july', 'depart_date.day_number': 'thirteenth'}
|
nonstop flights seattle to boston
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'toloc.city_name': 'boston'}
|
what is the name of the airport in philadelphia
|
[[FUNCTION]] get_airport {'city_name': 'philadelphia'}
|
okay i would like to know the type of aircraft used on a flight from cleveland to dallas please
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'dallas'}
|
show last flight from philadelphia to boston
|
[[FUNCTION]] get_flight {'flight_mod': 'last', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston'}
|
i want a flight from boston to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
how much is the 718 am flight from las vegas to new york twa
|
[[FUNCTION]] get_airfare {'depart_time.time': '718 am', 'fromloc.city_name': 'las vegas', 'toloc.city_name': 'new york', 'airline_code': 'twa'}
|
when are the american flights from phoenix to milwaukee
|
[[FUNCTION]] get_flight {'airline_name': 'american', 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'milwaukee'}
|
what are the cheapest one way flights from denver to atlanta
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta'}
|
how much would car rental cost in atlanta
|
[[FUNCTION]] get_ground_fare {'transport_type': 'car rental', 'city_name': 'atlanta'}
|
i 'm interested in a flight from dallas to washington and i 'm also interested in going to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
list flights from pittsburgh to boston leaving after 3 in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': '3', 'depart_time.period_of_day': 'afternoon'}
|
show me the flights from newark to los angeles
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'los angeles'}
|
list the nonstop flights from miami to new york on a sunday along with the fares that are less than 466 dollars
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'miami', 'toloc.city_name': 'new york', 'arrive_date.day_name': 'sunday', 'cost_relative': 'less', 'fare_amount': '466 dollars'}
|
i need a listing of flights from st. petersburg florida to tacoma washington leaving tomorrow and i would like to have a stopover in milwaukee please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. petersburg', 'fromloc.state_name': 'florida', 'toloc.city_name': 'tacoma', 'toloc.state_name': 'washington', 'depart_date.today_relative': 'tomorrow', 'stoploc.city_name': 'milwaukee'}
|
what flights from los angeles to minneapolis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'los angeles', 'toloc.city_name': 'minneapolis'}
|
show me the cheapest flights round trip from new york to san jose
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'new york', 'toloc.city_name': 'san jose'}
|
show flights from pittsburgh to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'oakland'}
|
show all monday flights from san francisco to pittsburgh
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh'}
|
i 'd like to see the flights from pittsburgh to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
show me airline abbreviations
|
[[FUNCTION]] get_airline {}
|
list the first class flights from baltimore to denver
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'denver'}
|
could you show me all flights from montreal to charlotte
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'montreal', 'toloc.city_name': 'charlotte'}
|
i want to fly from philadelphia to dallas and make a stopover in atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'atlanta'}
|
i would like to fly from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
chicago to milwaukee
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'milwaukee'}
|
show me early friday morning flights from san francisco to boston
|
[[FUNCTION]] get_flight {'depart_time.period_mod': 'early', 'depart_date.day_name': 'friday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
what flights are available from atlanta to washington dc on wednesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'wednesday'}
|
flights from kansas city to cleveland on wednesday arriving before 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'cleveland', 'depart_date.day_name': 'wednesday', 'arrive_time.time_relative': 'before', 'arrive_time.time': '5 pm'}
|
american flights from san francisco please
|
[[FUNCTION]] get_flight {'airline_name': 'american', 'fromloc.city_name': 'san francisco'}
|
show me all flights from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
show me the flights from boston to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
do you have the fare for traveling from oakland airport to oakland downtown
|
[[FUNCTION]] get_airfare {'fromloc.airport_name': 'oakland airport', 'toloc.city_name': 'oakland'}
|
okay give me the flights that leave denver after 7 pm next monday arriving in boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'depart_time.time_relative': 'after', 'depart_time.time': '7 pm', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'monday', 'toloc.city_name': 'boston'}
|
please list the flight times for boston to pittsburgh
|
[[FUNCTION]] get_flight_time {'flight_time': 'flight times', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
what are fare codes qw and qx
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'qx'}
|
what flights leave pittsburgh for denver on monday night
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'denver', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'night'}
|
i need the cheapest direct flight from atlanta to denver leaving on may seventh
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'connect': 'direct', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.month_name': 'may', 'depart_date.day_number': 'seventh'}
|
show me the flights from los angeles to pittsburgh which arrive at pittsburgh on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'los angeles', 'toloc.city_name': 'pittsburgh', 'arrive_date.day_name': 'monday'}
|
list flights from atlanta to boston on wednesday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'afternoon'}
|
what is your earliest morning flight from indianapolis to charlotte
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'charlotte'}
|
i 'd like the flights from san jose to nashville on the morning of friday june third
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san jose', 'toloc.city_name': 'nashville', 'depart_time.period_of_day': 'morning', 'depart_date.day_name': 'friday', 'depart_date.month_name': 'june', 'depart_date.day_number': 'third'}
|
i would like the first flight from toronto to montreal next friday
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'toronto', 'toloc.city_name': 'montreal', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'friday'}
|
i would like a nonstop flight from st. petersburg to charlotte leaving in the afternoon
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'charlotte', 'arrive_time.period_of_day': 'afternoon'}
|
display flights from dallas to atlanta which depart between 2 pm and 6 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'atlanta', 'depart_time.start_time': '2 pm', 'depart_time.end_time': '6 pm'}
|
what is the earliest flight that goes from atlanta to washington on thursday
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'depart_date.day_name': 'thursday'}
|
list flights from pittsburgh to baltimore on thursday morning nonstop
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning', 'flight_stop': 'nonstop'}
|
i 'm interested in a flight from pittsburgh to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
which transcontinental flight on united airlines from boston to dallas makes a stopover in philadelphia
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas', 'stoploc.city_name': 'philadelphia'}
|
how many people fit on a 73s
|
[[FUNCTION]] get_capacity {'aircraft_code': '73s'}
|
flights from cincinnati to los angeles departing after 718 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'los angeles', 'depart_time.time_relative': 'after', 'depart_time.time': '718 am'}
|
show me all flights that go from new york to miami on tuesday and go from miami to new york on sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'miami', 'toloc.city_name': 'new york', 'depart_date.day_name': 'sunday'}
|
round trip fares from denver to philadelphia under 1000 dollars
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'cost_relative': 'under', 'fare_amount': '1000 dollars'}
|
please list the flights from philadelphia to toronto
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'toronto'}
|
give me the flights from pittsburgh to los angeles on thursday evening
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'los angeles', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'evening'}
|
are there any american airlines flights flying into pittsburgh between 12 and 4 in the afternoon
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'toloc.city_name': 'pittsburgh', 'depart_time.start_time': '12', 'depart_time.end_time': '4', 'depart_time.period_of_day': 'afternoon'}
|
show me all flights from dallas to pittsburgh which leave on monday after 8 o'clock am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'monday', 'depart_time.time_relative': 'after', 'depart_time.time': "8 o'clock am"}
|
show me flights from baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
show me all flights between san francisco and philadelphia on september fifteenth with departure time after 12 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'philadelphia', 'depart_date.month_name': 'september', 'depart_date.day_number': 'fifteenth', 'flight_time': 'departure time', 'depart_time.time_relative': 'after', 'depart_time.time': '12 pm'}
|
from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
list all daily flights between boston and oakland and between oakland and boston using delta airlines
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'boston', 'airline_name': 'delta airlines'}
|
i would like to find flights from columbus to minneapolis on monday june fourteenth early in the morning or in the evening sunday june thirteenth thank you
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'columbus', 'toloc.city_name': 'minneapolis', 'depart_date.day_name': 'sunday', 'depart_date.month_name': 'june', 'depart_date.day_number': 'thirteenth', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'evening', 'or': 'or'}
|
list the total number of flights between all airports by delta
|
[[FUNCTION]] get_quantity {'airline_name': 'delta'}
|
show me the flights that leave on thursday mornings from atlanta to washington and include whether meals are offered and what the prices are
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'mornings', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'meal': 'meals'}
|
i need a connecting flight on continental on june fifth from chicago to seattle
|
[[FUNCTION]] get_flight {'connect': 'connecting', 'airline_name': 'continental', 'depart_date.month_name': 'june', 'depart_date.day_number': 'fifth', 'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle'}
|
i want to leave before 8 in the morning what flight should i take to atlanta from boston
|
[[FUNCTION]] get_flight {'depart_time.time_relative': 'before', 'depart_time.time': '8', 'depart_time.period_of_day': 'morning', 'toloc.city_name': 'atlanta', 'fromloc.city_name': 'boston'}
|
does flight ua 281 from boston to denver leave on tuesday
|
[[FUNCTION]] get_flight {'airline_code': 'ua', 'flight_number': '281', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_date.day_name': 'tuesday'}
|
does delta aircraft fly dc10
|
[[FUNCTION]] get_aircraft {'airline_name': 'delta', 'aircraft_code': 'dc10'}
|
what are the flights from boston to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore'}
|
information on a flight from san francisco to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'philadelphia'}
|
what flights go from boston to san francisco with a stop in dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
i would like the flight from atlanta to denver that has the cheapest one way fare
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'cost_relative': 'cheapest', 'round_trip': 'one way'}
|
define airline hp
|
[[FUNCTION]] get_airline {'airline_code': 'hp'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.