Agentic Blueprints 94
Filtersactive

Self-RAG
Retrieval with self-reflection at every step: grade the documents, check the answer for hallucination, and loop until it's grounded.

Multi-Agent Collaboration
A researcher agent and a chart-generator agent divide a task and route work between themselves until the answer is a finished chart.

LLMCompiler
A planner streams a DAG of tasks, workers execute them in parallel as dependencies clear, and a joiner decides to finish or replan.

ReWOO
Reasoning without observation: a planner writes the full tool plan up front with variable substitution, workers fill it in, a solver answers.

LATS (Language Agent Tree Search)
Monte-Carlo tree search over agent actions: generate candidates, reflect and score them, expand the best branches until one solves the task.

Reflection (LangGraph tutorial)
The essay-writing reflection loop: a generator drafts, a reflector critiques as a teacher grading, and the loop repeats a fixed number of rounds.

Reflexion
An answerer that critiques itself with citations: draft, self-review for missing and superfluous content, search to fill gaps, revise.

Swarm Personal Shopper
A personal-shopping team over a real user and product database: triage into sales or refunds, with orders and refunds as function tools.

Plan-and-Execute (LangGraph tutorial)
The original plan-and-execute notebook: a planner writes the step list, an executor works through it, and a replanner revises as results come in.

WebVoyager
A vision-enabled browser agent that looks at annotated screenshots and decides where to click, scroll, and type until the task is done.

SQL Agent
An agent that explores a database's schema, writes a query, double-checks it with a dedicated checker step, and recovers from execution errors.

Adaptive RAG
Routes each question to the right retrieval strategy, grades what comes back, and falls back to web search when the index can't answer.

Chatbot Simulation Evaluation
A simulated-user agent plays the customer against your chatbot so you can evaluate the whole conversation before real users do.

Corrective RAG
Grades retrieved documents for relevance and, when they fail the grade, falls back to web search before answering.

Swarm Support Bot
A two-agent support bot: a user-interface agent talks to the customer while a help-center agent answers from docs in a vector store.

Code Assistant with Self-Correction
Generates code grounded in docs, executes it, and loops on the errors — reflecting on failures before retrying until tests pass.

USACO Competitive Programming Agent
Solves olympiad programming problems with episodic retrieval of similar solved problems plus a reflect-and-retry execution loop.

Info-Gathering Chatbot
A chatbot that keeps asking until it has every requirement, then switches modes and generates the deliverable from what it gathered.

Airline Customer Support Bot
A primary assistant hands off to specialized sub-assistants for flights, hotels, cars, and excursions, with user confirmation before writes.

Hierarchical Agent Teams
A supervisor of supervisors: a top-level orchestrator directs a research team and a document-writing team, each with its own internal supervisor.

Self-Discover
The agent first composes its own reasoning structure from atomic modules, then solves the task by following the structure it built.

Swarm Customer Service Streaming
A streaming customer-service pipeline from the Swarm repo, packaged with docker-compose and tests — the deployment-shaped example.