World’s largest virtual agentic engineering & quality conference

WHENAUG 19-21
WHEREVirtual · Global
Register Now

Free AI Agent Glossary Online - TestMu AI (Formerly LambdaTest)

This free tool allows you to search plain-English definitions for AI agent, LLM, RAG, and automation terms.

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 reference that explains agent and large language model vocabulary in plain English. You type a term such as RAG, MCP, hallucination, or guardrails and get a short definition you can use in docs, reviews, and vendor calls. This TestMu AI tool keeps the full list in your browser so lookups stay private and fast.

Agent products ship new jargon every quarter. Teams lose time arguing over names instead of architecture. A shared glossary fixes that. Product, QA, and engineering can point to the same meaning for token, context window, eval, or human-in-the-loop before a design review starts.

Why 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 results to grab every matching term for notes, docs, or onboarding.

Features of 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.

Use cases of the AI agent glossary

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

  • PR and design reviews: Align on words like subagent, tool schema, and context window before debating implementation.
  • QA planning: Map eval and regression language before you write suites, then generate cases with the User Story Generator.
  • Prompt drafting: Confirm terms while you draft requests in the AI Code Generator or Excel Formula Generator.
  • Docs and READMEs: Paste accurate definitions into project guides alongside the README Generator.
  • Schema and API work: Keep structured-output vocabulary straight when you use the JSON to Zod converter or schedule jobs with the Crontab Generator.

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 an AI agent glossary?

An AI agent glossary is a searchable reference of plain-English definitions for agent and LLM terms. You look up words like RAG, MCP, token, and guardrails without reading a full textbook. This free TestMu AI tool keeps every definition in your browser.

How do I search the AI agent glossary?

Type into the search box. Matches cover both the term name and the definition text, so a query like vector surfaces embeddings and semantic search too. Category chips further narrow Core, Technical, Business, Tools, Workflow, or Testing entries.

Is my search query uploaded anywhere?

No. Filtering runs entirely in your browser with a local term list. Nothing you type is sent to a server, stored in cookies, or used to train a model. Close the tab and the query is gone.

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

A chatbot mainly generates replies in conversation. An AI agent also plans steps, calls tools, and can change external systems. Chatbots talk. Agents act, which is why guardrails and human approval matter more for agent workflows.

What does RAG mean in AI?

RAG means Retrieval-Augmented Generation. The system fetches relevant documents first, then asks the model to answer using that context. It reduces hallucinations on private or fresh facts that were never in the model weights.

Who should use this glossary?

Product managers, QA engineers, developers, founders, and operators who keep hitting terms like MCP, LoRA, or human-in-the-loop in docs and vendor decks. It is built for quick lookups while you build or review agent systems.

Does the glossary cover testing terms?

Yes. The Testing category includes eval, golden dataset, prompt injection, red teaming, flaky agent tests, and related QA language. That focus helps teams ship agents with the same discipline they already use for software quality.

Is the AI agent glossary free?

Yes. The tool is free with no signup, no usage cap, and no paywall on definitions. Search, filter, and copy as often as you need. TestMu AI maintains it as part of the free online tools collection.

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