Zum Inhalt springen
Agent Hub
Back to glossary
architecture

Multi-agent

Multi-agent refers to an architecture where several specialized AI agents collaborate — a router decides who takes over, and they hand off tasks cleanly.

In detail

Instead of one 'mega-agent' meant to do everything, we build small, focused agents. Benefits:

  • Higher per-agent quality (smaller context, clearer persona)
  • Easier to test (each agent in isolation)
  • Independently optimizable (support agent can run a different model than sales)
  • Clean escalation to humans

We usually run: router agent (detects intent) → specialized agents (support, sales, ops) → tools.

Example

User writes 'Considering Pro, but also where's my last invoice?' — router detects: sales agent first (Pro), then ops agent (invoice). Both respond coordinated in one message.

Related terms