resolve_time
Resolve natural-language date expressions into deterministic ISO timestamps. Provides UTC, local, and precision details for relative dates such as 'tomorrow' or 'next Friday'.
Instructions
Resolve a natural-language date/time expression into a deterministic ISO timestamp. Use this whenever the user mentions relative dates ('tomorrow', 'next Friday', 'in two weeks', 'the first Monday of next month'). The LLM interprets the language; this tool performs the actual temporal computation. Returns structured result with UTC, local, and precision info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Locale for date interpretation | en-US |
| timezone | No | IANA timezone for resolution, e.g. 'Europe/London' | UTC |
| expression | Yes | Natural-language temporal expression, e.g. 'tomorrow at 3pm', 'next Friday', 'in 3 weeks' | |
| reference_time | No | Reference time as ISO 8601. Defaults to now. Use when relative to a specific date. |