File size: 966 Bytes
6639f75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
{
"name": "get_weather_forecast",
"description": "Get detailed weather forecast for a location with specific parameters",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or coordinates"
},
"days": {
"type": "integer",
"description": "Number of forecast days (1-7)",
"minimum": 1,
"maximum": 7
},
"units": {
"type": "string",
"enum": ["metric", "imperial", "kelvin"],
"description": "Temperature units"
},
"include_hourly": {
"type": "boolean",
"description": "Include hourly breakdown"
}
},
"required": ["location", "days"]
},
"test_questions": [
"What's the 3-day weather forecast for San Francisco in Celsius?",
"Give me tomorrow's weather for London with hourly details",
"Show 5-day forecast for Tokyo in imperial units"
]
} |