Expand description
Multi-agent pattern builtins for the DSL
Provides convenience builtins for common multi-agent patterns:
chain, debate, map_reduce, and director.
Functions§
- builtin_
chain - Execute the
chainbuiltin: sequential execution where each step’s output feeds into the next step’s input. - builtin_
debate - Execute the
debatebuiltin: alternating two-agent critique with optional model routing and adaptive convergence. - builtin_
director - Execute the
directorbuiltin: decompose + delegate + synthesize. - builtin_
map_ reduce - Execute the
map_reducebuiltin: parallel fan-out + aggregate.