query_weather
Retrieve real-time weather forecasts for cities, regions, and counties across China by providing the location name. Enables accurate weather updates for specific areas.
Instructions
根据城市、地区、区县名称查询当地实时天气预报情况
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | 查询的城市名称,如北京、上海、广州、深圳、泰顺等;城市或区县或地区名使用简写,严格按照规范填写,否则会导致查询失败 |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "查询的城市名称,如北京、上海、广州、深圳、泰顺等;城市或区县或地区名使用简写,严格按照规范填写,否则会导致查询失败",
"title": "City",
"type": "string"
}
},
"required": [
"city"
],
"title": "query_weatherArguments",
"type": "object"
}