sharpbyte.dev
← AI agents
AI agents · topic 9 of 16

30 must-know agentic AI terms

Glossary-style tour of vocabulary you will see in papers, vendors, and codebases (PDF 236–240).

30 must-know agentic AI terms

Illustration from the AI Agents chapter of the course deck.
Illustration from the AI Agents chapter of the course deck.

The most advanced pattern, wherein, the LLM generates and executes new code independently, effectively acting as an independent AI developer. 30 Must-Know Agentic AI Terms We put together a quick visual guide to the 30 most important terms in Agentic AI, covering some of the most essential things you need to understand about how modern AI agents actually think, act, and collaborate. If you’ve been exploring agent frameworks like CrewAI, LangGraph, or AutoGen, this glossary will help you connect the dots between key building blocks.

Illustration from the AI Agents chapter of the course deck.
Illustration from the AI Agents chapter of the course deck.

Agent: An autonomous AI entity that perceives, reasons, and acts toward a goal (covered with full implementations here). Environment: The world or system in which an agent operates and interacts. Action: A response or task performed by an agent based on its reasoning or goals. Observation: The data or input an agent receives from its environment at any given moment. Goal: The desired outcome that an Agent is designed to achieve. LLMs: Large Language Models that enable agents to reason and generate natural language. Tools: APIs or utilities agents use to extend their functionality and capabilities to interact with the world.

Evaluation: The process of assessing how well an agent performs against its intended goals (covered here with implementation). Orchestration: The coordination and control of multiple agents working together to achieve complex tasks. Multi-agent system: A group of agents collaborating to accomplish a final goal (implemented from scratch in pure Python here). Human-in-the-loop: A setup where humans intervene or guide the agent’s decision-making process.

Illustration from the AI Agents chapter of the course deck.
Illustration from the AI Agents chapter of the course deck.

Reflection: The agent’s process of self-assessing its actions to improve future performance. Planning: Determining the sequence of steps an agent must take to reach its goal (implemented from scratch in pure Python here). ReAct: A framework where reasoning (thought) and acting (tool use) are combined step by step (implemented from scratch in pure Python here). Feedback loop: A continuous process of collecting outcomes, observing effects, and adjusting actions. Context window: The maximum amount of information an agent can consider at once. System prompt: The persistent background instructions or personality that define an agent’s behavior.

Few-shot learning: Teaching an agent new behaviors or tasks with just a few examples. Hierarchical Agents: A multi-level agent structure where a supervisor agent delegates tasks to sub-agents. Short-term memory: Temporary context stored during a single session or conversation. Long-term memory: Persistent context stored across multiple sessions for continuity and learning (covered in detail here with code). Knowledge base: A structured repository of information that agents can use for reasoning and decision-making (covered in detail here with code). Context engineering: The practice of shaping what information an agent sees to optimize its output (here’s a demo we covered). Guardrails: Rules or boundaries that prevent an agent from taking harmful or undesired actions (covered with code here). Tool call: An API invocation made by an agent to perform a specific task. Guidelines: Policies or constraints that keep an agent’s behavior aligned with desired outcomes.

Illustration from the AI Agents chapter of the course deck.
Illustration from the AI Agents chapter of the course deck.

ARQ: A new structured reasoning approach where an agent solves complex, domain-specific problems step by step (covered here).

Illustration from the AI Agents chapter of the course deck.
Illustration from the AI Agents chapter of the course deck.

MCP: A standardized way for agents to connect to external tools, APIs, and data sources (learn how to build MCP servers, MCP clients, JSON-RPC, Sampling, Security, Sandboxing in MCPs, and using LangGraph/LlamaIndex/CrewAI/PydanticAI with MCP here). A2A: Agent-to-Agent protocol enabling agents to communicate and exchange data directly (here’s a visual guide).

Illustration from the AI Agents chapter of the course deck.
Illustration from the AI Agents chapter of the course deck.

Key takeaways

  • Shared vocabulary reduces ambiguity when teams design agent flows.
  • Many terms describe control and state—not just the underlying LLM weights.