Reference

Prompt Engineering Glossary

Every term you need, with working example prompts and practical notes on when each technique earns its keep.

10 terms  in Agentic

Agentic

Agent Handoff

Transferring control (and the relevant context) from one agent to another mid-workflow -- so each segment of a task runs on the agent best equipped for it.

Agentic

Agentic Workflow

A system where one or more LLMs plan, act, and adapt autonomously over multiple steps -- versus a single-turn Q&A where the model just responds.

Agentic

Agent Memory

Persisted context an agent can recall across turns, sessions, or tasks -- beyond what fits in a single prompt's context window.

Agentic

Context Engineering

The practice of deciding what goes into an LLM's context window, in what order, and in what form -- so the model has exactly the signal it needs and none of the noise.

Agentic

LLM-as-Judge

Using an LLM to evaluate or score the output of another LLM (or the same one) against criteria -- automating quality control without human review in the loop.

Agentic

Multi-Agent System

A system where two or more specialized LLM agents interact -- via a shared workspace, message passing, or tool output -- to solve a task together.

Agentic

ReAct Pattern

A prompting pattern where the model alternates between reasoning ("Thought"), acting ("Action" = tool call), and observing ("Observation" = tool result), looping until a final answer.

Agentic

Reflection (Self-Critique)

A pattern where the model reviews its own output against the task, identifies flaws, and produces an improved revision -- in the same prompt or a follow-up call.

Agentic

Supervisor-Worker Pattern

An agentic architecture where one high-capability model (supervisor) plans and decomposes, delegating narrow sub-tasks to smaller/cheaper models (workers) that execute.

Agentic

Tool Use

Giving a model the ability to call external functions (APIs, databases, code execution) during generation, with the model deciding when and how to invoke them.