relative_time
Calculate the relative time from a specified date and time using the format YYYY-MM-DD HH:mm:ss. Enhance time awareness in applications with precise relative time calculations.
Instructions
Get the relative time from now.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
time | Yes | The time to get the relative time from now. Format: YYYY-MM-DD HH:mm:ss |
Input Schema (JSON Schema)
{
"properties": {
"time": {
"description": "The time to get the relative time from now. Format: YYYY-MM-DD HH:mm:ss",
"type": "string"
}
},
"required": [
"time"
],
"type": "object"
}