World’s largest virtual agentic engineering & quality conference

WHENAUG 19-21
WHEREVirtual · Global
Register Now

Free AI Agent Glossary Online

This free AI glossary lets you search plain-English definitions for AI agent, LLM, RAG, and automation terms. The tool is developed by TestMu AI (formerly LambdaTest) and is completely free to use.

Categories

...

3000+ Browsers. One Platform.

See exactly how your site performs everywhere.

Try it free
...

Write Tests in Plain English with KaneAI

Create, debug, and evolve tests using natural language.

Try for free
...
TestMu Conf 2026

World's largest virtual agentic engineering & quality conference

...

AUG 19-21, 2026

REGISTER NOW
Search terms

Type a word to filter by name or definition. Nothing you type leaves your browser.

Categories

Choose one topic filter, or keep All selected to see every matching term.

100 terms found

AI Agent

Core

Software that uses AI to take autonomous actions on behalf of a user, including planning multi-step tasks and executing workflows.

LLM

Technical

Large Language Model. A neural network trained on vast text data that can understand and generate human-like language. Examples include GPT-4, Claude, and Gemini.

RAG

Technical

Retrieval-Augmented Generation. Retrieves relevant information from a knowledge base before generating a response, grounding the AI in factual data.

MCP

Technical

Model Context Protocol. An open protocol that standardizes how AI models connect to external tools and data sources.

Prompt Engineering

Core

Designing and refining prompts to get better, more consistent outputs from AI models.

Fine-Tuning

Technical

Further training a pre-trained AI model on specific data to improve performance on a particular use case.

Workflow Automation

Workflow

Using software to execute tasks automatically based on triggers and conditions. AI agents add intelligence by handling decisions.

No-Code / Low-Code

Tools

Platforms that allow building automations using visual interfaces instead of writing code.

API

Technical

Application Programming Interface. Rules that let software applications communicate. How AI agents connect to tools and data.

Hallucination

Core

When an AI generates plausible but factually incorrect information. RAG and grounding techniques reduce this risk.

Human-in-the-Loop

Workflow

A workflow where certain decisions require human approval before the AI proceeds.

Guardrails

Core

Constraints and rules on AI agents that prevent undesired behavior by limiting what agents can do, say, or access.

Token

Technical

Basic unit of text LLMs process, roughly 4 characters. Token counts determine API costs and context limits.

Context Window

Technical

Maximum text an AI model can process at once, measured in tokens. Larger windows handle longer documents and histories.

Vector Database

Technical

Specialized database that stores data as mathematical vectors, enabling AI to search by meaning rather than keywords.

Agentic Workflow

Workflow

A workflow where AI agents make decisions and choose tools autonomously rather than following a fixed path.

Multi-Agent System

Technical

Architecture where multiple specialized AI agents collaborate, each handling a specific domain.

Automation ROI

Business

Return on investment from automation: time saved and errors reduced minus tool and setup costs.

Lead Scoring

Business

Using AI to rank potential customers by their likelihood to buy based on behavioral and firmographic signals.

Churn Prediction

Business

Using AI to identify customers likely to cancel. Agents can act on churn signals with retention workflows.

Embedding

Technical

A numeric vector that represents the meaning of text, images, or other data so models can compare similarity.

Semantic Search

Technical

Search that matches meaning instead of exact keywords, usually powered by embeddings and a vector index.

Tool Calling

Technical

Letting an LLM request structured functions such as APIs, databases, or browsers so it can take real actions.

Function Calling

Technical

Provider term for tool use where the model emits structured arguments that a host application executes.

Temperature

Technical

Sampling setting that controls randomness. Lower values are more deterministic. Higher values are more varied.

Top-p

Technical

Also called nucleus sampling. Limits next-token choices to a probability mass, shaping how creative the output can be.

System Prompt

Core

Instructions that set role, tone, and constraints for the model before the user conversation starts.

Zero-Shot

Core

Asking a model to perform a task with no examples in the prompt, relying only on the instruction.

Few-Shot

Core

Providing a small number of examples in the prompt so the model can follow the pattern.

Chain of Thought

Core

Prompting style that asks the model to reason step by step before giving a final answer.

ReAct

Workflow

Reasoning and acting loop where an agent alternates between thinking, calling tools, and observing results.

Orchestration

Workflow

Coordinating models, tools, memory, and steps so a multi-step agent workflow runs in the right order.

Subagent

Technical

A specialized agent spawned by a parent agent to handle one focused subtask and return a result.

