Advanced AI Agents #planner-executor #reflection #memory #RAG

Agentic Design Patterns

5 exercises — master the vocabulary of advanced agent architectures: planner-executor separation, reflection loops, three-tier memory, RAG, and event-driven proactive agents.

0 / 5 completed
Agentic patterns vocabulary quick reference
  • Planner-executor — planner creates a multi-step plan; executor carries out each step
  • Reflection loop — agent evaluates its own output and iteratively revises it
  • Critique agent — a specialist agent whose role is to evaluate another agent's output
  • In-context memory — current conversation window (limited by context size)
  • Episodic memory — stored past interactions, retrieved by user/session ID
  • Semantic memory — factual knowledge stored in a vector database
  • RAG — Retrieval-Augmented Generation: retrieve docs → inject into prompt → generate grounded output
  • Event-driven agent — triggers autonomously based on external events or schedules
1 / 5

What is the "planner-executor" agentic pattern?