Skip to main content
Use a timer node to set a delay between actions in your agentic workflow. To configure a timer node, call the timer() method in your agentic workflow. This method accepts the following input arguments:
string
required
Unique identifier for the node.
integer
required
Timer delay in milliseconds.
string
Display name for the node.
string
Description of the node.
DataMap
Define input mappings using a structured collection of Assignment objects.
The following example shows how to add a timer node to a loop:
Python