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 |
|---|---|---|
| Prompt Chaining | ReAct | Dynamic tool selection + LLM-controlled looping replaces hardcoded steps |
| Tool Use | Structured function schemas + dispatcher replaces manual output parsing | |
| Memory | Persistent state store + retrieval replaces ephemeral context | |
| Parallel Calls | RAG | Vector search retrieval replaces static parallel splits |
| Routing | LLM intent classification replaces hardcoded branch logic | |
| Orchestrator-Worker | Plan & Execute | LLM plans full sequence upfront vs. dynamic decomposition |
| Multi-Agent | Workers become autonomous agents with their own tools & memory | |
| Evaluator-Optimizer | Reflection | Evaluator becomes the LLM itself via self-critique prompting |