1. Home
  2. Glossary
  3. Multi-agent system
AI glossary · Agents & automation

Multi-agent system

Multi-agent system: A multi-agent system is an AI setup in which several agents, each with its own role, instructions, and tools, work together on a task, usually with one agent coordinating the others. It splits complex jobs into pieces the way a team would.

A single AI agent is a model in a loop: it plans, calls tools, checks results, and repeats until the job is done. A multi-agent system runs several of those loops and lets them hand work to each other. A common shape is an orchestrator that breaks a request into subtasks and assigns them to specialists: one searches, one drafts, one checks the draft against the sources, one formats the result.

There are practical reasons to split the work. Each agent gets focused instructions and only the tools it needs, which improves reliability and limits the damage if one goes wrong. Subtasks can run in parallel. Each agent keeps its own context, so a long research job does not clog a single window with every page it read. Frameworks such as LangGraph, CrewAI, Microsoft's AutoGen, and the OpenAI Agents SDK exist to wire these systems together, and several coding assistants now spawn subagents on their own.

The costs are real too. Every extra agent multiplies token spend and latency. Errors compound: a researcher agent that misreads a source feeds a confident wrong fact to the writer. Handoffs are where things get lost, and debugging a conversation among five agents is harder than debugging one. Many products marketed as multi-agent are one model with several prompts, which is fine, but it is not magic. Start with a single agent, split only for a clear reason, log everything, and keep a human approval step before anything irreversible.

Example at work

A consulting analyst sets up a due-diligence workflow: one agent pulls a target company's filings and news, a second extracts financial figures into a table, a third writes a one-page summary, and a fourth compares every number in the summary to the table and flags mismatches. She reviews the flags before the memo goes to the partner.

Why it matters

Multi-agent systems are how AI moves from answering questions to completing multi-step work. Knowing how they are built helps you judge vendor claims and design workflows where the checks are as strong as the automation.

Related terms