mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-07-01 05:08:12 +00:00
Lets a definition loop over an array without writing Python. Each
iteration exposes `item` and prior steps `outputs`.
```yaml
do:
call: each
in: state.rows
do:
- normalize:
call: tool
ref: my_tools:NormalizeRowTool
with: { row: "${ item }" }
- lead_scoring:
call: agent
# ...
```