You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4.1 KiB
4.1 KiB
1 | prompt | goal | required inputs | api example |
---|---|---|---|---|
2 | What is the current temperature? | Allow the user to request the current temperature for their location | User's location | request_metar_nearest("38", "-96") |
3 | Describe the current weather. | Have the LLM construct a narrative weather description based on current conditions | User's location | request_metar_nearest("38", "-96") |
4 | How much rain fell at my location? | Allow the user to determine how much rain has accumulated at their location in the last 24 hours | User's location | point_query('precip-totalaccum-24hr', 'Standard-Mercator', -86.6, 34.4) |
5 | Is it going to be sunny tomorrow? | Allow the user to determine cloud coverage for their location | User's location | request_ndfd_basic(34.730301, -86.586098, forecast_time) |
6 | Is rain expected at my location in the next 6 hours? | Allow the user to determine if precipitation will fall in the coming hours | User's location | point_query('baron-hires-maxreflectivity-dbz-all', 'Mask1-Mercator', -86.6, 34.4) |
7 | What is the max forecasted temperature today? | Allow the user to determine how hot or cold the air temp will be | User's location | request_ndfd_basic(34.730301, -86.586098, forecast_time) |
8 | Will it be windy today? | Allow the user to determine the max wind speed for that day | User's location | point_query('baron-hires-windspeed-mph-10meter', 'Standard-Mercator', -86.6, 34.4) |
9 | What dates did hail fall at my location during x time range? | Allow the user to request a list of dates at which hail fell at their location | User's location | date range |
10 | What is the likelihood of frost tonight? | Are forecast conditions right for frost | Location | date |
11 | What time will be the hottest part of the day tomorrow? | Determine highest forecast heat index tomorrow | Location | tomorrow's date |
12 | How will the weather impact my flight today? | Check against conditions commonly associated with flight delays | Location/time of departure at airport | |
13 | Are there any flood warnings in my area? | Check against current watch/warning map | Location | |
14 | What's the highest temperature in United States right now? | Determine the highest current temperature in the US | Search all METARs in CONUS | https://api.velocityweather.com/v1/V4BRIfHvCw7P/reports/metar/region.json?page=1&ts=1716776160&sig=TV6DX0DD3GrrGlSQV9Ia16c7xzs=&n_lat=52&s_lat=20&w_lon=-131&e_lon=-53 |
15 | What's the lowest temperature in United States right now? | Determine the lowest current temperature in the US | Search all METARs in CONUS | https://api.velocityweather.com/v1/V4BRIfHvCw7P/reports/metar/region.json?page=1&ts=1716776160&sig=TV6DX0DD3GrrGlSQV9Ia16c7xzs=&n_lat=52&s_lat=20&w_lon=-131&e_lon=-53 |
16 | What's the highest temperature in the world right now? | Determine the highest current temperature in the world | Search all METARs | https://api.velocityweather.com/v1/V4BRIfHvCw7P/reports/metar/all.json?page=1&ts=1716776520&sig=LOC_xB0tt3qtoqmL8iy6wtguLXI= |
17 | What's the lowest temperature in the world right now? | Determine the lowest current temperature in the world | Search all METARs | https://api.velocityweather.com/v1/V4BRIfHvCw7P/reports/metar/all.json?page=1&ts=1716776520&sig=LOC_xB0tt3qtoqmL8iy6wtguLXI= |