Agentic Blueprints 40
Filtersactive

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.

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.

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

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.

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.

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

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