input
stringlengths 6
259
| output
stringlengths 26
381
|
|---|---|
flight from ontario to orlando that departs 9 hours before arriving
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'ontario', 'toloc.city_name': 'orlando', 'depart_time.time': '9', 'depart_time.time_relative': 'before'}
|
american flights to houston from cincinnati
|
[[FUNCTION]] get_flight {'airline_name': 'american', 'toloc.city_name': 'houston', 'fromloc.city_name': 'cincinnati'}
|
show me one way flights from milwaukee to orlando
|
[[FUNCTION]] get_flight {'round_trip': 'one way', 'fromloc.city_name': 'milwaukee', 'toloc.city_name': 'orlando'}
|
i want the flights from denver to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'pittsburgh'}
|
in the month of december are there any flights from atlanta to denver that stop in boston
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'december', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'stoploc.city_name': 'boston'}
|
what is the available ground transportation between san francisco and downtown
|
[[FUNCTION]] get_ground_service {'fromloc.city_name': 'san francisco'}
|
from atlanta to washington dc
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc'}
|
i need a flight from indianapolis to houston on twa
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'indianapolis', 'toloc.city_name': 'houston', 'airline_code': 'twa'}
|
flights from ontario to florida
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'ontario', 'toloc.state_name': 'florida'}
|
okay i 've got somebody else who wants to take a round trip ticket from charlotte to montreal
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'charlotte', 'toloc.city_name': 'montreal'}
|
flight from cleveland to nashville
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'cleveland', 'toloc.city_name': 'nashville'}
|
how can i get from the denver airport to downtown
|
[[FUNCTION]] get_flight {'fromloc.airport_name': 'denver airport'}
|
what airline uses the code hp
|
[[FUNCTION]] get_airline {'airline_code': 'hp'}
|
please show me airlines with round trip flights from boston to denver stop philadelphia
|
[[FUNCTION]] get_airline {'round_trip': 'round trip', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver', 'stoploc.city_name': 'philadelphia'}
|
show me the flights from baltimore to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'pittsburgh'}
|
which airlines have flights between charlotte and newark
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'charlotte', 'toloc.city_name': 'newark'}
|
is there an airport limousine at the atlanta airport
|
[[FUNCTION]] get_ground_service {'transport_type': 'airport limousine', 'airport_name': 'atlanta airport'}
|
give me the flights from denver to baltimore on united airlines
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore', 'airline_name': 'united airlines'}
|
show me flights monday night after 8 pm for dallas to boston
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'monday', 'depart_time.period_of_day': 'night', 'depart_time.time_relative': 'after', 'depart_time.time': '8 pm', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'boston'}
|
what is the ground transportation available in boston
|
[[FUNCTION]] get_ground_service {'city_name': 'boston'}
|
is there a flight on eastern airlines from boston to denver
|
[[FUNCTION]] get_flight {'airline_name': 'eastern airlines', 'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
show me morning flights from toronto
|
[[FUNCTION]] get_flight {'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'toronto'}
|
what is the airfare from pittsburgh to atlanta
|
[[FUNCTION]] get_airfare {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'atlanta'}
|
list flights from pittsburgh to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
i want to fly dallas to san francisco on monday july eighth
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco', 'depart_date.day_name': 'monday', 'depart_date.month_name': 'july', 'depart_date.day_number': 'eighth'}
|
phoenix to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'phoenix', 'toloc.city_name': 'denver'}
|
i am interested in booking an early flight from dallas into houston and returning in the late evening
|
[[FUNCTION]] get_flight {'flight_mod': 'early', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'houston', 'return_time.period_mod': 'late', 'return_time.period_of_day': 'evening'}
|
show me the flights from dallas to baltimore at economy level
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'economy': 'economy'}
|
what airlines leave from washington
|
[[FUNCTION]] get_airline {'fromloc.city_name': 'washington'}
|
list the number of flights arriving in dallas fort worth from boston before noon
|
[[FUNCTION]] get_flight_no {'toloc.city_name': 'dallas fort worth', 'fromloc.city_name': 'boston', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
i need to fly from dallas to san francisco and be in san francisco by 4 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'san francisco', 'arrive_time.time_relative': 'by', 'arrive_time.time': '4 pm'}
|
show me the cities served by canadian airlines international
|
[[FUNCTION]] get_city {'airline_name': 'canadian airlines international'}
|
please list the cheapest flights from dallas to baltimore arriving on may seventh
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'may', 'arrive_date.day_number': 'seventh'}
|
what flights are there from pittsburgh to dallas on wednesday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'dallas', 'depart_date.day_name': 'wednesday', 'depart_time.period_of_day': 'morning'}
|
how many flights does american airlines have with a class of service code f
|
[[FUNCTION]] get_quantity {'airline_name': 'american airlines', 'fare_basis_code': 'f'}
|
show flights first class on american airlines between dallas and philadelphia
|
[[FUNCTION]] get_flight {'class_type': 'first class', 'airline_name': 'american airlines', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'philadelphia'}
|
on november twenty third what flights go from atlanta to denver on delta airlines
|
[[FUNCTION]] get_flight {'depart_date.month_name': 'november', 'depart_date.day_number': 'twenty third', 'fromloc.city_name': 'atlanta', 'toloc.city_name': 'denver', 'airline_name': 'delta airlines'}
|
explain the fare code q
|
[[FUNCTION]] get_abbreviation {'fare_basis_code': 'q'}
|
i would like a nonstop flight between pittsburgh and philadelphia leaving in the afternoon and arriving in the vicinity of 5 pm
|
[[FUNCTION]] get_flight {'flight_stop': 'nonstop', 'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'philadelphia', 'arrive_time.period_of_day': 'afternoon', 'arrive_time.time_relative': 'vicinity', 'arrive_time.time': '5 pm'}
|
how many flights does twa have with business class
|
[[FUNCTION]] get_quantity {'airline_code': 'twa', 'class_type': 'business class'}
|
show me the flights leaving from atlanta for washington dc on thursday morning
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington', 'toloc.state_code': 'dc', 'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning'}
|
how many cities are served by eastern with first class flights
|
[[FUNCTION]] get_quantity {'airline_name': 'eastern', 'class_type': 'first class'}
|
show me the flights from baltimore to oakland
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'oakland'}
|
how many cities are served by american airline with first class flights
|
[[FUNCTION]] get_quantity {'airline_name': 'american airline', 'class_type': 'first class'}
|
what are the rental car rates in dallas
|
[[FUNCTION]] get_ground_fare {'transport_type': 'rental car', 'city_name': 'dallas'}
|
how much will it cost taking coach from orlando to indianapolis on december twenty ninth flying us air 311
|
[[FUNCTION]] get_airfare {'class_type': 'coach', 'fromloc.city_name': 'orlando', 'toloc.city_name': 'indianapolis', 'depart_date.month_name': 'december', 'depart_date.day_number': 'twenty ninth', 'airline_name': 'us air', 'flight_number': '311'}
|
what is the ground transportation available in fort worth
|
[[FUNCTION]] get_ground_service {'city_name': 'fort worth'}
|
find a flight from long beach to st. louis stopping in dallas
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'long beach', 'toloc.city_name': 'st. louis', 'stoploc.city_name': 'dallas'}
|
what is mia
|
[[FUNCTION]] get_abbreviation {'airport_code': 'mia'}
|
what about the flights from boston to la
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'la'}
|
ground transportation baltimore
|
[[FUNCTION]] get_ground_service {'city_name': 'baltimore'}
|
i 'd like to find a flight between dallas and philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'philadelphia'}
|
instead of denver can i have the same flight from toronto to san diego but stopping in dallas fort worth
|
[[FUNCTION]] get_flight {'mod': 'instead', 'fromloc.city_name': 'toronto', 'toloc.city_name': 'san diego', 'stoploc.city_name': 'dallas fort worth'}
|
what are the flights from orlando to cleveland on us air that arrive around 10 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'orlando', 'toloc.city_name': 'cleveland', 'airline_name': 'us air', 'arrive_time.time_relative': 'around', 'arrive_time.time': '10 pm'}
|
again i will repeat i want to make a one way flight from boston to atlanta will you tell me how much the fares are i would like the cheapest fare
|
[[FUNCTION]] get_flight+airfare {'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'cost_relative': 'cheapest'}
|
round trip fares from baltimore to philadelphia under 1000 dollars
|
[[FUNCTION]] get_airfare {'round_trip': 'round trip', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia', 'cost_relative': 'under', 'fare_amount': '1000 dollars'}
|
i 'd like to see flights from baltimore to atlanta that arrive before noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'atlanta', 'arrive_time.time_relative': 'before', 'arrive_time.time': 'noon'}
|
is there a united flight from baltimore to san francisco on the morning of august twenty seventh
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco', 'depart_time.period_of_day': 'morning', 'depart_date.month_name': 'august', 'depart_date.day_number': 'twenty seventh'}
|
what is the abbreviation for canadian airlines international
|
[[FUNCTION]] get_abbreviation {'airline_name': 'canadian airlines international'}
|
what flights leave pittsburgh after 5 pm on thursday and arrive in los angeles
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'pittsburgh', 'depart_time.time_relative': 'after', 'depart_time.time': '5 pm', 'depart_date.day_name': 'thursday', 'toloc.city_name': 'los angeles'}
|
i 'd like a flight tomorrow from san diego to toronto
|
[[FUNCTION]] get_flight {'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'san diego', 'toloc.city_name': 'toronto'}
|
what airlines fly into salt lake city
|
[[FUNCTION]] get_airline {'toloc.city_name': 'salt lake city'}
|
i need a flight from boston to denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'denver'}
|
requesting flight information for flight from boston to baltimore on tuesday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'baltimore', 'depart_date.day_name': 'tuesday'}
|
show me flights from atlanta to washington please
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'washington'}
|
what flights from washington dc to toronto
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'washington', 'fromloc.state_code': 'dc', 'toloc.city_name': 'toronto'}
|
what about a flight from boston to san francisco stopping in denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'stoploc.city_name': 'denver'}
|
show me the flights from san diego to newark new jersey
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'san diego', 'toloc.city_name': 'newark', 'toloc.state_name': 'new jersey'}
|
show me the cheapest fare from baltimore to dallas
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'dallas'}
|
show me flights from dallas to pittsburgh
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'pittsburgh'}
|
what are the cheapest fares for flights from newark to la leaving wednesday after 3 pm
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'fromloc.city_name': 'newark', 'toloc.city_name': 'la', 'depart_date.day_name': 'wednesday', 'depart_time.time_relative': 'after', 'depart_time.time': '3 pm'}
|
do you have a 747 that flies from san francisco to baltimore
|
[[FUNCTION]] get_flight {'aircraft_code': '747', 'fromloc.city_name': 'san francisco', 'toloc.city_name': 'baltimore'}
|
show me all flights from montreal
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'montreal'}
|
list types of planes that fly between pittsburgh and baltimore
|
[[FUNCTION]] get_aircraft {'fromloc.city_name': 'pittsburgh', 'toloc.city_name': 'baltimore'}
|
are there any flights between philadelphia and denver
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver'}
|
train to newark
|
[[FUNCTION]] get_ground_service {'transport_type': 'train', 'city_name': 'newark'}
|
what flights from atlanta to toronto
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'atlanta', 'toloc.city_name': 'toronto'}
|
list the earliest flights from st. paul to houston
|
[[FUNCTION]] get_flight {'flight_mod': 'earliest', 'fromloc.city_name': 'st. paul', 'toloc.city_name': 'houston'}
|
i 'd like to fly from boston to san francisco
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco'}
|
show me some information on making a reservation from philadelphia to denver on sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver', 'depart_date.day_name': 'sunday'}
|
list all united flights from boston to san francisco with fare code qx
|
[[FUNCTION]] get_flight {'airline_name': 'united', 'fromloc.city_name': 'boston', 'toloc.city_name': 'san francisco', 'fare_basis_code': 'qx'}
|
leave flight from boston to atlanta leave boston approximately 1 pm
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'depart_time.time_relative': 'approximately', 'depart_time.time': '1 pm'}
|
i 'd like the cheapest one way fare from boston to atlanta please
|
[[FUNCTION]] get_airfare {'cost_relative': 'cheapest', 'round_trip': 'one way', 'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta'}
|
give me flights that arrive in baltimore from denver
|
[[FUNCTION]] get_flight {'toloc.city_name': 'baltimore', 'fromloc.city_name': 'denver'}
|
when does continental fly from philadelphia to denver on sundays
|
[[FUNCTION]] get_flight_time {'flight_time': 'when', 'airline_name': 'continental', 'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'denver', 'depart_date.day_name': 'sundays'}
|
what flights from philadelphia to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'philadelphia', 'toloc.city_name': 'atlanta'}
|
what does dfw mean
|
[[FUNCTION]] get_abbreviation {'airport_code': 'dfw'}
|
what time are the flights from baltimore to san francisco
|
[[FUNCTION]] get_flight_time {'flight_time': 'time', 'fromloc.city_name': 'baltimore', 'toloc.city_name': 'san francisco'}
|
what flights are available tomorrow from denver to philadelphia
|
[[FUNCTION]] get_flight {'depart_date.today_relative': 'tomorrow', 'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
what is sa
|
[[FUNCTION]] get_abbreviation {'days_code': 'sa'}
|
show me the flights from dallas to atlanta
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'dallas', 'toloc.city_name': 'atlanta'}
|
show me all flights from denver to san francisco next wednesday which leave after noon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'san francisco', 'depart_date.date_relative': 'next', 'depart_date.day_name': 'wednesday', 'depart_time.time_relative': 'after', 'depart_time.time': 'noon'}
|
i would like flights between boston and atlanta on july eleven departing at one in the afternoon
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'boston', 'toloc.city_name': 'atlanta', 'depart_date.month_name': 'july', 'depart_date.day_number': 'eleven', 'depart_time.time': 'one', 'depart_time.period_of_day': 'afternoon'}
|
list all flights leaving denver on continental on sunday
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'airline_name': 'continental', 'depart_date.day_name': 'sunday'}
|
show me flights from baltimore to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'baltimore', 'toloc.city_name': 'philadelphia'}
|
show me flights from denver to philadelphia
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'philadelphia'}
|
is there ground transportation from the boston airport to downtown boston
|
[[FUNCTION]] get_ground_service {'fromloc.airport_name': 'boston airport', 'toloc.city_name': 'boston'}
|
what are your flights from denver to baltimore
|
[[FUNCTION]] get_flight {'fromloc.city_name': 'denver', 'toloc.city_name': 'baltimore'}
|
please list all flights leaving on thursday morning from new york city to toronto
|
[[FUNCTION]] get_flight {'depart_date.day_name': 'thursday', 'depart_time.period_of_day': 'morning', 'fromloc.city_name': 'new york city', 'toloc.city_name': 'toronto'}
|
please list the cheapest flight from dallas to baltimore arriving on may seventh
|
[[FUNCTION]] get_flight {'cost_relative': 'cheapest', 'fromloc.city_name': 'dallas', 'toloc.city_name': 'baltimore', 'arrive_date.month_name': 'may', 'arrive_date.day_number': 'seventh'}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.