iterate_loop
Execute a single iteration of a named loop with optional rhythm application to process input data within structured workflows.
Instructions
Execute one iteration of a loop with rhythm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apply_rhythm | No | Apply the loop's rhythm pattern | |
input | Yes | Input for this iteration | |
loop_name | Yes | Name of the loop to iterate |
Input Schema (JSON Schema)
{
"properties": {
"apply_rhythm": {
"default": true,
"description": "Apply the loop's rhythm pattern",
"type": "boolean"
},
"input": {
"description": "Input for this iteration",
"type": "string"
},
"loop_name": {
"description": "Name of the loop to iterate",
"type": "string"
}
},
"required": [
"loop_name",
"input"
],
"type": "object"
}