{
"type": "function",
"function": {
"name": "get_weather",
"description": "获取指定城市的实时天气信息。",
"parameters": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "城市名称,如 北京、上海。"
}
},
"required": [
"city"
]
},
"strict": false
}
}