query_weather
Retrieve real-time weather data for a specific city using AMap's location services.
Instructions
The weather service of Amap. Query the weather of a given city.
Args:
city (str): The city to query the weather.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"title": "City",
"type": "string"
}
},
"required": [
"city"
],
"title": "query_weatherArguments",
"type": "object"
}