Skip to main content

Route Mode

In Route mode, the team selects the single best agent for the user’s input. Unlike Coordinate (which can invoke multiple agents), Route sends the task to exactly one member.

How It Works

1

User sends input

The user’s message goes to the team.
2

Router selects one agent

The routing model picks the single best member based on input and member descriptions.
3

Selected agent executes

Only the chosen agent processes the task.
4

Response returned

The team returns that agent’s output.

Example: Specialist Agents


When to Use Route

Specialist routing

Each agent is an expert in a distinct domain.

Single-response

You want one clear answer, not a merged result.

Cost efficiency

Only one agent runs per request.

Support triage

Route tickets to the right department.

Route vs Coordinate

AspectRouteCoordinate
Agents invokedExactly oneOne or more
Use case”Pick the best expert""Orchestrate a pipeline”
OutputSingle agent’s responseCombined/sequenced output
Use Route when the task fits one agent. Use Coordinate when the task needs multiple agents in sequence (e.g., research → write → review).