input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
what is the cheapest round trip fare between boston and san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
show me ground transportation information for pittsburgh
|
[[FUNCTION]] get_ground_service {'city_name': 'pittsburgh'}
|
all flights and fares from atlanta to dallas round trip after 12 pm less than 1100 dollars
|
[[FUNCTION]] get_flight+airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas', 'round_trip': 'round trip', 'depart_time.time_relative': 'after', 'depart_time.time': '12 pm', 'cost_relative': 'less', 'fare_amount': '1100 dollars'}
|
what is the fare from boston to oakland on united airlines
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'boston', 'toloc.city_name': 'oakland', 'airline_name': 'united airlines'}
|
show me the latest flight from salt lake city to phoenix
|
[[FUNCTION]] get_flight {'flight_mod': 'latest', 'fromloc.city_name': 'salt lake city', 'toloc.city_name': 'phoenix'}
|
show me all the eastern airlines flights leaving pittsburgh between 12 and 4 in the afternoon
|
[[FUNCTION]] get_flight {'airline_name': 'eastern airlines', 'fromloc.city_name': 'pittsburgh', 'depart_time.start_time': '12', 'depart_time.end_time': '4', 'depart_time.period_of_day': 'afternoon'}
|
show me flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
flights from newark to boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'newark', 'toloc.city_name': 'boston'}
|
what is the first flight from atlanta to boston leaving on thursday september fifth
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_date.day_name': 'thursday', 'depart_date.month_name': 'september', 'depart_date.day_number': 'fifth'}
|
all united airlines flights with stopovers in denver
|
[[FUNCTION]] get_flight {'airline_name': 'united airlines', 'stoploc.city_name': 'denver'}
|
show flights from boston to denver on wednesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning'}
|
show me all the twa flights from indianapolis to houston that arrive around 11 am
|
[[FUNCTION]] get_flight {'airline_code': 'twa', 'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'houston', 'arrive_time.time_relative': 'around', 'arrive_time.time': '11 am'}
|
show me the direct flights from san francisco to boston
|
[[FUNCTION]] get_flight {'connect': 'direct', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston'}
|
i 'd like to find the cheapest flight from boston to san francisco
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
show me round trip fares from denver to philadelphia
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
i want to go from denver to atlanta round trip and make a stop at pittsburgh is this possible
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta', 'round_trip': 'round trip', 'stoploc.city_name': 'pittsburgh'}
|
please tell me which airline has the most departures from atlanta
|
[[FUNCTION]] get_airline {'mod': 'most', 'fromloc.city_name': 'atlanta'}
|
what are the flights from atlanta to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
show me round trip fares from san jose to salt lake city
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'san jose', 'toloc.city_name': 'salt lake city'}
|
explain the restriction ap 80
|
[[FUNCTION]] get_abbreviation {'restriction_code': 'ap 80'}
|
show me the flights from salt lake city to milwaukee
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'salt lake city', 'toloc.city_name': 'milwaukee'}
|
show me us air fares for next sunday from miami to cleveland
|
[[FUNCTION]] get_airfare {'airline_name': 'us air', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'sunday', 'fromloc.city_name': 'miami', 'toloc.city_name': 'cleveland'}
|
list a round trip fare from kansas city to minneapolis flights
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'kansas city', 'toloc.city_name': 'minneapolis'}
|
show me flights from pittsburgh to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'san francisco'}
|
show me all flights from baltimore to dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
can you show me the cheapest round trip flights between denver and pittsburgh
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'round trip', 'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
how many passengers fit on a d9s
|
[[FUNCTION]] get_capacity {'aircraft_code': 'd9s'}
|
i would like a flight from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
show me the flights from boston to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
i need a flight from san francisco to boston that leaves after 10 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.time': '10 pm'}
|
what flights from boston arrive in dallas fort worth before 5 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'dallas fort worth', 'arrive_time.time_relative': 'before', 'arrive_time.time': '5 pm'}
|
please show me ground transportation in denver
|
[[FUNCTION]] get_ground_service {'city_name': 'denver'}
|
find travel arrangements for a round trip flight from boston to pittsburgh
|
[[FUNCTION]] get_flight {'round_trip': 'round trip', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
what is the coach fare between boston and atlanta on delta
|
[[FUNCTION]] get_airfare {'class_type': 'coach', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'airline_name': 'delta'}
|
list flights from pittsburgh to atlanta on the evening of august sixth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta', 'depart_time.period_of_day': 'evening', 'depart_date.month_name': 'august', 'depart_date.day_number': 'sixth'}
|
i would like your rates between atlanta and boston on september third
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston', 'depart_date.month_name': 'september', 'depart_date.day_number': 'third'}
|
i would like to fly from boston to denver early in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'depart_time.period_mod': 'early', 'depart_time.period_of_day': 'morning'}
|
looking for a flight from denver to salt lake city
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'salt lake city'}
|
show me all the flights from columbus to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'columbus', 'toloc.city_name': 'baltimore'}
|
and flight from oakland to boston leaving after midnight
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'boston', 'depart_time.time_relative': 'after', 'depart_time.period_of_day': 'midnight'}
|
what does the abbreviation dl mean
|
[[FUNCTION]] get_abbreviation {'airline_code': 'dl'}
|
could i have a list of flights in first class on monday from san francisco to pittsburgh starting at noon and afterwards
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'depart_date.day_name': 'monday', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_time.time': 'noon', 'depart_time.time_relative': 'afterwards'}
|
i would like to fly from atlanta to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'philadelphia'}
|
what flights from atlanta to st. louis on tuesday arriving around 230 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'st. louis', 'depart_date.day_name': 'tuesday', 'arrive_time.time_relative': 'around', 'arrive_time.time': '230 pm'}
|
list daily flights from oakland to boston using twa
|
[[FUNCTION]] get_flight {'flight_days': 'daily', 'fromloc.city_name': 'oakland', 'toloc.city_name': 'boston', 'airline_code': 'twa'}
|
could you give me the schedule of flights for american and delta to dfw on august fifteenth
|
[[FUNCTION]] get_flight_time {'flight_time': 'schedule', 'airline_name': 'delta', 'toloc.airport_code': 'dfw', 'depart_date.month_name': 'august', 'depart_date.day_number': 'fifteenth'}
|
show me first class flights from new york to miami leaving on a tuesday
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'fromloc.city_name': 'new york', 'toloc.city_name': 'miami', 'depart_date.day_name': 'tuesday'}
|
please show me airfare of flight us 345 from boston to pittsburgh
|
[[FUNCTION]] get_airfare {'airline_code': 'us', 'flight_number': '345', 'fromloc.city_name': 'boston', 'toloc.city_name': 'pittsburgh'}
|
is there a delta flight from boston to san francisco that stops in denver
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'}
|
please list all united flights between pittsburgh and baltimore
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
find the cheapest one way fare from boston to san francisco
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
give me morning flights from atlanta to baltimore
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
please give me round trip fares from pittsburgh to philadelphia
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia'}
|
i would like information on ground transportation in the city of atlanta from airport to downtown
|
[[FUNCTION]] get_ground_service {'city_name': 'atlanta'}
|
i 'd like to fly from philadelphia to dallas to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco'}
|
what is the least expensive flight from atlanta to denver leaving on october twelfth
|
[[FUNCTION]] get_flight {'cost_relative': 'least expensive', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'depart_date.month_name': 'october', 'depart_date.day_number': 'twelfth'}
|
what is the price of american airlines flight 19 from new york to los angeles
|
[[FUNCTION]] get_airfare {'airline_name': 'american airlines', 'flight_number': '19', 'fromloc.city_name': 'new york', 'toloc.city_name': 'los angeles'}
|
what 's the first flight from dallas to houston
|
[[FUNCTION]] get_flight {'flight_mod': 'first', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston'}
|
i would like information on flights from san francisco to pittsburgh leaving after 8 pm monday night
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san francisco', 'toloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'after', 'depart_time.time': '8 pm', 'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'night'}
|
what flights go from dallas to denver leaving after 3 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'denver', 'depart_time.time_relative': 'after', 'depart_time.time': '3 pm'}
|
what is the fare code y and what is the fare code h
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'h'}
|
hello i 'd like a delta flight from atlanta to boston
|
[[FUNCTION]] get_flight {'airline_name': 'delta', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'boston'}
|
what flights are provided by american airlines
|
[[FUNCTION]] get_flight {'airline_name': 'american airlines'}
|
show me the flights from love field to other airports
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'love field'}
|
show me the coach fares from baltimore to dallas
|
[[FUNCTION]] get_airfare {'class_type': 'coach', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
i want the flights from toronto to san diego that stop in st. louis
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'toronto', 'toloc.city_name': 'san diego', 'stoploc.city_name': 'st. louis'}
|
saturday or sunday flights between milwaukee and phoenix american airlines
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'sunday', 'or': 'or', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'phoenix', 'airline_name': 'american airlines'}
|
list the cheapest one way flight from miami florida to charlotte north carolina
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'miami', 'fromloc.state_name': 'florida', 'toloc.city_name': 'charlotte', 'toloc.state_name': 'north carolina'}
|
flights from washington august second
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'depart_date.month_name': 'august', 'depart_date.day_number': 'second'}
|
i 'd like to fly from philadelphia to san francisco through dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'dallas'}
|
list all flights from atlanta to dallas on friday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'dallas', 'depart_date.day_name': 'friday'}
|
houston airports
|
[[FUNCTION]] get_airport {'city_name': 'houston'}
|
show me all united flights from denver to san francisco for september first 1991
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.month_name': 'september', 'depart_date.day_number': 'first', 'depart_date.year': '1991'}
|
what is the earliest flight departing san francisco and arriving in oakland on november eighth
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'oakland', 'arrive_date.month_name': 'november', 'arrive_date.day_number': 'eighth'}
|
from new york to toronto on thursday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york', 'toloc.city_name': 'toronto', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'}
|
cheapest flight from miami to indianapolis
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'miami', 'toloc.city_name': 'indianapolis'}
|
which airlines fly from boston to washington dc but stopover in some other city
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'boston', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
please list all airline flights between denver and boston
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'denver', 'toloc.city_name': 'boston'}
|
i am interested in a flight from cincinnati to burbank the flight should be american and leave in the afternoon i need to know the aircraft and flight number
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cincinnati', 'toloc.city_name': 'burbank', 'airline_name': 'american', 'depart_time.period_of_day': 'afternoon'}
|
flights from oakland to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'oakland', 'toloc.city_name': 'san francisco'}
|
list flights from boston to san francisco that serve only breakfast
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'meal_description': 'breakfast'}
|
how many airlines have flights with service class yn
|
[[FUNCTION]] get_quantity {'fare_basis_code': 'yn'}
|
could you please give me a one way fare from pittsburgh to atlanta
|
[[FUNCTION]] get_airfare {'round_trip': 'one way', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
okay i 'd like to fly from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
i 'd like a flight from montreal to san diego for sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'montreal', 'toloc.city_name': 'san diego', 'depart_date.day_name': 'sunday'}
|
i need a flight from montreal quebec to san diego california leaving this sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'montreal', 'fromloc.state_name': 'quebec', 'toloc.city_name': 'san diego', 'toloc.state_name': 'california', 'depart_date.date_relative': 'this', 'depart_date.day_name': 'sunday'}
|
give me a list of all the flights from baltimore to philadelphia or denver to philadelphia or pittsburgh to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia', 'or': 'or'}
|
tell me about ground transportation in st. petersburg airport
|
[[FUNCTION]] get_ground_service {'airport_name': 'st. petersburg airport'}
|
how many united flights are there from san francisco please
|
[[FUNCTION]] get_quantity {'airline_name': 'united', 'fromloc.city_name': 'san francisco'}
|
i need a listing of flights from new york city to montreal canada departing thursday in the morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'new york city', 'toloc.city_name': 'montreal', 'toloc.country_name': 'canada', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'}
|
show me all the flights from philadelphia to newark
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'newark'}
|
how can i go from the san francisco airport to downtown san francisco
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'san francisco airport', 'toloc.city_name': 'san francisco'}
|
i would like to fly from denver to atlanta by way of pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'atlanta', 'stoploc.city_name': 'pittsburgh'}
|
give me fares from atlanta to baltimore
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'baltimore'}
|
baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
give me flights from denver to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
the flight will originate from boston
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston'}
|
flights from kansas city to cleveland and price
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'kansas city', 'toloc.city_name': 'cleveland'}
|
on tuesday what flights leave phoenix to st. paul minnesota and leave after noon
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'tuesday', 'fromloc.city_name': 'phoenix', 'toloc.city_name': 'st. paul', 'toloc.state_name': 'minnesota', 'depart_time.time_relative': 'after', 'depart_time.time': 'noon'}
|
what is the lowest price fare from atlanta to san francisco on flight delta 82 and delta 139
|
[[FUNCTION]] get_airfare {'cost_relative': 'lowest price', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'san francisco', 'airline_name': 'delta', 'flight_number': '139'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.