get_current_time
Retrieve the current time in a specified format (24-hour, 12-hour, or custom) with optional seconds, ensuring accurate time-sensitive content creation.
Instructions
Get only the current time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format: '24h' (HH:MM:SS), '12h' (hh:MM:SS AM/PM), or custom format | 24h |
include_seconds | No | Include seconds in the output |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "24h",
"description": "Output format: '24h' (HH:MM:SS), '12h' (hh:MM:SS AM/PM), or custom format",
"type": "string"
},
"include_seconds": {
"default": true,
"description": "Include seconds in the output",
"type": "boolean"
}
},
"type": "object"
}