Quick Start
1
Sequential Pipeline
2
Parallel Execution
User Interaction Flow
Process Enum
Process Types
AgentTeam
Builder Methods
Runtime Methods
Sequential Process
Each agent runs in order, receiving the previous agent’s output as context:Parallel Process
All agents work simultaneously on the same input, results are combined:Best Practices
Use Sequential for dependent steps
Use Sequential for dependent steps
When each agent needs the previous agent’s output - research → write → edit.
Use Parallel for independent analysis
Use Parallel for independent analysis
When agents can work simultaneously - multiple perspectives, speed optimization.
Enable verbose for debugging
Enable verbose for debugging
Use
.verbose(true) to see workflow execution details.Keep teams focused
Keep teams focused
3-5 agents typically works well. Split larger workflows into multiple teams.
Related
Agent-Team
Team orchestration
Workflows
Workflow patterns

