Skip to content

Commit 4b9181f

Browse files
committed
Update README.md
1 parent b7ea655 commit 4b9181f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,14 @@ Complete documentation is available at [docs.workflowai.com/python-sdk](https://
236236

237237
For advanced workflow patterns and examples, please refer to the [Workflows README](examples/workflows/README.md) for more details.
238238

239+
- [chain.py](./examples/workflows/chain.py): Sequential processing where tasks execute in a fixed sequence, ideal for linear processes.
240+
- [routing.py](./examples/workflows/routing.py): Directs work based on intermediate results to specialized agents, adapting behavior based on context.
241+
- [parallel_processing.py](./examples/workflows/parallel_processing.py): Splits work into independent subtasks that run concurrently for faster processing.
242+
- [orchestrator_worker.py](./examples/workflows/orchestrator_worker.py): An orchestrator plans work, and multiple worker agents execute parts in parallel.
243+
- [evaluator_optimizer.py](./examples/workflows/evaluator_optimizer.py): Employs an iterative feedback loop to evaluate and refine output quality.
244+
- [chain_of_agents.py](./examples/workflows/chain_of_agents.py): Processes long documents sequentially across multiple agents, passing findings along the chain.
245+
- [agent_delegation.py](./examples/workflows/agent_delegation.py): Enables dynamic workflows where one agent invokes other agents through tools based on the task.
246+
239247
## Contributing
240248

241249
See the [CONTRIBUTING.md](./CONTRIBUTING.md) file for more details. Thank you!

0 commit comments

Comments
 (0)