Memory

Technical

Stored state an agent can recall across turns or sessions, such as chat history or long-term facts.

Episodic Memory

Technical

Memory of specific past interactions or events an agent can retrieve when facing a similar situation.

Grounding

Core

Any technique that anchors model output in verifiable facts, documents, or tools instead of free invention.

Knowledge Cutoff

Core

The date after which a model has no trained knowledge unless you supply newer information at runtime.

Prompt Injection

Testing

Attack where untrusted text tries to override system instructions and steer the model toward unsafe actions.

Jailbreak

Testing

Prompt pattern that attempts to bypass safety policies so the model produces restricted content.

Alignment

Core

Training and policy work that steers a model toward helpful, honest, and harmless behavior.

RLHF

Technical

Reinforcement Learning from Human Feedback. Fine-tunes a model using ranked human preferences.

LoRA

Technical

Low-Rank Adaptation. Efficient fine-tuning method that updates small adapter weights instead of the full model.

Quantization

Technical

Reducing model weight precision to shrink size and cost while keeping most of the original quality.

Distillation

Technical

Training a smaller model to imitate a larger one so inference is cheaper and faster.

Latency

Business

Time from request to first or final response. Critical for chat UX and agent step loops.

Throughput

Business

How many requests or tokens a system can process in a given time window under load.

Token Cost

Business

Price billed for prompt and completion tokens. Directly drives the cost of agent workflows.

Structured Output

Technical

Forcing the model to return JSON or another schema so downstream code can parse results reliably.

JSON Mode

Tools

API setting that asks the model to respond with valid JSON for safer parsing in applications.

Streaming

Tools

Sending tokens to the client as they are generated so users see partial answers sooner.

Chunking

Technical

Splitting documents into smaller pieces before embedding so retrieval stays precise and affordable.

Reranking

Technical

Second-pass scoring of retrieved chunks so the most relevant passages reach the model first.

Hybrid Search

Technical

Combining keyword search and vector search to catch both exact matches and semantic matches.

Agent Loop

Workflow

Repeat cycle of gather context, take action, and verify results until the goal is met or stopped.

Planner

Workflow

Component that breaks a goal into ordered steps before tools are called.

Executor

Workflow

Component that runs planned steps, calls tools, and returns observations to the agent.

Supervisor Agent

Workflow

Agent that routes work to specialist agents and merges their outputs into a final result.

Skill

Tools

Reusable instruction pack that teaches an agent how to perform a recurring task in a project.

AGENTS.md

Tools

Project file that gives coding agents repo-specific rules, conventions, and workflow guidance.

MCP Server

Tools

Process that exposes tools, resources, and prompts over the Model Context Protocol.

MCP Client

Tools

Connector inside a host app that talks to MCP servers on behalf of the model.

Sandbox

Testing

Isolated environment where agent code or tool calls run with limited network and file access.

Eval

Testing

Systematic test of model or agent quality using scored tasks, rubrics, or golden datasets.

Golden Dataset

Testing

Curated set of inputs and expected outputs used to measure regressions in agent behavior.

Regression Test

Testing

Repeatable check that a prompt, tool, or agent still passes after a model or code change.

Observability

Testing

Tracing prompts, tool calls, latency, and errors so teams can debug agent runs in production.

Trace

Testing

Record of one agent run showing steps, tool inputs, outputs, and timing for later review.

Red Teaming

Testing

Adversarial testing that probes agents for prompt injection, data leaks, and policy failures.

Autonomy Level

Business

How much an agent can decide and act without asking a person. Higher levels need stronger guardrails.

SLA for Agents

Business

Service targets for agent workflows such as response time, success rate, and human escalation windows.

Copilot

Business

AI assistant that suggests actions while a person stays in control of final decisions.

Autonomous Agent

Core

Agent designed to pursue goals with minimal supervision, choosing tools and next steps on its own.

Knowledge Base

Tools

Document store an agent can query at runtime, often through RAG, to answer with private or fresh facts.

Citation

Core

Link or reference back to the source chunk used in an answer so users can verify claims.

Fallback

Workflow

Backup path when a tool fails or confidence is low, such as retrying, asking a human, or returning a safe default.

Rate Limit

Tools

Cap on how many API calls a client can make in a period. Agents must respect it or queue work.

Idempotency

Workflow

Design so repeating the same agent action does not create duplicate side effects like double charges.

Determinism

Testing

How consistently a model returns the same answer for the same input. Useful when writing stable tests.

Flaky Agent Test

Testing

