Skip to main content

Workflow Agents

Multi-agent orchestration patterns for complex task pipelines: Sequential, Parallel, and Router agents.

Sequential Agent

Run agents in order where each agent’s output feeds into the next:

Parallel Agent

Run multiple agents simultaneously for independent tasks:

Router Agent

Intelligently route tasks to the best-suited specialist:

When to Use Each Pattern

Combine patterns for complex workflows. For example, use a Router to select a pipeline, which then runs a Sequential or Parallel agent.