Skip to main content

YAML Composer

Build an entire multi-agent setup from a single YAML file.

Minimal example

Named models

Extra keys on a model config are forwarded directly to the LangChain model constructor.

Tools

Agent types

  • llm — LlmAgent
  • react — ReActAgent
  • sequential — SequentialAgent (runs agents in order)
  • parallel — ParallelAgent (runs agents concurrently)
  • loop — LoopAgent (repeats until exit_loop or max_iterations)
  • a2a — A2AAgent (remote agent via A2A protocol)

Multi-agent with transfer

Sequential pipeline

Runner and Server