Test that passes and fails intermittently because of model randomness, timing, or external tool variance.

Prompt Template

Tools

Reusable prompt with placeholders for variables so teams keep wording consistent across runs.

Persona

Core

Role and style instructions that shape how an agent speaks and what it prioritizes.

Multimodal

Technical

Models or agents that accept more than one input type, such as text plus images or audio.

Vision Model

Technical

Model that can interpret images or screenshots, useful for UI agents and document extraction.

Speech-to-Text

Tools

Converts spoken audio into text that an agent can reason over or act on.

Text-to-Speech

Tools

Converts agent text replies into spoken audio for voice interfaces.

Browser Agent

Tools

Agent that can navigate web pages, click, type, and extract content to complete tasks.

Coding Agent

Tools

Agent specialized in reading repos, editing code, running tests, and opening pull requests.

Test Generation Agent

Testing

Agent that drafts unit, API, or UI tests from requirements, code, or recorded sessions.

Self-Healing Locator

Testing

Automation pattern that repairs broken UI selectors when the page structure changes.

Synthetic Data

Testing

Artificially generated inputs used to expand coverage when real production data is scarce or sensitive.

Canary Prompt

Testing

Fixed probe prompt run after each model update to catch sudden quality drops early.

Cost Guardrail

Business

Budget limit or stop condition that prevents an agent loop from spending unbounded tokens.

Escalation Path

Business

Defined handoff from an agent to a human when confidence is low or policy requires approval.

Vendor Lock-in

Business

Risk of depending on one model or agent platform so deeply that switching later becomes costly.

Model Router

Tools

Layer that picks which model handles a request based on cost, latency, or task type.

Context Engineering

Core

Craft of choosing what history, tools, and documents enter the prompt so the model stays focused.

Prompt Caching

Technical

Reusing a stable prompt prefix across calls to cut latency and token cost on long system instructions.

Stop Sequence

Technical

Token pattern that tells the model to end generation early, useful for structured formats.

Max Tokens

Technical

Hard cap on how many tokens a model may generate in one response.

Tool Schema

Tools

JSON description of a tool name, parameters, and types that the model must follow when calling it.

What is an AI agent glossary?

An AI agent glossary is a searchable AI glossary of agent and large language model (LLM) terms, written in plain English. You type an AI term such as RAG, MCP, hallucination, or guardrails and get a short definition for docs, reviews, and vendor calls. This TestMu AI tool keeps all 100 terms in your browser for private, fast lookups.

Agent tools add new jargon fast, and unclear terms slow down reviews. A shared glossary gives product, QA, and engineering one agreed meaning for AI terms like token, context window, eval, or human-in-the-loop before a design review starts.

Why do AI agent terms matter?

Misread terms create expensive mistakes. If you treat a chatbot like an autonomous agent, you underbuild guardrails. If you confuse grounding with RAG, you buy the wrong retrieval stack. Clear definitions keep reviews concrete.

  • Faster onboarding: New hires learn RAG, MCP, and eval language without waiting for a hallway explanation.
  • Cleaner vendor checks: You can ask what a pipeline really does when a pitch deck says multi-agent orchestration.
  • Safer releases: Shared words for prompt injection, sandbox, and red teaming keep security reviews sharp.
  • Better QA plans: Teams that agree on golden datasets and flaky agent tests write stronger regression suites.
  • Lower rework: Precise terms in tickets cut the back-and-forth that follows vague AI feature requests.

How to use the AI agent glossary?

Lookups take a few seconds. Keep the page open beside a model card, RFC, or PR and jump to any term you do not recognize.

  • Open the glossary search: Go to the AI Agent Glossary tool and focus the search field at the top of the widget.
  • Type a term or idea: Enter a keyword such as RAG, MCP, or hallucination. The list filters as you type across both term names and definitions.
  • Filter by category: Click a category chip such as Core, Technical, Business, Tools, Workflow, or Testing to narrow the list.
  • Copy the definition you need: Use Copy on a single card or Copy All Results to grab every matching term for notes, docs, or onboarding.

What can you do with the AI agent glossary?

The widget is built for quick reference during real work, not for scrolling a static blog post. Here is what you get:

  • Live search: Results update as you type across term names and full definition text.
  • Category chips: Narrow to Core, Technical, Business, Tools, Workflow, or Testing without leaving the page.
  • Copy actions: Copy one definition or every matching result for docs and onboarding notes.
  • QA-focused terms: Eval, golden dataset, prompt injection, and related testing language sit beside core LLM terms.
  • Browser-only filtering: The glossary data ships with the page. Your queries never leave the device.

