wait
Introduces a timed pause into workflows by waiting for a specified number of seconds, ensuring asynchronous operations complete before proceeding to the next step.
Instructions
Waits for a specified duration in seconds.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration_seconds | Yes |
Input Schema (JSON Schema)
{
"properties": {
"duration_seconds": {
"_def": {
"checks": [
{
"inclusive": false,
"kind": "min",
"value": 0
}
],
"coerce": true,
"description": "The number of seconds to wait",
"typeName": "ZodNumber"
},
"~standard": {
"vendor": "zod",
"version": 1
}
}
},
"required": [
"duration_seconds"
],
"type": "object"
}