Workflow → Agent Evolution
Every agent pattern evolves from a workflow. When conditional logic becomes too complex to hardcode, the LLM takes over flow control.
Workflow
Agent Pattern
Hover to highlight · Click for details
| Workflow | Evolves Into | What Gets Added |
|---|---|---|
| Evaluator-Optimizer | Reflection | Evaluator becomes the LLM itself via self-critique prompting |
| Orchestrator-Worker | Multi-Agent | — |
| Plan & Execute | — | |
| Parallel Calls | RAG | Vector search retrieval replaces static parallel splits |
| Routing | LLM intent classification replaces hardcoded branch logic | |
| Prompt Chaining | ReAct | Dynamic tool selection + LLM-controlled looping replaces hardcoded steps |
| Saga | — |