input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
are there any flights next monday morning from pittsburgh to san francisco
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
what does fare code qo mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'qo'}
|
show me the flights available from san francisco to pittsburgh for tuesday and also the price
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'tuesday'}
|
flights between milwaukee and orlando one way
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando', 'round_trip': 'one way'}
|
what does ewr mean
|
[[FUNCTION]] get_abbreviation {'airport_code': 'ewr'}
|
flights from baltimore to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco'}
|
give me the earliest flight on american airlines tomorrow from st. petersburg to milwaukee
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'airline_name': 'american airlines', 'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'st. petersburg', 'toloc.city_name': 'milwaukee'}
|
what flights does delta have between dallas and denver
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'denver'}
|
i would like to fly from boston to baltimore in the afternoon what flights are there
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'depart_time.period_of_day': 'afternoon'}
|
where does flight ua 281 from boston to oakland stop
|
[[FUNCTION]] get_flight {'airline_code': 'ua', 'flight_number': '281', 'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland', 'flight_stop': 'stop'}
|
i would like to book a flight from charlotte to baltimore on april eighth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'april', 'depart_date.day_number': 'eighth'}
|
i would like a nonstop flight from jfk to las vegas on march second
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.airport_code': 'jfk', 'toloc.city_name': 'las vegas', 'arrive_date.month_name': 'march', 'arrive_date.day_number': 'second'}
|
thank you for that information now i would like to book a flight from philadelphia to boston on the night of april sixteen around 9 o'clock
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'boston', 'depart_time.period_of_day': 'night', 'depart_date.month_name': 'april', 'depart_date.day_number': 'sixteen', 'depart_time.time_relative': 'around', 'depart_time.time': "9 o'clock"}
|
what flight do you have from san francisco to pittsburgh on the evening of august twenty seventh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_time.period_of_day': 'evening', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twenty seventh'}
|
please give me a list of all the flights between dallas and baltimore and their cost
|
[[FUNCTION]] get_flight+airfare {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
show me the nonstop flights from dallas to houston
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston'}
|
show me the flights from boston to pittsburgh on wednesday and thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh', 'depart_date.day_name': 'thursday'}
|
show me the flights arriving at love field
|
[[FUNCTION]] get_flight {'toloc.airport_name': 'love field'}
|
show me the flights out of love field
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'love field'}
|
what is the fare for a one way flight from boston to atlanta
|
[[FUNCTION]] get_airfare {'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
i want to leave philadelphia and arrive in atlanta on a thursday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'atlanta', 'arrive_date.day_name': 'thursday'}
|
is there a round trip flight from baltimore to dallas connecting in denver
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas', 'connect': 'connecting', 'stoploc.city_name': 'denver'}
|
what is the earliest flight from boston to atlanta
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
give me the flights from chicago to seattle on saturday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'chicago', 'toloc.city_name': 'seattle', 'depart_date.day_name': 'saturday', 'depart_time.period_of_day': 'morning'}
|
houston airports
|
[[FUNCTION]] get_airport {'city_name': 'houston'}
|
i would like a morning flight from milwaukee to denver colorado please
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'denver', 'toloc.state_name': 'colorado'}
|
can you please tell me the type of aircraft used flying from atlanta to denver on eastern flight 825 leaving at 555
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'airline_name': 'eastern', 'flight_number': '825', 'depart_time.time': '555'}
|
are there any flights next monday morning from pittsburgh to san francisco
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
what flights from new york to los angeles after 10 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'los angeles', 'depart_time.time_relative': 'after', 'depart_time.time': '10 am'}
|
show me the fares from washington to oakland
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'washington', 'toloc.city_name': 'oakland'}
|
what 's the cheapest first class airfare from pittsburgh to san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'class_type': 'first class', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
what is fare code h
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'h'}
|
show me saturday and sunday 's flights from milwaukee to phoenix on american airlines
|
[[FUNCTION]] get_flight {'depart_date.day_name': "sunday 's", 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'phoenix', 'airline_name': 'american airlines'}
|
how much does it cost to fly one way from boston to washington first class
|
[[FUNCTION]] get_airfare {'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'class_type': 'first class'}
|
could i have the flights from newark to orlando please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'orlando'}
|
what is the cheapest flight from denver to oakland
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'oakland'}
|
show me the list of flights between philadelphia and denver that leave in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver', 'depart_time.period_of_day': 'afternoon'}
|
what is the cheapest flight from long beach to memphis
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'long beach', 'toloc.city_name': 'memphis'}
|
show me all flights from denver to pittsburgh which serve dinner
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'meal_description': 'dinner'}
|
list the shortest flight from san jose to houston
|
[[FUNCTION]] get_flight {'flight_mod': 'shortest', 'fromloc.city_name': 'san jose', 'toloc.city_name': 'houston'}
|
show me flights from denver to boston on tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'boston', 'depart_date.day_name': 'tuesday'}
|
i want to travel from baltimore to washington on a monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'washington', 'depart_date.day_name': 'monday'}
|
show me fares leaving on tuesdays from denver to go to dallas
|
[[FUNCTION]] get_airfare {'depart_date.day_name': 'tuesdays', 'fromloc.city_name': 'denver', 'toloc.city_name': 'dallas'}
|
what is the cost of a round trip ticket first class between oak and atl
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'class_type': 'first class', 'fromloc.airport_code': 'oak', 'toloc.airport_code': 'atl'}
|
show me round trip fares from las vegas to houston nonstop
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'las vegas', 'toloc.city_name': 'houston', 'flight_stop': 'nonstop'}
|
show me the flights from atlanta to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'}
|
what flights are available from denver to philadelphia with stopover in pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'stoploc.city_name': 'pittsburgh'}
|
what does the fare code qw mean
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'qw'}
|
tell me about ground transportation between the dallas fort worth airport and downtown dallas
|
[[FUNCTION]] get_ground_service {'fromloc.airport_name': 'dallas fort worth airport', 'toloc.city_name': 'dallas'}
|
flights from phoenix to las vegas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'las vegas'}
|
list all direct flights from boston to denver
|
[[FUNCTION]] get_flight {'connect': 'direct', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
what are the flights from boston to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
i need information on a flight from boston to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
what is the cheapest flight from denver to pittsburgh on july twenty sixth
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh', 'depart_date.month_name': 'july', 'depart_date.day_number': 'twenty sixth'}
|
what are the coach flights between dallas and baltimore leaving august tenth and returning august twelve
|
[[FUNCTION]] get_flight {'class_type': 'coach', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'august', 'depart_date.day_number': 'tenth', 'return_date.month_name': 'august', 'return_date.day_number': 'twelve'}
|
okay what i would like to know is does twa flight 505 from charlotte to las vegas with a stop in st. louis serve dinner that 's twa flight 505 or 163
|
[[FUNCTION]] get_flight {'airline_code': 'twa', 'flight_number': '163', 'fromloc.city_name': 'charlotte', 'toloc.city_name': 'las vegas', 'stoploc.city_name': 'st. louis', 'meal_description': 'dinner', 'or': 'or'}
|
okay that one 's great too now we 're going to go on april twenty second dallas to washington the latest nighttime departure one way
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'april', 'depart_date.day_number': 'twenty second', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'washington', 'flight_mod': 'latest', 'depart_time.period_of_day': 'nighttime', 'round_trip': 'one way'}
|
what 's the earliest flight from san francisco to boston
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
show business class fares from san francisco to denver on united airlines
|
[[FUNCTION]] get_airfare {'class_type': 'business class', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'denver', 'airline_name': 'united airlines'}
|
show me flights from tampa to st. louis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'tampa', 'toloc.city_name': 'st. louis'}
|
what flights go from boston to atlanta next tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'tuesday'}
|
please list the flights leaving from st. louis to st. paul after 10 am
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'st. louis', 'toloc.city_name': 'st. paul', 'depart_time.time_relative': 'after', 'depart_time.time': '10 am'}
|
show all flights between san francisco and philadelphia for september fifteenth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'philadelphia', 'depart_date.month_name': 'september', 'depart_date.day_number': 'fifteenth'}
|
i need a flight from san francisco to boston that leaves after 8 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': '8 pm'}
|
show me the flights from montreal to chicago
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'montreal', 'toloc.city_name': 'chicago'}
|
what flights do you have from ontario
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'ontario'}
|
what 's the price of the least expensive first class round trip ticket on us air from cleveland to miami
|
[[FUNCTION]] get_airfare {'cost_relative': 'least expensive', 'class_type': 'first class', 'round_trip': 'round trip', 'airline_name': 'us air', 'fromloc.city_name': 'cleveland', 'toloc.city_name': 'miami'}
|
are there any turboprop flights from pittsburgh to baltimore on december seventeenth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore', 'depart_date.month_name': 'december', 'depart_date.day_number': 'seventeenth'}
|
show flights from pittsburgh to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'oakland'}
|
show me the dinner flights from baltimore to oakland
|
[[FUNCTION]] get_flight {'meal_description': 'dinner', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'oakland'}
|
please find the earliest possible flight from boston to denver
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me the flights from love field to any other airport
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'love field'}
|
can i get a taxi from long beach airport to downtown long beach
|
[[FUNCTION]] get_ground_service {'transport_type': 'taxi', 'fromloc.city_name': 'long beach'}
|
give me flights from atlanta to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
how long is the flight from atlanta to san francisco at noon on november seventh
|
[[FUNCTION]] get_distance {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco', 'depart_time.time': 'noon', 'depart_date.month_name': 'november', 'depart_date.day_number': 'seventh'}
|
what are the flights from baltimore to dallas on sunday afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas', 'depart_date.day_name': 'sunday', 'depart_time.period_of_day': 'afternoon'}
|
show me all flights from san francisco to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'oakland'}
|
what ground transportation is available from the pittsburgh airport
|
[[FUNCTION]] get_ground_service {'fromloc.airport_name': 'pittsburgh airport'}
|
list the airlines that have nonstop afternoon flights from boston to oakland
|
[[FUNCTION]] get_airline {'flight_stop': 'nonstop', 'arrive_time.period_of_day': 'afternoon', 'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland'}
|
what is the first class fare from indianapolis to orlando
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'orlando'}
|
now show me the flights from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
show me all the flights on northwest airlines from new york to milwaukee to los angeles
|
[[FUNCTION]] get_flight {'airline_name': 'northwest airlines', 'fromloc.city_name': 'new york', 'stoploc.city_name': 'milwaukee', 'toloc.city_name': 'los angeles'}
|
what is the earliest flight that has no stops from washington to san francisco on friday
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'flight_stop': 'no stops', 'fromloc.city_name': 'washington', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'friday'}
|
show me first class fares from dallas to baltimore
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore'}
|
fly from denver to philadelphia on continental
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'airline_name': 'continental'}
|
please show me again the first class fares from baltimore to dallas
|
[[FUNCTION]] get_airfare {'class_type': 'first class', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
show me all midwest express flights from detroit to chicago
|
[[FUNCTION]] get_flight {'airline_name': 'midwest', 'fromloc.city_name': 'detroit', 'toloc.city_name': 'chicago'}
|
list flights from atlanta to boston leaving between 6 pm and 10 pm on august eighth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_time.start_time': '6 pm', 'depart_time.end_time': '10 pm', 'depart_date.month_name': 'august', 'depart_date.day_number': 'eighth'}
|
information on afternoon flights from philadelphia to denver
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'afternoon', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver'}
|
great now what i want to find out is on april twentieth from washington to denver do you have a flight least expensive fare around 5 o'clock in the morning
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'april', 'depart_date.day_number': 'twentieth', 'fromloc.city_name': 'washington', 'toloc.city_name': 'denver', 'cost_relative': 'least expensive', 'depart_time.time_relative': 'around', 'depart_time.time': "5 o'clock", 'depart_time.period_of_day': 'morning'}
|
i need a flight from denver to philadelphia on saturday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'saturday'}
|
show me the flights from westchester county to cincinnati
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'westchester county', 'toloc.city_name': 'cincinnati'}
|
what flights are available from denver to philadelphia on monday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia', 'depart_date.day_name': 'monday'}
|
what are the coach fares for flights from newark to la leaving after 3 pm
|
[[FUNCTION]] get_airfare {'class_type': 'coach', 'fromloc.city_name': 'newark', 'toloc.city_name': 'la', 'depart_time.time_relative': 'after', 'depart_time.time': '3 pm'}
|
what delta flights fly from washington to dallas in the morning
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'washington', 'toloc.city_name': 'dallas', 'depart_time.period_of_day': 'morning'}
|
i 'd like to make a trip between atlanta and boston i wish to know the cheapest fare
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'cost_relative': 'cheapest'}
|
give me the first flight from boston to atlanta
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
does american airlines fly from boston to san francisco
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
what flights go from dallas to tampa
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'tampa'}
|
thank you i also need to travel next wednesday evening from dallas to san francisco
|
[[FUNCTION]] get_flight {'depart_date.date_relative': 'next', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'evening', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.