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.
swarms/playground/weatherman_agent/datasets/weatherman_agent_LLM_prompt...

4.1 KiB

1promptgoalrequired inputsapi example
2What is the current temperature?Allow the user to request the current temperature for their locationUser's locationrequest_metar_nearest("38", "-96")
3Describe the current weather.Have the LLM construct a narrative weather description based on current conditionsUser's locationrequest_metar_nearest("38", "-96")
4How much rain fell at my location?Allow the user to determine how much rain has accumulated at their location in the last 24 hoursUser's locationpoint_query('precip-totalaccum-24hr', 'Standard-Mercator', -86.6, 34.4)
5Is it going to be sunny tomorrow?Allow the user to determine cloud coverage for their locationUser's locationrequest_ndfd_basic(34.730301, -86.586098, forecast_time)
6Is rain expected at my location in the next 6 hours?Allow the user to determine if precipitation will fall in the coming hoursUser's locationpoint_query('baron-hires-maxreflectivity-dbz-all', 'Mask1-Mercator', -86.6, 34.4)
7What is the max forecasted temperature today?Allow the user to determine how hot or cold the air temp will beUser's locationrequest_ndfd_basic(34.730301, -86.586098, forecast_time)
8Will it be windy today?Allow the user to determine the max wind speed for that dayUser's locationpoint_query('baron-hires-windspeed-mph-10meter', 'Standard-Mercator', -86.6, 34.4)
9What 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 locationUser's locationdate range
10What is the likelihood of frost tonight?Are forecast conditions right for frostLocationdate
11What time will be the hottest part of the day tomorrow?Determine highest forecast heat index tomorrowLocationtomorrow's date
12How will the weather impact my flight today?Check against conditions commonly associated with flight delaysLocation/time of departure at airport
13Are there any flood warnings in my area?Check against current watch/warning mapLocation
14What's the highest temperature in United States right now?Determine the highest current temperature in the USSearch all METARs in CONUShttps://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
15What's the lowest temperature in United States right now?Determine the lowest current temperature in the USSearch all METARs in CONUShttps://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
16What's the highest temperature in the world right now?Determine the highest current temperature in the worldSearch all METARshttps://api.velocityweather.com/v1/V4BRIfHvCw7P/reports/metar/all.json?page=1&ts=1716776520&sig=LOC_xB0tt3qtoqmL8iy6wtguLXI=
17What's the lowest temperature in the world right now?Determine the lowest current temperature in the worldSearch all METARshttps://api.velocityweather.com/v1/V4BRIfHvCw7P/reports/metar/all.json?page=1&ts=1716776520&sig=LOC_xB0tt3qtoqmL8iy6wtguLXI=