Skip to content

AI Vocabulary for SAs

📝 Context

The glossary you wish you'd had in your first AI deal. Each term gets a plain definition and, where it helps, a "say it like this" line for a non-technical stakeholder. It's organized by the four-layer map so you can see where each piece lives.

How to use this page: you don't read a glossary front to back — you Ctrl+F it before a call. The terms most likely to come up in a live deal are in L1 and L4; if you only skim two sections, skim those.

🎯 L1 · LLM Apps & Agents

TermPlain definitionSay it like this
TokenThe unit a model reads and bills in — ~¾ of a word on average (illustrative)."Think of it as a syllable the AI is charged by."
Context windowThe text the model can "see" in one request; its only working memory."However much it can hold in its head at once."
PromptThe full input you send — instructions plus any context.
Prompt engineeringWording the input to get reliable output."Asking the question the right way."
Context engineeringDeciding what information to put in the window, and in what order — the bigger lever than wording."Giving it the right briefing before it answers."
RAGRetrieval-Augmented Generation: search your documents, paste the relevant bits into the prompt, then answer from them."It reads your docs before it answers, so it's grounded — not guessing."
ChunkingSplitting documents into passages so you can retrieve the relevant ones, not whole files."Cutting the manual into searchable pieces."
EmbeddingA list of numbers representing a text's meaning; similar meanings sit near each other."It turns text into coordinates so we can find things by meaning, not keywords."
RerankingA second, more careful pass that re-scores retrieved passages before the model reads them."Double-checking the search results before the AI uses them."
HallucinationConfident, fluent output that isn't grounded in fact."When the most natural-sounding answer happens not to be true."
AgentAn LLM given tools and a goal, allowed to take steps and decide what to do next."It doesn't just answer — it can take actions to get the job done."
OrchestrationCoordinating the steps/agents/tools in a workflow."The conductor that decides what runs when."
MCPModel Context Protocol — an open standard for giving one agent access to tools and data."A universal plug for connecting the AI to your systems."
A2AAgent-to-Agent — an open protocol for multiple agents coordinating with each other."How the AIs talk to each other when one isn't enough."
EvalA repeatable test of output quality — the thing that separates production from a demo."Our scorecard for whether it's actually good enough."
LLM-as-judgeUsing a model to grade another model's output against criteria."Having one AI grade the other's homework, on rules we set."

🎯 L2 · LLMOps & Inference Infra

TermPlain definitionSay it like this
InferenceRunning a trained model to get an answer (as opposed to training it)."The AI actually answering — the part you pay for per use."
ServingThe infrastructure that runs a model and answers requests at scale."The engine room that keeps it responding fast."
vLLM / SGLangThe standard high-throughput engines for serving open models in production."The proven way to run an open model efficiently."
QuantizationShrinking a model's numbers to lower precision so it needs less memory and runs cheaper, with modest quality cost."Compressing the model so it runs on cheaper hardware."
Vector DBA database that stores embeddings and finds nearest matches fast — the retrieval engine behind RAG."Where the searchable meaning of your docs lives."
GatewayA single front door for model calls — routing, rate limits, logging, guardrails in one place."One controlled doorway for every AI call we make."
Observability / tracingLogging inputs, outputs, latency, and cost through a pipeline so you can see what happened."The flight recorder — so when something's off, we know where."
LatencyTime to get an answer back."How long the user waits."
Token costWhat you pay per million tokens in/out — the main variable cost of an LLM app."The metered bill for using the AI."

🎯 L3 · Classic MLOps & Data

TermPlain definitionSay it like this
Fine-tuningFurther-training a model on your data to shift its style or behavior — not a reliable way to teach it new facts."Teaching it your house style — not stuffing it with your facts."
MLOpsThe discipline of shipping and operating ML reliably: versioning, registries, CI/CD, monitoring."DevOps, but for models."
LLMOpsMLOps extended for LLMs — prompts become versioned, tested, A/B'd artifacts."The same operational rigor, applied to prompts and models."
Feature storeA central, versioned source of model inputs that kills training-vs-serving skew."One source of truth for what the model sees."
Model registryThe catalog tracing every deployed model back to the run that produced it."The paper trail for what's running and why."
DriftWhen live data or model behavior shifts away from what you tested."The world changed and the model didn't — so quality quietly slips."

🎯 L4 · AI Architecture & Governance

TermPlain definitionSay it like this
Build-vs-buyDeciding what to build yourself vs. buy. Rule of thumb: never build the model layer; hybrid dominates."Buy the foundation, build what's actually yours."
GuardrailsRuntime checks that filter unsafe or off-policy input/output, best enforced at the gateway."The safety rails — what it's not allowed to say or do."
GroundingConstraining answers to supplied sources, with citations and "I don't know" when absent."It only answers from your approved material, with receipts."
NIST AI RMFA voluntary US risk-management framework, with a GenAI profile covering risk categories."A recognized checklist for managing AI risk."
EU AI ActEU law setting obligations by risk tier, with high-risk requirements phasing in through 2026 and beyond."The EU's legal rulebook for AI, tiered by how risky the use is."
ISO/IEC 42001A certifiable management-system standard — auditable evidence of AI governance."The certification that proves we govern AI properly."

🗣️ Talk Track

Say it like this — "is our data training their model?"

"With the setup we're proposing, your documents stay in your environment. When you ask a question, only the relevant snippet plus your question go to the model to generate an answer — and with an enterprise agreement that data isn't used for training. I'll get you the specific data-handling terms in writing so legal can sign off on the exact wording, not my paraphrase."

⚠️ Gotchas

  • The "say it like this" lines trade precision for clarity on purpose — don't paste them into a contract; point to official terms for data-handling and compliance claims.
  • Numbers marked illustrative vary by provider and workload — re-verify before quoting.
  • This glossary stays vendor-neutral by design; specific tool choices live elsewhere (see Links).