cai/docs/multi_agent.md

37 lines
3.2 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Orchestrating multiple agents
Orchestration refers to the flow of agents in your app. Which agents run, in what order, and how do they decide what happens next? There are two main ways to orchestrate agents:
1. Allowing the LLM to make decisions: this uses the intelligence of an LLM to plan, reason, and decide on what steps to take based on that.
2. Orchestrating via code: determining the flow of agents via your code.
You can mix and match these patterns. Each has their own tradeoffs, described below.
We have a number of examples in examples/cai/agent_patterns.
#### ◉ Orchestrating via LLM
An agent is an LLM equipped with instructions, tools and handoffs. This means that given an open-ended task, the LLM can autonomously plan how it will tackle the task, using [tools](tools.md) to take actions and acquire data, and using [handoffs](handoffs.md) to delegate tasks to sub-agents.
You could also use an agent as a tool. The agents operates independently on its provided input —without access to prior conversation history or "taking over" the conversation - completes its specific task, and returns the result to the calling (parent) agent.
#### ◉ Orchestrating via code
While orchestrating via LLM is powerful, orchestrating via code makes tasks more deterministic and predictable, in terms of speed, cost and performance. Common patterns here are:
- Using structured outputs to generate well formed data that you can inspect with your code.
- Using a determinitstic pattern: Breaking down a task into a series of smaller steps. Chaining multiple agents, each step can be performed by an agent, and the output of one agent is used as input to the next.
- Using [Guardrails](guardrails.md) and LLM_as_judge: They are agents that evaluates and provides feedback, until they says the inputs/outputs passes certain criteria. The agent ensures inputs/outputs are appropriate.
- Paralelization of task: Running multiple agents in parallel. This is useful for speed when you have multiple tasks that don't depend on each other.
### CLI: `orchestration_agent` vs `selection_agent`
In the CAI REPL, **`CAI_AGENT_TYPE`** defaults to **`orchestration_agent`**: a single entry agent that can stay in control while spawning **specialist workers** via tools (`run_specialist`, `run_dual_approach_contest`, `run_parallel_specialists`). Worker subprocesses each get their own `Runner` turn budget from **`CAI_ORCHESTRATION_WORKER_MAX_TURNS`** (132, default 6). Optionally, **`CAI_ORCHESTRATION_MAS_HINT`** (default `true`) adds at most one synthetic English user-line per top-level run when the user message looks multi-front but delegation stayed on a single specialist—so the model can consider parallel scouts or a contest.
**`selection_agent`** is an alternative entry profile: **handoffs only** to other agents, without those orchestration tools. Use **`/agent list`** / **`/agent select`** or **`/help agent`** for the live list and short routing notes; long-form env help: **`/help var CAI_AGENT_TYPE`**, **`/help var CAI_ORCHESTRATION_WORKER_MAX_TURNS`**, **`/help var CAI_ORCHESTRATION_MAS_HINT`**.
This is separate from **`/parallel`** (multiple REPL slots with **`CAI_PARALLEL`**), which runs independent agent instances side by side.