get_current_weather
Retrieve current weather conditions including temperature and weather description for any city by providing the city name in English.
Instructions
Get current weather information for a specified city. It extracts the current hour's temperature and weather code, maps the weather code to a human-readable description, and returns a formatted summary.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | The name of the city to fetch weather information for, PLEASE NOTE English name only, if the parameter city isn't English please translate to English before invoking this function. |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "The name of the city to fetch weather information for, PLEASE NOTE English name only, if the parameter city isn't English please translate to English before invoking this function.",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}