sleep
Pause task execution for a specified duration to control workflow timing. Introduces timed delays for managing sequences in automation, ensuring tasks proceed as planned after waiting periods.
Instructions
If you need to wait for a few seconds to continue with the task you are performing .
Input Schema
Name | Required | Description | Default |
---|---|---|---|
seconds | Yes | seconds it will take me to tell you to continue. |
Input Schema (JSON Schema)
{
"properties": {
"seconds": {
"description": "seconds it will take me to tell you to continue.",
"maximum": 60,
"minimum": 0,
"type": "number"
}
},
"required": [
"seconds"
],
"type": "object"
}