You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/examples/multi_agent/sequential_workflow/README.md

18 lines
947 B

# Sequential Workflow Examples
This directory contains examples demonstrating sequential workflow patterns for multi-agent systems.
## Examples
- [concurrent_workflow.py](concurrent_workflow.py) - Concurrent workflow patterns
- [sequential_wofkflow.py](sequential_wofkflow.py) - Sequential workflow (typo in filename)
- [sequential_worflow_test.py](sequential_worflow_test.py) - Sequential workflow testing
- [sequential_workflow_example.py](sequential_workflow_example.py) - Complete sequential workflow example
- [sequential_workflow.py](sequential_workflow.py) - Core sequential workflow implementation
- [sonnet_4_5_sequential.py](sonnet_4_5_sequential.py) - Sequential workflow with Sonnet 4.5
## Overview
Sequential workflows execute agents in a specific order, where each agent's output becomes the next agent's input. This pattern is useful for pipelines, multi-stage processing, and workflows with clear dependencies between steps.