get_forecast
Retrieve accurate weather forecasts for any US location by providing latitude and longitude. Use this tool to access detailed weather data and stay informed.
Instructions
Get weather forecast for a location.
Args:
latitude: Latitude of the location
longitude: Longitude of the location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | ||
longitude | Yes |
Input Schema (JSON Schema)
{
"properties": {
"latitude": {
"title": "Latitude",
"type": "number"
},
"longitude": {
"title": "Longitude",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"title": "get_forecastArguments",
"type": "object"
}