zhen-dong-nexusflow's picture
Initialization
ed063d7
raw
history blame
No virus
12.4 kB
{"input": "What's the ID of the weather station closest to me?", "Output": "get_nearest_station_id(nearby_stations=find_nearby_stations(lat_long=get_latitude_longitude(location=get_current_location())))"}
{"input": "What's the weather like in New york right now?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude('New York'))), get_current_time_at_location(get_latitude_longitude('New York')), get_current_time_at_location(get_latitude_longitude('New York')), get_timezone(get_latitude_longitude('New York')))"}
{"input": "What's the weather like in New York for the past 3 days?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude('New York'))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude('New York')), 3), get_current_time_at_location(get_latitude_longitude('New York')), get_timezone(get_latitude_longitude('New York')))"}
{"input": "What has been the weather like for the past 7 days?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude(get_current_location()))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude(get_current_location())), 7), get_current_time_at_location(get_latitude_longitude(get_current_location())), get_timezone(get_latitude_longitude(get_current_location())))"}
{"input": "What is the nearest meterological station close to me?", "Output": "get_nearest_station_id(find_nearby_stations(get_latitude_longitude(get_current_location())))"}
{"input": "Give me a list of weather stations close to me?", "Output": "find_nearby_stations(get_latitude_longitude(get_current_location()))"}
{"input": "Get me the weather in Palo Alto for the past 3 days", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude('Palo Alto'))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude('Palo Alto')), 3), get_current_time_at_location(get_latitude_longitude('Palo Alto')), get_timezone(get_latitude_longitude('Palo Alto')))"}
{"input": "What has been the weather like where I live for the past 14 days?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude(get_current_location()))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude(get_current_location())), 14), get_current_time_at_location(get_latitude_longitude(get_current_location())), get_timezone(get_latitude_longitude(get_current_location())))"}
{"input": "If today is Jan 23 2023, what's 129 days ago from today?", "Output": "subtract_time_delta('2023-01-23', 129)"}
{"input": "If today is 1900 Jan 21, can you please tell me what's 435 days prior to that?", "Output": "subtract_time_delta('1900-01-21', 435)"}
{"input": "What has been the weather like in the 3 day span between Jan 23, 1950 onwards for the city of Menlo Park?", "Output": "get_hourly_observation(station_id=get_nearest_station_id(nearby_stations=find_nearby_stations(lat_long=get_latitude_longitude(location='Menlo Park'))), start_time='1950-01-23', end_time='1950-01-25', time_zone=get_timezone(lat_long=get_latitude_longitude(location='Menlo Park')))"}
{"input": "What has been the weather like in the 3 day span between Jan 23, 1950 backwards for the city of New York?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude('New York'))), subtract_time_delta('1950-01-23', 3), '1950-01-23', get_timezone(get_latitude_longitude('New York')))"}
{"input": "What are the coordinates of Honolulu Hawaii?", "Output": "get_latitude_longitude('Honolulu Hawaii')"}
{"input": "I want to plan a picnic around Jan 23, 2024 and I want it to go for 4 days at least. Will it be raining then?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude(get_current_location()))), subtract_time_delta(\"2024-01-23\", 4), \"2024-01-23\", get_timezone(get_latitude_longitude(get_current_location())))"}
{"input": "How many weather sites are around me?", "Output": "find_nearby_stations(get_latitude_longitude(get_current_location()))"}
{"input": "Give me the closest weather site to Albany NY?", "Output": "get_nearest_station_id(find_nearby_stations(get_latitude_longitude(\"Albany NY\")))"}
{"input": "What's the weather currently at Albany NY?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude(\"Albany NY\"))), get_current_time_at_location(get_latitude_longitude(\"Albany NY\")), get_current_time_at_location(get_latitude_longitude(\"Albany NY\")), get_timezone(get_latitude_longitude(\"Albany NY\")))"}
{"input": "What timezone does New York exist in?", "Output": "get_timezone(get_latitude_longitude(\"New York\"))"}
{"input": "What's the current timezone for New York?", "Output": "get_timezone(get_latitude_longitude(\"New York\"))"}
{"input": "Get me the time for New York and the timezone for Palo Alto?", "Output": "get_current_time_at_location(get_latitude_longitude(\"New York\")); get_timezone(get_latitude_longitude(\"Palo Alto\"))"}
{"input": "Get me the timezone for Palo Alto and the weather?", "Output": "get_timezone(get_latitude_longitude('Palo Alto')); get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude('Palo Alto'))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude('Palo Alto')), 1), get_current_time_at_location(get_latitude_longitude('Palo Alto')), get_timezone(get_latitude_longitude('Palo Alto')))"}
{"input": "What has been the weather like for the past 5 days in the city of Menlo Park? Also get me the coordinates for Palo Alto. And finally, get me the timezone Palo Alto is in?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude(\"Menlo Park\"))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude(\"Menlo Park\")), 5), get_current_time_at_location(get_latitude_longitude(\"Menlo Park\")), get_timezone(get_latitude_longitude(\"Menlo Park\"))); get_latitude_longitude(\"Palo Alto\"); get_timezone(get_latitude_longitude(\"Palo Alto\"))"}
{"input": "What's Honolulu's timezone, and what has been the weather like for the past 3 days?", "Output": "get_timezone(lat_long=get_latitude_longitude(location='Honolulu')); get_hourly_observation(station_id=get_nearest_station_id(nearby_stations=find_nearby_stations(lat_long=get_latitude_longitude(location='Honolulu'))), start_time=subtract_time_delta(date_time_str=get_current_time_at_location(lat_long=get_latitude_longitude(location='Honolulu')), delta_days=3), end_time=get_current_time_at_location(lat_long=get_latitude_longitude(location='Honolulu')), time_zone=get_timezone(lat_long=get_latitude_longitude(location='Honolulu')));"}
{"input": "What's Honolulu's timezone, and what's the current time there?", "Output": "get_timezone(lat_long=get_latitude_longitude(location='Honolulu')); get_current_time_at_location(lat_long=get_latitude_longitude(location='Honolulu'));"}
{"input": "If I am 19 years and 23 days old, when was I born?", "Output": "subtract_time_delta(get_current_time_at_location(get_latitude_longitude(get_current_location())), delta_days=(19*365+23))"}
{"input": "If I am 10 days old, when was I born?", "Output": "subtract_time_delta(get_current_time_at_location(get_latitude_longitude(get_current_location())), 10)"}
{"input": "New York's weather has been kinda crazy, I wanna check out the nearest weather station", "Output": "find_nearby_stations(get_latitude_longitude(\"New York\"))"}
{"input": "Get me the timezones for Honolulu, New York, London, and Tokyo.", "Output": "get_timezone(get_latitude_longitude('Honolulu')); get_timezone(get_latitude_longitude('New York')); get_timezone(get_latitude_longitude('London')); get_timezone(get_latitude_longitude('Tokyo'))"}
{"input": "Get me the coordinates for New York, London, and Yokohama", "Output": "get_latitude_longitude('New York'); get_latitude_longitude('London'); get_latitude_longitude('Yokohama')"}
{"input": "Get me the weather for Kiev?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude(\"Kiev\"))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude(\"Kiev\")), 1), get_current_time_at_location(get_latitude_longitude(\"Kiev\")), get_timezone(get_latitude_longitude(\"Kiev\")))"}
{"input": "What timezone is Kiev in, and what timezone is Berlin in?", "Output": "get_timezone(get_latitude_longitude(\"Kiev\")); get_timezone(get_latitude_longitude(\"Berlin\"))"}
{"input": "Get me the weather stations in Berlin, Kiev, and London?", "Output": "find_nearby_stations(get_latitude_longitude('Berlin')); find_nearby_stations(get_latitude_longitude('Kiev')); find_nearby_stations(get_latitude_longitude('London'))"}
{"input": "Get me the weather stations in Berlin, and the weather stations in Kiev, and the weather stations in London?", "Output": "find_nearby_stations(get_latitude_longitude('Berlin')); find_nearby_stations(get_latitude_longitude('Kiev')); find_nearby_stations(get_latitude_longitude('London'))"}
{"input": "What's the weather station closest to Berlin? And the one closest to Kiev? And the one closest to London?", "Output": "get_nearest_station_id(find_nearby_stations(get_latitude_longitude('Berlin'))); get_nearest_station_id(find_nearby_stations(get_latitude_longitude('Kiev'))); get_nearest_station_id(find_nearby_stations(get_latitude_longitude('London')))"}
{"input": "Can you get me the coordinates for London, coordinates for Paris, and coordinates for Lyon?", "Output": "get_latitude_longitude(\"London\"); get_latitude_longitude(\"Paris\"); get_latitude_longitude(\"Lyon\");"}
{"input": "What are some weather stations for London, for Paris, and for Lyon?", "Output": "find_nearby_stations(get_latitude_longitude('London')); find_nearby_stations(get_latitude_longitude('Paris')); find_nearby_stations(get_latitude_longitude('Lyon'))"}
{"input": "What are the current timezones for London, the current timezones for Paris, and the current timezones for Kiev?", "Output": "get_timezone(get_latitude_longitude('London')); get_timezone(get_latitude_longitude('Paris')); get_timezone(get_latitude_longitude('Kiev'))"}
{"input": "What's the weather like in New York?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude(\"New York\"))), subtract_time_delta(get_current_time_at_location(get_latitude_longitude(\"New York\")), 1), get_current_time_at_location(get_latitude_longitude(\"New York\")), get_timezone(get_latitude_longitude(\"New York\")))"}
{"input": "What are 10 days prior to today?", "Output": "subtract_time_delta(get_current_time_at_location(get_latitude_longitude(get_current_location())), 10)"}
{"input": "What's 10 years and 18 days prior to today?", "Output": "subtract_time_delta(get_current_time_at_location(get_latitude_longitude(get_current_location())), delta_days=(10*365 + 18))"}
{"input": "Paris timezone is what? Also what is London timezone?", "Output": "get_timezone(get_latitude_longitude('Paris')); get_timezone(get_latitude_longitude('London'))"}
{"input": "Get me 10 days prior to today in London?", "Output": "subtract_time_delta(get_current_time_at_location(get_latitude_longitude('London')), 10)"}
{"input": "Analyze the 45 days starting from Jan 23, 2020 in London in terms of its weather?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude('London'))), subtract_time_delta('2020-01-23', 45), '2020-01-23', get_timezone(get_latitude_longitude('London')))"}
{"input": "Do analyze the weather for the 4 days starting from Feb 23, 2020 in Paris?", "Output": "get_hourly_observation(get_nearest_station_id(find_nearby_stations(get_latitude_longitude('Paris'))), subtract_time_delta('2020-02-23', 4), '2020-02-23', get_timezone(get_latitude_longitude('Paris')))"}
{"input": "Get me stations for the greater Tokyo area?", "Output": "find_nearby_stations(get_latitude_longitude(\"Tokyo\"))"}
{"input": "What's a good code for the nearest weather code to me?", "Output": "get_nearest_station_id(find_nearby_stations(get_latitude_longitude(get_current_location())))"}
{"input": "What's a good code the station near Tokyo?", "Output": "find_nearby_stations(get_latitude_longitude('Tokyo'))"}