Tools
Delay
Adds a delay to the workflow execution
Usage Instructions
Pauses workflow execution for a specified duration. Useful for rate limiting, adding deliberate delays between actions, or controlling workflow timing.
Tools
delay
Introduces a configurable delay in workflow execution for rate limiting, timing control, or user experience purposes.
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
duration | number | Yes | Duration of the delay |
unit | string | Yes | Time unit for the delay |
message | string | No | Optional message to log during the delay |
Output
| Parameter | Type | Description |
|---|---|---|
delayedFor | number | Total delay duration in milliseconds |
delayedForHuman | string | Human-readable delay duration |
startTime | string | ISO timestamp when delay started |
endTime | string | ISO timestamp when delay ended |
message | string | Custom message logged during delay |
Notes
- Category:
tools - Type:
delay