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.
|
|
1 day ago | |
|---|---|---|
| .. | ||
| README.md | 1 day ago | |
| concurrent_workflow.py | 3 months ago | |
| sequential_wofkflow.py | 4 months ago | |
| sequential_worflow_test.py | 3 months ago | |
| sequential_workflow.py | 6 months ago | |
| sequential_workflow_example.py | 3 months ago | |
| sonnet_4_5_sequential.py | 4 weeks ago | |
README.md
Sequential Workflow Examples
This directory contains examples demonstrating sequential workflow patterns for multi-agent systems.
Examples
- concurrent_workflow.py - Concurrent workflow patterns
- sequential_wofkflow.py - Sequential workflow (typo in filename)
- sequential_worflow_test.py - Sequential workflow testing
- sequential_workflow_example.py - Complete sequential workflow example
- sequential_workflow.py - Core sequential workflow implementation
- 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.