wait
Pause execution for a specified duration (0-300 seconds) to synchronize tasks, ensuring dependent processes complete before proceeding. Ideal for task orchestration and workflow management.
Instructions
Wait for a specified number of seconds, useful for waiting for other tasks to finish
Input Schema
Name | Required | Description | Default |
---|---|---|---|
seconds | Yes | The number of seconds to wait (0-300) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"seconds": {
"description": "The number of seconds to wait (0-300)",
"maximum": 300,
"minimum": 0,
"type": "number"
}
},
"required": [
"seconds"
],
"type": "object"
}