get_weather_forecast
Retrieve weather forecasts for a specific location and date range using Malaysia's open API data. Input location details and optional start/end dates to access accurate forecasts.
Instructions
Retrieve a weather forecast for a specific location within a given date range.
Args:
location_name: The name or identifier of the location for which the forecast is retrieved.
date_start: The earliest date (inclusive) to begin retrieving the weather forecast. If omitted, defaults to the current date.
date_end: The latest date (inclusive) to stop retrieving the weather forecast. If omitted, defaults to the current date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_end | No | ||
date_start | No | ||
location_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date_end": {
"default": null,
"title": "Date End",
"type": "string"
},
"date_start": {
"default": null,
"title": "Date Start",
"type": "string"
},
"location_name": {
"title": "Location Name",
"type": "string"
}
},
"required": [
"location_name"
],
"title": "get_weather_forecastArguments",
"type": "object"
}