Expand description
Multi-agent orchestration pool.
Manages concurrent agent instances with message passing and fan-out/fan-in patterns. Each agent runs its own perceive-reason-act loop in a separate tokio task.
§Toyota Production System Principles
- Heijunka: Load-level work across agents
- Jidoka: Each agent has its own
LoopGuard - Muda: Bounded concurrency prevents resource waste
Structs§
- Agent
Message - Message sent between agents in the pool.
- Agent
Pool - Multi-agent orchestration pool.
- Message
Router - Routes messages between agents in a pool.
- Spawn
Config - Configuration for a spawned agent.
Type Aliases§
- AgentId
- Unique identifier for a spawned agent.
- Tool
Builder - Function that builds a
ToolRegistryfrom a manifest.