get_timestamp
Convert a specified date and time into a precise timestamp using the format YYYY-MM-DD HH:mm:ss.SSS. Ideal for applications requiring accurate time-based calculations in LLM workflows.
Instructions
Get the timestamp for the time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
time | No | The time to get the timestamp. Format: YYYY-MM-DD HH:mm:ss.SSS |
Input Schema (JSON Schema)
{
"properties": {
"time": {
"description": "The time to get the timestamp. Format: YYYY-MM-DD HH:mm:ss.SSS",
"type": "string"
}
},
"type": "object"
}