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
WorkflowEvolves IntoWhat Gets Added
Prompt ChainingReActDynamic tool selection + LLM-controlled looping replaces hardcoded steps
Tool UseStructured function schemas + dispatcher replaces manual output parsing
MemoryPersistent state store + retrieval replaces ephemeral context
Parallel CallsRAGVector search retrieval replaces static parallel splits
RoutingLLM intent classification replaces hardcoded branch logic
Orchestrator-WorkerPlan & ExecuteLLM plans full sequence upfront vs. dynamic decomposition
Multi-AgentWorkers become autonomous agents with their own tools & memory
Evaluator-OptimizerReflectionEvaluator becomes the LLM itself via self-critique prompting