get_current_datetime
Retrieve the current date and time in a specified IANA timezone, defaulting to UTC if no timezone is provided. Ideal for synchronizing timestamps in weather data retrieval processes.
Instructions
Get current time in specified timezone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timezone_name | Yes | IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use UTC timezone if no timezone provided by the user. |
Input Schema (JSON Schema)
{
"properties": {
"timezone_name": {
"description": "IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use UTC timezone if no timezone provided by the user.",
"title": "Timezone Name",
"type": "string"
}
},
"required": [
"timezone_name"
],
"title": "get_current_datetimeArguments",
"type": "object"
}