When should you use the AI agent glossary?

Use the glossary whenever agent vocabulary shows up mid-task and you need a crisp meaning before you continue.

TestMu AI maintains this glossary beside its broader free online tools set, the same team behind cross-browser and real-device testing across 10,000+ real devices and 3000+ browsers. All processing happens in your browser. No data is uploaded.

Frequently Asked Questions (FAQs)

What is the difference between an AI agent and an LLM?

An LLM is the underlying model that predicts and generates text. An AI agent wraps an LLM with goals, memory, and tools so it can plan steps and take real actions. The LLM decides what to say, while the agent decides what to do and then executes it through tool calls.

What is agentic AI?

Agentic AI describes systems that pursue goals with autonomy. They plan multi-step tasks, call tools, observe the results, and adjust without a human driving each step. Unlike a single prompt-and-response model, an agentic system loops through reasoning and action until the goal is met or a guardrail stops it.

What does MCP (Model Context Protocol) mean?

MCP, the Model Context Protocol, is an open standard that defines how AI models connect to external tools and data sources. It gives agents one consistent way to reach files, APIs, and databases instead of a custom integration per tool, much like a universal port for AI applications.

What does RAG mean in AI?

RAG means Retrieval-Augmented Generation. The system first retrieves relevant documents from a knowledge base, then asks the model to answer using that context. It reduces hallucinations on private or fresh facts that were never part of the model's training data, without retraining the model itself.

What is the difference between RAG and fine-tuning?

RAG adds knowledge at query time by retrieving documents into the prompt, so facts stay current and easy to edit. Fine-tuning bakes new behavior into the model weights through extra training. Use RAG for changing facts and private data, and fine-tuning to change tone, format, or task skill.

What is an agentic workflow?

An agentic workflow is a process where an AI agent decides which steps to run and which tools to call, rather than following a fixed script. The agent reasons about the goal, acts, checks the result, and repeats. This makes it adaptable to inputs that a rigid automation cannot handle.

What is human-in-the-loop (HITL) in AI?

Human-in-the-loop means a person reviews or approves certain agent decisions before they take effect. It adds a checkpoint for high-risk actions such as sending money or deleting data. HITL keeps people accountable for outcomes while the agent handles the routine steps around each approval.

What is a context window in an LLM?

A context window is the maximum amount of text, measured in tokens, that a model can consider at once. It includes the system prompt, conversation history, retrieved documents, and the reply. When input exceeds the window, older content is dropped, so agents must manage what stays in context.

What is a token in AI?

A token is the basic unit of text a language model processes, roughly four characters or three-quarters of an English word. Models read and generate text token by token, and providers bill per token. Token counts also determine how much text fits inside a model's context window.

What is the difference between prompt injection and jailbreaking?

Prompt injection hides malicious instructions inside untrusted input, such as a web page or document, to override the system prompt. Jailbreaking crafts a prompt that talks the model past its own safety rules. Injection abuses external data an agent reads, while jailbreaking abuses the direct conversation.

What is the difference between tool calling and function calling?

Tool calling and function calling describe the same idea. An LLM returns structured arguments so the host app can run an action like an API request or database query. Function calling is the older provider term for one function, while tool calling is the newer, broader label for many tool types.

What is the difference between an AI agent and a chatbot?

A chatbot mainly generates replies in a conversation. An AI agent also plans steps, calls tools, and can change external systems to finish a task. Chatbots talk, while agents act. That is why guardrails, autonomy limits, and human approval matter far more for agent workflows than for a plain chatbot.

Does the glossary cover AI testing terms?

Yes. The Testing category covers eval, golden dataset, prompt injection, red teaming, flaky agent test, and related QA language. That focus helps teams ship agents with the same discipline they use for software quality, and it pairs with TestMu AI's own testing and observability tooling.

Is my glossary search private?

Yes. Filtering runs entirely in your browser with a local list of 100 terms. Nothing you type is sent to a server, stored in cookies, or used to train a model. Close the tab and your search is gone, which makes the tool safe for confidential project or feature names.

Did you find this page helpful?

TestMu AI forEnterprise

Get access to solutions built on Enterprise
grade security, privacy, & compliance

  • Advanced access controls
  • Advanced data retention rules
  • Advanced Local Testing
  • Premium Support options
  • Early access to beta features
  • Private Slack Channel
  • Unlimited Manual Accessibility DevTools Tests