This AI glossary for product managers explains 250 terms in plain English, grouped into seven sections, from how models work to product and career terms. Every entry gives a short definition plus a line on why it matters to a PM, with a real product example. Short on time? Start with the 25 terms tagged interview favorite. LLM, token, context window, hallucination and RAG lead that list.
Key takeaways
- You don't need all 250 on day one. The 25 interview favorites cover most of what screening calls and first rounds test.
- Learn the terms that get confused in pairs: RAG and fine-tuning, precision and recall, workflows and agents.
- You know a term when you can say which product decision it changes. Reciting the definition isn't enough.
- Put the exact vocabulary from job descriptions on your resume, but only where a project backs it up.
What an AI glossary for product managers should do
AI product conversations run on shorthand. In one standup you might hear that the eval set regressed, the context window is full, top-k is too high and the agent needs an approval gate. A PM who nods along without understanding makes bad calls on scope, cost and risk, and it shows in interviews within minutes.
Most AI glossaries online copy dictionary definitions. They tell you what an embedding is and stop there. A product manager needs a second sentence: what the term changes about the product, the plan or the conversation with engineering. So every entry below has two parts. The definition says what the term means in plain English. The Why it matters line says what a PM should do with it, usually with a product example. Where this site has a full guide on the topic, the entry links to it.
- Models and how AI works: LLMs, tokens, context windows, training and inference.
- Prompts and LLM behavior: prompt and context engineering, temperature, hallucination.
- Data, retrieval and RAG: embeddings, vector databases, chunking, fine-tuning.
- Agents and system design: tool use, MCP, human oversight, latency and cost.
- Evals and product metrics: eval sets, LLM-as-judge, precision and recall, plus the North Star.
- Responsible AI and risk: bias, guardrails, prompt injection and the EU AI Act.
- Product and career terms: PRDs, prioritization, pricing and moats, plus interview frameworks.
Pick your order by target role. For an applied AI PM role, the most common kind, go deep on prompts, RAG and evals. For a core AI PM role at a model company, spend longer on models and data. Everyone needs the safety and metrics sections, because those come up in every AI PM loop. If you're not sure which role fits, the guide to the 5 types of AI Product Managers sorts that out first.
The definitions follow the glossary and the 22 skill chapters of my book, checked against Google's machine learning glossary and the original research papers for technical terms. Those sources are linked inside the entries and listed at the end of this page.
The 25 AI terms product managers get asked about most
If you learn nothing else this week, learn these. They're the words that turn up again and again in AI PM job descriptions, screening calls and product sense rounds. The right column shows the kind of question that tests each one. Click any term to jump to its full entry.
| Term | What it means | The kind of question that tests it |
|---|---|---|
| Large language model (LLM) | Predicts likely text, one token at a time | Explain how an LLM works to a non-technical executive. |
| Token | The unit LLMs read, write and bill by | Why would summarizing long PDFs cost more than a chatbot reply? |
| Context window | How much the model can read in one request | Our assistant forgets instructions in long chats. What is going on? |
| Prompt engineering | Writing instructions that get better outputs | How would you improve this output without changing the model? |
| Context engineering | Designing everything the model sees | What information would the model need to answer this ticket well? |
| Temperature | The randomness dial on model output | Which temperature fits a contract clause extractor, and why? |
| Hallucination | A confident answer that is wrong or made up | How would you cut hallucinations in a support bot? |
| Embedding | Meaning turned into numbers you can compare | How does search find a document that shares no words with the query? |
| Vector database | Storage and search for embeddings | What would you need to search thousands of help articles by meaning? |
| RAG (retrieval-augmented generation) | Retrieve sources first, then answer from them | When would you pick RAG over fine-tuning? |
| Fine-tuning | Extra training to change model behavior | When is fine-tuning worth the cost and effort? |
| AI agent | A system that plans, uses tools and acts | Which actions should this agent take without approval? |
| Tool use (function calling) | The model calling APIs to get things done | How would you stop an agent from sending an email it shouldn’t? |
| Human-in-the-loop (HITL) | A person reviews before the AI acts | Where would you put a human review step in this workflow? |
| Evals (evaluations) | Structured tests of AI output quality | How would you know the new model is better before launch? |
| LLM-as-judge | A model grading another model | Can you trust one LLM to grade another? |
| Precision | When it says yes, how often it’s right | For a fraud detector, would you favor precision or recall? |
| Recall | How many real cases it catches | What does a missed case cost the business here? |
| Latency | How long users wait for a response | Users say the assistant feels slow. Where do you look first? |
| Inference cost | What you pay every time the model runs | The feature is popular but losing money. What levers do you have? |
| North Star Metric | The one metric that tracks real user value | What North Star would you set for an AI writing assistant? |
| Guardrails | Checks that block unsafe or wrong behavior | What must this feature never do, and how would you enforce it? |
| Bias (in AI) | Systematic unfairness across groups | How would you check that a resume screener is fair? |
| Prompt injection | Hidden text that hijacks the model | What is the security risk of an agent that reads your inbox? |
| Trade-off | Gaining one quality by giving up another | Would you ship the slower, more accurate model or the faster one? |
Notice the pattern in the questions. None of them ask for a definition. They ask for a decision: which setting, which trade-off, which safeguard. That's how interviewers check that you understand a term instead of just recognizing it. Our list of 50 AI PM interview questions shows full answer structures for many of them.
AI terms for product managers: models and how AI works
These are the words engineers use when they talk about the model itself: what it is, how it learned, and why it behaves the way it does. You don't need the math behind any of them. You need enough to follow the conversation and ask the question that changes the decision.
- Artificial intelligence (AI)
Software that performs tasks we usually link with human judgment, like understanding language, recognizing images, making predictions or generating content.
Why it matters: In a job description, “AI” can mean anything from a spam filter to an autonomous agent. Ask which kind of AI the team ships before you judge the role.
- Machine learning (ML)
A branch of AI where systems learn patterns from data instead of following rules someone wrote by hand for every case.
Why it matters: If the logic could be written as clear rules, you may not need ML at all. A PM's first question is whether the problem really needs learning from data.
- Deep learning
A type of machine learning that uses neural networks with many layers to learn patterns from large amounts of data. LLMs, image recognition and speech recognition all run on deep learning.
Why it matters: You rarely need the math. You do need to know that deep models want lots of data and compute, and that they are hard to explain.
- Neural network
A model made of layers of connected numerical units that adjust their connections during training until the outputs match the examples.
Why it matters: When an engineer says the network “learned” something, it means the weights changed to fit the data. It does not mean the system understands your users.
- Model
The trained set of learned parameters that turns an input into an output, such as a prompt into an answer or a transaction into a fraud score.
Why it matters: Your product is not the model. The model is one component, and the prompt, data, interface and safeguards around it decide whether users get value.
- Parameters (weights)
The numbers inside a model that get adjusted during training. Model size is usually quoted in parameters, such as 8 billion or 70 billion.
Why it matters: More parameters often means better quality but higher cost and latency. Bigger is a trade-off, not a free upgrade.
- Training
The process of showing a model many examples so it adjusts its parameters to make better predictions.
Why it matters: Most product teams never train a model from scratch. They pick a trained model and adapt it with prompts, retrieval or fine-tuning.
- Pre-training
The first and most expensive stage of building an LLM, where the model learns language by predicting the next token across huge amounts of text.
Why it matters: Pre-training is why a model knows general facts and writing styles. It's also why it knows nothing about your company's private data.
- Post-training
The stages after pre-training that turn a raw model into a helpful assistant, such as instruction tuning and reinforcement learning from human feedback.
Why it matters: Post-training decides tone and refusals, and how well the model follows instructions. Two models with similar pre-training can feel very different to users because of it.
- Inference
Running an input through a trained model to get an output. Every chatbot reply, classification or generated summary is one inference call.
Why it matters: Inference is where your ongoing costs live. Training is a one-time bill for the model maker, but you pay for inference every time a user clicks.
- Foundation model
A large model trained on broad data that can be adapted for many different tasks. Large language models and multimodal models are common examples.
Why it matters: Most AI features in 2026 start on a foundation model from a provider. The product work is in adapting it to one job and proving it does that job well.
- Large language model (LLM) Interview favorite
A neural network trained on huge amounts of text to understand and generate language by predicting tokens. Chatbots, writing assistants and coding assistants are built on LLMs.
Why it matters: An LLM predicts likely text. It does not look up the truth. That single fact explains hallucinations, why grounding matters, and why every LLM feature needs evals.
- Small language model (SLM)
A smaller language model, often a few billion parameters, built to run cheaply, quickly or on a device.
Why it matters: For narrow tasks like tagging tickets or pulling fields from a form, a small model can match a large one at a fraction of the cost.
- Frontier model
The most capable models available at a given time from the leading AI labs.
Why it matters: Frontier models are the right place to prototype. They are not always the right place to scale, because their price per call is the highest.
- Reasoning model
An LLM trained to work through a problem in intermediate steps before answering, which improves results on math, code, planning and other multi-step questions.
Why it matters: Reasoning costs time and tokens. Use it where a wrong answer is expensive, not for a quick autocomplete.
- Multimodal model
A model that can take in or produce more than one type of data, such as text plus images, audio or video.
Why it matters: Multimodal opens product ideas like photo-based insurance claims or voice support, but each new input type needs its own evaluation.
- Generative AI
AI systems that create new content, such as text, code, images, audio, video, summaries or structured outputs.
Why it matters: Generative features produce new output every time, so you can't test them like a button. You test them with evals and by reviewing samples.
- Transformer
The neural network architecture behind almost every modern LLM, introduced in the 2017 research paper Attention Is All You Need.
Why it matters: You won't design one. Knowing the name lets you follow engineering conversations and see that most LLMs share the same basic design.
- Attention
The mechanism inside a transformer that lets the model weigh which earlier tokens matter most when producing the next one.
Why it matters: Attention is why models handle long, messy inputs well. It's also why very long prompts cost more and can bury important details in the middle.
- Token Interview favorite
The basic unit of text an LLM reads and writes. A token can be a word, part of a word or a punctuation mark. In English, one token averages roughly three quarters of a word.
Why it matters: Providers price and limit usage by tokens. Token counts drive your cost per request, your latency and how much text fits in one call.
- Tokenizer
The component that splits text into tokens before the model sees it. Different models use different tokenizers.
Why it matters: The same sentence can cost more tokens in one language than another. If you launch outside English, check token counts for your target languages.
- Context window Interview favorite
The maximum number of tokens a model can consider in one request. It counts the instructions, the user's message, retrieved documents, conversation history and the answer itself.
Why it matters: The window decides how much a feature can read at once. Filling it isn't free: longer context costs more, runs slower and can dilute attention on what matters.
- Knowledge cutoff
The date after which a model has no information from its training data.
Why it matters: If users ask about recent events, prices or policies, a model alone will answer from stale knowledge. Retrieval or live tools fix that.
- Next-token prediction
The core task an LLM performs: given the text so far, predict the most likely next token, then repeat.
Why it matters: Every behavior you see, from summaries to code, comes from this one loop. That's why the model sounds fluent even when it's wrong.
- Deterministic vs probabilistic systems
A deterministic system gives the same output for the same input every time. A probabilistic system, like an LLM, can give different outputs for the same input.
Why it matters: This is the biggest mindset shift from classic PM work. You stop specifying exact behavior and start defining acceptable ranges of behavior.
Go deeper: AI PM vs PM: what changes- Open-weight model
A model whose trained weights are published so anyone can download it and run it on their own servers, such as Meta's Llama family.
Why it matters: Open weights give you control over data, cost and customization. In return, your team takes on the hosting and scaling, plus the safety work.
- Closed model
A model you can only use through the provider's API or app. The weights stay private.
Why it matters: Closed models are fast to start with and often the most capable, but you depend on the provider for pricing and policy, and you inherit every version change.
- Model provider
A company that offers models through an API, such as OpenAI, Anthropic, Google or Mistral.
Why it matters: Provider choice is a product decision. It affects quality, cost, data terms, uptime and which regions you can serve.
- Model version (snapshot)
A fixed release of a model with a specific name or date, so its behavior doesn't change underneath you. Providers retire old versions on a published schedule.
Why it matters: Pin a version in production. When the provider ships a new one or retires yours, rerun your evals before you switch, because gains in one area can bring regressions in another.
- Benchmark
A public, standardized test used to compare models, such as a set of math problems or coding tasks.
Why it matters: Benchmarks tell you how models compare in general. They don't tell you how a model performs on your users' tasks. Only your own evals do that.
- Model card
A document that describes a model's intended uses, training data, known limitations and evaluation results.
Why it matters: Read the model card before you pick a model for a sensitive use case. It often lists the exact limitations your risk review will ask about.
- Distillation
Training a smaller model to copy the behavior of a larger one, so you keep much of the quality at lower cost and latency.
Why it matters: Distillation is a common path once a feature is proven: prototype on a big model, then move high-volume traffic to a cheaper distilled one.
- Quantization
Storing a model's weights with less numerical precision so it runs faster and uses less memory, with some loss in quality.
Why it matters: Quantization is how models fit on phones and laptops. Ask engineering what quality drop it causes on your own eval set.
- Mixture of experts (MoE)
A model design where only part of the network, a few “experts,” activates for each token, so a very large model can run at the cost of a smaller one.
Why it matters: You care about MoE only through its effects: better quality per dollar. It's a common reason one model is cheaper than another at similar quality.
- Diffusion model
A generative model that creates images, audio or video by starting from random noise and refining it step by step.
Why it matters: Image and video features run on diffusion models. Their failure modes differ from text: wrong hands, garbled lettering inside images and style drift between shots.
- Computer vision
The field of AI that interprets images and video, such as detecting objects, reading text in photos or spotting product defects.
Why it matters: Vision features live or die on real image quality. Test with the blurry, badly lit photos real users take, not the clean demo set.
- Natural language processing (NLP)
The field of AI that works with human language, covering tasks like translation or summarization. LLMs now handle most NLP tasks that once needed separate models.
Why it matters: If a team runs an old NLP pipeline, ask whether one LLM call could replace several models. Sometimes it can, and sometimes the old model is cheaper and good enough.
- Speech recognition (ASR)
Automatic speech recognition turns spoken audio into text. It powers voice assistants, meeting transcripts and call analytics. Its partner, text-to-speech, turns text back into audio.
Why it matters: Transcription errors flow downstream. If your meeting summarizer is wrong, check whether the transcript was wrong first.
- Supervised learning
A type of machine learning where a model is trained on labeled examples, such as emails labeled as spam or not spam.
Why it matters: Supervised models need labeled data, and labels cost money and time. The labeling plan often decides the project timeline.
- Reinforcement learning
Training where a model learns by trying actions and receiving rewards or penalties, instead of copying labeled answers.
Why it matters: Reinforcement learning is behind game-playing systems and much of the post-training that makes chat models helpful. You'll mostly meet it through RLHF.
- Classification
A task where a model assigns an input to a category, such as spam or not spam, urgent or routine.
Why it matters: Classification features need a decision about which mistake is worse. That choice drives your precision and recall targets.
- Regression
A task where a model predicts a number, such as delivery time or next month's demand.
Why it matters: Agree on how wrong is acceptable. Predicting delivery in 30 minutes when it takes 45 might be fine for food and a failure for medicine.
- Clustering
Grouping similar items together without predefined labels, such as sorting support tickets into themes. It's the most common form of unsupervised learning.
Why it matters: Clustering is the engine behind many feedback analysis tools. The PM's job is naming the clusters and deciding which ones matter.
- Overfitting
When a model learns its training examples too closely, including their noise, and performs worse on new data.
Why it matters: The product version of overfitting is tuning a prompt until it aces your ten test cases and fails on the eleventh. Keep a held-out test set.
Prompt engineering and LLM behavior terms
Prompts are where product intent turns into model behavior, which is why this group matters so much for PMs. Many of these words describe settings you can change in an afternoon. A few describe failure modes you'll spend months managing.
- Prompt
The input you give an LLM: instructions, a question, examples and any context it needs to respond.
Why it matters: In a product, most of the prompt is written by your team, not the user. It's product logic in plain language, so it deserves review like any spec.
- System prompt
Instructions set by the product team that sit above every user message and define the assistant's role, rules, tone and limits.
Why it matters: The system prompt is where much of an AI feature's behavior gets specified. PMs should read it, suggest changes and track its versions.
- Prompt engineering Interview favorite
Writing instructions, examples, constraints and context so an LLM produces better outputs.
Why it matters: In 2026, prompt engineering is table stakes for AI PMs. Prototyping a prompt yourself is the fastest way to learn what a model can and can't do before you write the PRD.
Go deeper: 101 ChatGPT and Claude prompts for PMs- Context engineering Interview favorite
Designing the full information environment around an LLM: system instructions, user prompts, retrieved documents, memory, tool outputs and product rules.
Why it matters: Most quality problems in shipped AI features are context problems. The model didn't get the right document, the right history or the right rules. This is where PMs and engineers fix them together.
- Zero-shot prompting
Asking a model to do a task with instructions only, no examples.
Why it matters: Start here when prototyping. If zero-shot is good enough, you save tokens and complexity.
- Few-shot prompting
Including a few worked examples of input and ideal output in the prompt so the model copies the pattern.
Why it matters: Few-shot examples are the quickest way to fix format and tone. Pick examples from real user inputs, including awkward ones.
- In-context learning
A model's ability to pick up a task from instructions and examples inside the prompt, without any retraining.
Why it matters: This is why you can ship an AI feature in weeks without training anything. The catch is that every example costs tokens on every call.
- Chain-of-thought prompting
A prompting approach that asks a model to reason step by step before reaching an answer, first described in a 2022 Google research paper.
Why it matters: Step-by-step reasoning improves hard tasks but adds tokens and delay. Decide whether users should see the reasoning or only the answer, because not every reasoning trace belongs in the interface.
- Role prompting
Telling the model to act as a specific role, such as a senior support agent or a strict code reviewer.
Why it matters: Roles shape tone and focus, but they don't add knowledge. A model told it's a lawyer still doesn't know your contract.
- Prompt template
A reusable prompt with fixed instructions and placeholders that get filled with each user's data at runtime.
Why it matters: Templates are what actually ship. Review them like code, because a small wording change can shift every response.
- Prompt chaining
Splitting a task into several model calls where each output feeds the next, such as extract, then summarize, then draft a reply.
Why it matters: Chains are easier to debug than one giant prompt, because you can see which step failed. Each extra step adds latency and cost.
- Structured output
Model output forced into a fixed format, such as JSON with defined fields, so software can read it reliably.
Why it matters: If another system consumes the output, require structured output. Free text breaks integrations in ways demos never show.
- Temperature Interview favorite
A setting that controls randomness in a model's output. Low temperature gives focused, repeatable answers. High temperature gives more varied, creative ones.
Why it matters: Use low temperature for extraction and factual answers, and higher temperature for brainstorming or copy variations. Interviewers like asking which setting fits which feature.
- Top-p (nucleus sampling)
A sampling setting that limits the model to the smallest set of likely next tokens whose combined probability reaches p, such as 0.9.
Why it matters: Top-p and temperature both tune randomness. Teams usually adjust one and leave the other at its default.
- Max tokens
A cap on how many tokens the model may generate in one response.
Why it matters: Set it to protect cost and latency, but not so low that answers get cut off mid-sentence. Truncated answers look like bugs to users.
- Hallucination Interview favorite
When an AI system generates an answer that sounds confident but is wrong, unsupported or made up. A support bot inventing a refund policy that doesn't exist is the classic case.
Why it matters: Hallucination is the top trust risk in most LLM products. The PM chooses the defenses: retrieval, citations, refusing when evidence is missing, and evals that measure how often it still happens.
- Grounding
Tying a model's answer to specific source material, such as retrieved documents or database records, instead of its general memory.
Why it matters: Grounded answers can be checked. Make “answer only from these sources” a product requirement for any feature that states facts.
- Citations (source attribution)
Links or references in an AI answer that show which source supports each claim.
Why it matters: Citations let users verify answers and let your team audit them. Test that the cited passage actually supports the claim, because models can cite the wrong source.
- Sycophancy
A model's tendency to agree with the user or tell them what they want to hear, even when it's wrong.
Why it matters: Sycophancy hurts products that give feedback, advice or reviews. Include test cases where the user is confidently wrong.
- Refusal
When a model declines to answer or act, usually because of safety rules or missing information.
Why it matters: Over-refusing and under-refusing are both product bugs. Track the refusal rate and read samples of refused requests.
- Instruction following
How reliably a model does what the prompt asks, including format, length and constraints.
Why it matters: When a model ignores a rule in your prompt, test other models before you blame the wording. Instruction following varies a lot between models.
- Prompt versioning
Tracking each change to a production prompt with a version number, an author and the eval results.
Why it matters: Prompts change behavior as much as code does. Without versions, you can't explain why quality dropped last Tuesday.
- Prompt library
A shared, organized collection of tested prompts that a team or company reuses.
Why it matters: For internal AI adoption, a prompt library is often the first useful artifact. For products, it becomes the home for your templates.
Go deeper: Start from 101 PM prompts- Conversation history
The earlier messages in a chat that get sent back to the model with each new turn so it keeps context.
Why it matters: Long histories raise cost and can confuse the model. Decide how much history to keep, and when to summarize it.
- AI memory
Information an assistant stores across sessions, such as user preferences or past projects, and brings back into later conversations.
Why it matters: Memory makes assistants feel personal, but it raises privacy questions. Users need to see, edit and delete what the product remembers.
- Lost in the middle
The tendency of LLMs to use information at the start and end of a long context better than information buried in the middle.
Why it matters: If a key rule or document sits in the middle of a huge prompt, it may get ignored. Put critical instructions where the model attends best, then test it.
- Streaming
Sending the model's output to the user token by token as it's generated, instead of waiting for the full answer.
Why it matters: Streaming makes a slow answer feel fast. It's one of the cheapest perceived speed wins in any chat feature.
- Thinking tokens (reasoning effort)
Tokens a reasoning model spends working through a problem before its final answer. Many APIs let you set how much reasoning effort to allow.
Why it matters: Thinking tokens are usually billed like output tokens. Raise the effort only on requests where accuracy pays for the extra cost and wait.
- Input tokens vs output tokens
Input tokens are what you send to the model. Output tokens are what it generates. Providers usually charge more per output token.
Why it matters: Cost estimates must split the two. A feature that reads long documents and writes short answers has a very different bill from one that writes long reports.
- Multi-turn conversation
An exchange with several back-and-forth messages, as opposed to one prompt and one answer.
Why it matters: Multi-turn quality is harder to test. Build eval cases that span several turns, including users who change their minds halfway.
Data, retrieval and RAG terms
Most AI quality problems start with data, not with the model. This group covers the data a model learns from, the documents it retrieves at answer time, and the ways teams adapt a model to their own domain. If you're targeting an applied AI PM role, spend extra time here, because RAG sits behind most company assistants.
- Training data
The examples a model learns from during training.
Why it matters: Gaps in training data become gaps in product quality. If a model rarely saw your users' language, dialect or domain, expect weaker answers there.
- Labeled data
Examples paired with the correct answer, such as emails tagged spam or not spam.
Why it matters: Labeled data is often the scarcest asset in an ML project. Budget for it early.
- Data labeling (annotation)
The work of adding correct answers or tags to raw data, done by people, tools or other models.
Why it matters: Write labeling guidelines the way you'd write a spec. Vague guidelines produce inconsistent labels and a model that learns the inconsistency.
- Ground truth
The verified correct answer for an example, used to train or evaluate a model.
Why it matters: Your eval results are only as good as your ground truth. When experts disagree on the right answer, fix the definition before you blame the model.
- Synthetic data
Data generated by models or simulations instead of collected from real users.
Why it matters: Synthetic data fills gaps fast, especially for rare edge cases, but it inherits the blind spots of whatever generated it. Mix in real examples.
- Data quality
How accurate, complete, current and consistent your data is.
Why it matters: Duplicate, outdated or contradictory documents will surface in answers. When quality drops, audit the data before you swap the model.
- Data pipeline
The automated steps that collect, clean, transform and deliver data to a model or product.
Why it matters: When an AI feature breaks overnight with no code change, check the pipeline. Upstream data changes are a common silent cause.
- SQL (Structured Query Language)
The standard language used to query, filter, join and analyze data stored in databases.
Why it matters: AI PMs use SQL to answer their own questions: how many users tried the feature, where they dropped off, which segments got worse answers. Interviewers still test it.
- Data drift
A change over time in the inputs a model sees compared with what it was built and tested on.
Why it matters: Users change, products change and seasons change. Monitor input patterns so you catch drift before the quality complaints do.
- Concept drift
When the relationship between inputs and the right answer changes, such as what counts as fraud after criminals change tactics.
Why it matters: Concept drift means yesterday's good model gives today's wrong answers. It's a reason AI features need an owner after launch.
- Feature (in machine learning)
An input variable a traditional ML model uses to make predictions, such as account age or number of past orders.
Why it matters: Not the same as a product feature. When a data scientist says “feature,” check which meaning they intend.
- Embedding Interview favorite
A list of numbers that represents the meaning of text, images or other data in a form computers can compare. Similar meanings get similar embeddings.
Why it matters: Embeddings power semantic search and recommendations, and they catch duplicate content. If retrieval returns the wrong documents, the embedding choice is one of the first suspects.
- Vector
A list of numbers that represents something, such as the embedding of a sentence. Similar meanings produce vectors that sit close together.
Why it matters: You'll hear “vectorize the docs.” It means converting them into embeddings so they can be searched by meaning.
- Vector database Interview favorite
A database built to store embeddings and search them quickly for the most similar items.
Why it matters: A vector database is infrastructure, not a feature. The product questions are what goes into it, how fresh it stays and who is allowed to retrieve what.
- Semantic search
Search that matches meaning instead of exact words, so “cancel my plan” can find an article titled “ending your subscription.”
Why it matters: Semantic search fixes vocabulary mismatch between users and your docs. It can miss exact terms like product codes, which is why hybrid search exists.
- Keyword search (BM25)
Classic search that ranks documents by matching the exact words in a query. BM25 is the most common ranking formula.
Why it matters: Don't throw it away. For names, IDs and error codes, keyword search often beats embeddings.
- Hybrid search
Combining keyword search and semantic search, then merging the two sets of results.
Why it matters: Hybrid is the default in most production RAG systems because it handles both exact terms and fuzzy questions.
- RAG (retrieval-augmented generation) Interview favorite
A pattern where an AI system retrieves relevant information from a knowledge base before generating an answer, so the response is grounded in specific documents instead of model memory alone. The pattern was named in a 2020 research paper.
Why it matters: RAG sits behind most company chatbots and knowledge assistants. It keeps answers current without retraining, and it makes answers traceable to sources.
Go deeper: RAG for Product Managers- Knowledge base
The collection of documents or records an AI system is allowed to retrieve from, such as help articles, policies or product docs.
Why it matters: Content ownership is a PM problem. If nobody owns the knowledge base, the assistant will confidently repeat outdated policies.
- Document ingestion
Loading documents into a retrieval system: extracting the text, cleaning it, splitting it and indexing it.
Why it matters: PDFs with tables, scanned pages and slide decks often break ingestion. Test your ugliest documents first.
- Chunking
Splitting documents into smaller passages before embedding them, so retrieval can return the relevant part instead of a whole file.
Why it matters: Chunk size shapes answer quality. Chunks that are too small lose context. Chunks that are too large waste tokens and bury the answer.
- Indexing
Organizing embedded chunks and their metadata so they can be searched quickly.
Why it matters: Ask how often the index refreshes. A policy updated today but indexed next week will produce wrong answers all week.
- Retrieval
The step where a system finds the most relevant passages for a query before the model answers.
Why it matters: In RAG, retrieval quality caps answer quality. Evaluate retrieval separately from generation so you know which half failed.
- Top-k
The number of passages retrieval returns to the model, such as the top 5 most similar chunks.
Why it matters: More isn't always better. A higher k raises cost and can add noise that distracts the model.
- Reranking
A second pass that reorders retrieved passages with a more precise model before the best ones go to the LLM.
Why it matters: Reranking is a common fix when the right document is retrieved but ranked too low to be used.
- Metadata filtering
Narrowing retrieval using fields like date, region, product or document type.
Why it matters: Filters stop a UK customer from getting the US refund policy. Plan metadata at the same time you plan content.
- Permission-aware retrieval
Retrieval that only returns documents the current user is allowed to see.
Why it matters: Skip this and your internal assistant can leak salary sheets to anyone who asks. It's a launch blocker for enterprise AI.
- Query rewriting
Having a model rephrase or expand the user's question before retrieval so it finds better matches.
Why it matters: Users write short, vague questions. Rewriting often improves retrieval more than changing the embedding model does.
- Knowledge graph
A structured map of entities and the relationships between them, such as customers, products and orders.
Why it matters: Graphs help when questions depend on relationships, like which enterprise accounts use a feature you plan to retire.
- GraphRAG
A RAG approach that retrieves from a knowledge graph, or builds one from documents, to answer questions that span many connected facts.
Why it matters: Worth considering when plain RAG fails on “summarize everything about X” questions. It costs more to build and maintain.
- Data freshness
How current the data behind an AI answer is.
Why it matters: Show freshness when it matters, like “prices as of this morning.” Stale data presented confidently destroys trust.
- Fine-tuning Interview favorite
Continuing the training of a pre-trained model on more specific data so it performs better on a narrower task, domain, style or behavior.
Why it matters: Fine-tune to change behavior, style or format on a narrow task. Use RAG to add knowledge that changes often. Mixing these two up is a classic interview mistake.
- LoRA (low-rank adaptation)
A cheap fine-tuning method that trains a small set of extra weights instead of the whole model, described in a 2021 paper from Microsoft researchers.
Why it matters: LoRA is why fine-tuning is affordable for product teams. It also lets one base model serve several customized versions.
- Instruction tuning
Fine-tuning a model on examples of instructions paired with good responses so it follows requests instead of just continuing text.
Why it matters: This is why modern chat models answer questions rather than rambling on. You benefit from it without ever doing it yourself.
- RLHF (reinforcement learning from human feedback)
A training method where people rank model outputs and the model learns to prefer the higher-ranked kind. OpenAI's InstructGPT paper made it standard for chat models.
Why it matters: RLHF shapes helpfulness and tone. It also helps explain why models sometimes sound agreeable even when they're unsure.
- Cold start
The problem of making good predictions for new users, items or products that have little or no data yet.
Why it matters: Recommendation and personalization features need a cold start plan, such as asking for preferences at signup or showing popular defaults.
- Data flywheel
A loop where product usage creates data that improves the model, which improves the product, which attracts more usage.
Why it matters: Everyone claims a flywheel. Interviewers will ask what data you'd capture, how it gets labeled and how it actually reaches the model.
- Implicit feedback
Signals users give without being asked, such as copying an answer, editing a draft or retrying a request. Explicit feedback is the opposite: thumbs, stars and comments.
Why it matters: Implicit signals are more honest and far more plentiful than thumbs up or down. Instrument them from day one, and use explicit feedback mainly to find failure examples.
AI agent and system design terms
Agents are the fastest-moving part of AI product work, and the vocabulary shifts with them. The terms below describe how AI systems act in the world, how much freedom they get, and what keeps them fast and affordable. The PM's recurring question in this group is simple: what is this system allowed to do without a human?
- AI agent Interview favorite
An AI system that can plan multi-step actions, use tools, observe the results and keep working toward a goal. Agents are more flexible than simple workflows, and they need stronger guardrails and oversight.
Why it matters: Agents are powerful and expensive to get wrong. The PM decides which actions the agent can take alone, which need approval, and how every step gets logged.
Go deeper: AI agents for Product Managers- Agentic workflow
A process where an LLM takes several steps, often with tools, to complete a task, with some freedom to decide the next step.
Why it matters: Most “agent” products are agentic workflows on tight rails. That's usually the right call for reliability.
- AI workflow
A fixed sequence of model calls and code paths that the team designs in advance. An agent, by contrast, decides its own steps. Anthropic's guide on building effective agents draws this line clearly.
Why it matters: Start with a workflow. Move to an agent only when the task truly needs flexible steps, because agents cost more and fail in less predictable ways.
- Tool use (function calling) Interview favorite
A model's ability to call external functions or APIs, such as searching a database, sending an email or creating a ticket, by producing a structured request.
Why it matters: Tools turn a chatbot into a product that does things. Every tool is also a permission you're granting, so define what each one may and may not do.
- Model Context Protocol (MCP)
An open standard that lets AI applications connect to tools and data sources through one common interface, instead of a custom integration for each.
Why it matters: MCP makes it faster to plug assistants into calendars, CRMs or code repositories. Security review of each connected server is still your team's job.
- API (application programming interface)
The way one piece of software requests data or actions from another. Most teams reach LLMs through a provider's API.
Why it matters: An AI PM should read API docs well enough to know the limits, the pricing and what data gets sent where.
- Orchestration
The code layer that coordinates model calls, tools, retrieval and business logic in the right order.
Why it matters: When an AI feature misbehaves, the bug is often in orchestration, not the model. Ask for traces that show each step.
- Multi-agent system
A setup where several specialized agents work together, such as a research agent passing findings to a writing agent.
Why it matters: More agents means more handoffs and more places to fail. Ask whether one agent with good tools would do the job.
- Planning
An agent's step of breaking a goal into subtasks before acting.
Why it matters: Show the plan to users for high-stakes tasks. A visible plan they can edit catches mistakes before any action runs.
- ReAct
An agent pattern where the model alternates between reasoning and acting, using tools, observing the results and deciding the next step. It comes from a 2022 research paper.
Why it matters: ReAct is the basic loop many agent frameworks use. Knowing it helps you reason about where an agent goes wrong: bad reasoning, the wrong tool or a misread result.
- Autonomy level
How much an AI system can do without human approval, from suggesting only to acting fully on its own.
Why it matters: Autonomy is a product decision, not a technical one. Match it to the cost of a mistake: draft freely, but move money only with approval.
- Human-in-the-loop (HITL) Interview favorite
A design pattern where a human reviews, approves, corrects or escalates AI outputs or actions at important points in the workflow.
Why it matters: HITL is how you ship AI into high-stakes workflows before it's fully trusted. Design the review step so it's fast, or people will rubber-stamp everything.
- Human-on-the-loop
A pattern where the AI acts on its own while humans monitor it and can step in or reverse actions.
Why it matters: Use it when volume is too high for approvals but mistakes are reversible, like auto-tagging tickets.
- Approval gate
A checkpoint where an agent must get human confirmation before taking a sensitive action.
Why it matters: List which actions need a gate before launch: payments, deletions, external emails and anything with legal weight.
- Handoff (escalation to a human)
Passing a conversation or task from AI to a human, ideally with a summary so the person doesn't start over.
Why it matters: A clean handoff is a feature. Track the escalation rate and whether customers had to repeat themselves.
- Fallback
What the product does when the AI fails, times out or isn't confident, such as showing search results, a default answer or a human contact.
Why it matters: Every AI feature needs a designed fallback, including a plan for when the model provider is down. “Something went wrong” is not a fallback.
- State
The information an agent or app keeps about where a task stands, such as steps done, data collected and decisions made.
Why it matters: Long-running agents need reliable state so they can resume after errors without redoing or duplicating actions.
- Computer use (browser agents)
Agents that operate software through the screen, clicking and typing like a person, instead of through an API.
Why it matters: Useful where no API exists, but slower and more fragile. Treat it as a bridge until a proper integration exists.
- Sandbox
An isolated environment where an agent can run code or take actions without touching real systems or data.
Why it matters: Sandboxes let you test risky agent behavior safely. Ask whether the production agent also runs code, and where.
- Copilot
An AI assistant built into a tool that helps a person do their work, with the human staying in control.
Why it matters: Copilot framing sets expectations: it suggests, you decide. That framing lowers the trust bar for launch.
- AI-native product
A product designed around AI from the start, where the core experience wouldn't work without it.
Why it matters: AI-native companies often hire core and applied AI PMs and move faster. Interviews there go deeper on evals and model trade-offs.
Go deeper: The 5 types of AI PMs- AI wrapper
A product that adds an interface or workflow on top of someone else's model with little technology of its own.
Why it matters: “Wrapper” gets used as an insult, but workflow depth, data and distribution can make a wrapper defensible. Be ready to explain your moat.
- Compound AI system
A product that combines several components, such as multiple models, retrieval, tools and rules, instead of relying on one model call.
Why it matters: Nearly every serious AI product is a compound system. Quality comes from how the parts fit, which is why PMs must understand the whole chain.
- Model routing
Sending each request to a different model based on its difficulty, cost or type, such as simple questions to a cheap model and hard ones to a strong model.
Why it matters: Routing is one of the biggest cost levers you have. Define what “simple” means using real traffic, then check quality on each route.
- Latency Interview favorite
The delay between a user request and the product's response. Stronger models, retrieval, long context, tool calls and human review can all make it longer.
Why it matters: Latency shapes whether users wait or leave. Set a latency budget per feature, and know which parts eat it: retrieval, the model, tools or review.
- Time to first token (TTFT)
How long before the first part of a streamed answer appears on screen.
Why it matters: For chat, TTFT matters more than total time. Users forgive a long answer that starts fast.
- Rate limit
A cap the provider sets on how many requests or tokens you can use per minute or per day. It sets your throughput ceiling.
Why it matters: Hitting rate limits during a launch looks like an outage to users. Check your tier and plan queues or fallbacks before the announcement.
- Prompt caching
A provider feature that reuses the processed version of a repeated prompt prefix, such as long instructions or a large document, to cut cost and latency.
Why it matters: If every request starts with the same long system prompt, prompt caching can cut your bill noticeably. Ask engineering whether it's switched on.
- Batch inference
Processing many requests together in the background instead of one at a time in real time, usually at a lower price.
Why it matters: Anything users don't wait for, like nightly summaries or bulk tagging, is a batch candidate.
- On-device AI
Running a model directly on a phone, laptop or other device instead of in the cloud.
Why it matters: On-device wins on privacy, offline use and zero per-call cost. It loses on model size and quality.
- Inference cost Interview favorite
What you pay each time a model runs, usually priced per million input and output tokens.
Why it matters: Inference cost scales with usage, so a feature can lose more money the more popular it gets. Model it per user and per task before launch.
- Build vs buy
The decision to build an AI capability in-house or use a vendor's model, API or product.
Why it matters: Buy for commodity capabilities. Build where the capability is your differentiation or where data can't leave your walls.
- Vendor lock-in
Dependence on one provider that makes switching costly.
Why it matters: Keep your prompts and evals portable, and your data too. A clean eval set is what makes switching models a week of work instead of a quarter.
AI evaluation and product metrics terms
This is the group that separates AI PMs from everyone else in the room. Evals decide whether a feature ships. Product metrics decide whether it was worth shipping. Learn both halves, because interviewers test them together: a great offline score means little if retention doesn't move.
- Evals (evaluations) Interview favorite
Structured tests that measure whether an AI system produces reliable, useful, safe and high-quality outputs. Evals move teams beyond “this looks good” to quality they can measure again and again.
Why it matters: Evals turn “it seems better” into a number you can defend. Owning the eval definition, meaning what good looks like and which failures are unacceptable, is one of the clearest AI PM responsibilities.
Go deeper: AI evals for Product Managers- Eval set (golden dataset)
A fixed collection of test inputs with expected outputs or grading criteria, used to score every version of an AI feature.
Why it matters: Build it from real user inputs, include the hard and embarrassing cases, and keep it versioned. It's the most reusable asset your AI team owns.
- Test case
One input in an eval set, plus what a good response must contain or avoid.
Why it matters: Write test cases from failure reports. Every production bug should become a test case so it can't quietly return.
- Rubric
A written scoring guide that defines what good, acceptable and bad outputs look like for a task.
Why it matters: A rubric is a spec for quality. If two reviewers score the same answer differently, the rubric isn't clear yet.
- LLM-as-judge Interview favorite
Using an LLM to grade another model's outputs against a rubric, so you can score thousands of answers quickly. Research on the method found strong judges agree with human raters most of the time, with known biases.
Why it matters: Judges scale your evals, but they tend to favor longer answers and their own style. Check the judge against human ratings before you trust its scores.
- Human evaluation
People rating AI outputs against a rubric, often domain experts for specialized tasks.
Why it matters: Human review is slow and costly, so spend it where judgment matters most and use it to calibrate your automated judges.
- Offline evaluation
Testing a model or prompt on a fixed dataset before release, without real users.
Why it matters: Offline evals are your release gate. No prompt or model change ships without passing them.
- Online evaluation
Measuring quality with real users in production, through metrics, feedback and experiments.
Why it matters: Offline tells you it should work. Online tells you it does. You need both.
- Error analysis
Reading a sample of failures, grouping them by cause and fixing the biggest groups first.
Why it matters: This is the highest-value habit in AI product work. An afternoon reading a hundred bad outputs beats a week of guessing.
- Quality regression
When a change, such as a new model or prompt, makes some outputs worse even if the average improves.
Why it matters: Averages hide regressions. Compare results case by case, and watch your most important user segments.
- Accuracy
The share of all predictions a model gets right.
Why it matters: Accuracy misleads when classes are imbalanced. A fraud model that never flags fraud can still be 99 percent accurate.
- Precision Interview favorite
In classification, the share of predicted positives that were actually positive. It tells you how often the model is right when it says yes.
Why it matters: Push for precision when false alarms are costly, like flagging a real customer's payment as fraud.
- Recall Interview favorite
In classification, the share of actual positives the model found. It tells you how much the system is missing.
Why it matters: Push for recall when missing a case is costly, like failing to flag a dangerous symptom. Interviewers often ask you to choose between precision and recall for a specific feature.
- F1 score
A single number that balances precision and recall.
Why it matters: F1 is a handy summary, but decisions usually need the separate numbers, because the two kinds of mistakes cost different amounts.
- Confusion matrix
A table showing how many predictions were true positives, false positives, true negatives and false negatives.
Why it matters: Ask for the confusion matrix as well as the accuracy score. The matrix shows which mistakes the model makes.
- False positive
The model says yes when the answer is no, such as flagging a safe email as spam.
Why it matters: Estimate what each false positive costs: an annoyed user, a support ticket or a lost sale.
- False negative
The model says no when the answer is yes, such as letting a phishing email into the inbox.
Why it matters: False negatives are often invisible until they cause damage. Find a way to measure what the model missed.
- Threshold
The confidence cutoff above which a model's prediction counts as a yes.
Why it matters: Moving the threshold trades precision for recall. It's a product decision, so own it with data.
- Confidence score
A number a model or system gives to show how sure it is about an output.
Why it matters: Use confidence to route work: act automatically when it's high, ask a human when it's low. First check that the scores are calibrated.
- Calibration
How well a model's confidence matches reality. A calibrated model that says 80 percent is right about 80 percent of the time.
Why it matters: LLMs are often poorly calibrated and sound confident when wrong. Don't show confidence numbers to users until you've tested them.
- Groundedness (faithfulness)
Whether every claim in an answer is supported by the sources the system was given.
Why it matters: Groundedness is the core quality metric for RAG. Measure it separately from whether the answer was helpful.
- Answer relevance
Whether a response actually addresses the user's question.
Why it matters: An answer can be grounded and still useless. Track relevance next to groundedness.
- Task success rate
The share of attempts where the AI completed the user's goal, such as booking the meeting or resolving the ticket.
Why it matters: This is the closest metric to real value for agents and assistants. Define “success” precisely before you measure it.
- Acceptance rate
The share of AI suggestions users accept, such as code completions or draft replies.
Why it matters: A strong signal for copilot features. Pair it with a quality check, because users may accept weak drafts and fix them later.
- Edit rate (override rate)
How much users change AI output before using it, or how often they override the AI's decision.
Why it matters: High edit rates show where the AI is almost useful. Read the edits, because they tell you exactly what users wanted.
- Escalation rate
The share of AI conversations or tasks handed to a human.
Why it matters: Lower isn't always better. A falling escalation rate with rising complaints means the AI is holding on to cases it should hand off.
- Deflection rate
The share of support requests resolved by self-service or AI without reaching a human agent.
Why it matters: Leaders love deflection. Pair it with resolution and satisfaction, or you'll end up optimizing for customers who gave up.
- Cost per task
The total AI cost to complete one unit of user value, such as one resolved ticket, including tokens, tool calls, retries, and the human review time.
Why it matters: Cost per task beats cost per token for business decisions. It tells you whether the feature can make money at scale.
- A/B testing
Comparing two versions of a product, feature or flow with real users to see which one performs better on a chosen metric.
Why it matters: AI outputs vary, so AI experiments need larger samples and a clear primary metric. Test the feature against the non-AI baseline as well as against other prompts.
- Statistical significance
A test result that is unlikely to be explained by random chance alone, given the sample size and variance.
Why it matters: Don't call an experiment early because the graph looks good. Agree on sample size and duration before launch.
- Shadow mode
Running a new model or feature on real traffic in the background, without showing its output to users, to compare it with the current system.
Why it matters: Shadow mode is the safest way to test a model swap on real data. Use it before any high-stakes change.
- Feature flag
A switch in code that turns a feature on or off for chosen users without a new deployment. Teams use flags for canary releases that start with a small share of users.
Why it matters: Every AI feature should launch behind a flag, so you can turn it off in minutes if it misbehaves.
- Monitoring (observability)
Tracking how an AI system behaves in production. That covers quality, speed and cost, plus errors, drift and the feedback users send.
Why it matters: Launch is the start of AI quality work. Decide which dashboards and alerts exist before day one.
- Tracing
A detailed record of each step in one AI request: the prompt, retrieved documents, tool calls, outputs and timings.
Why it matters: Traces are how you debug a bad answer. Make sure they're stored, searchable and privacy-safe.
- North Star Metric Interview favorite
The one metric that best represents the core value a product delivers to users, connecting user value with long-term business health.
Why it matters: For AI features, pick a North Star tied to user value, like tasks completed with AI, rather than raw usage. Usage can climb while the product gets worse.
Go deeper: The 22 AI PM skills- Guardrail metric
A metric you watch to make sure improving your main metric doesn't cause harm elsewhere, such as complaint rate or cost per user.
Why it matters: Every AI experiment needs guardrail metrics. Faster answers that double hallucinations aren't a win.
- Activation
The moment a new user first gets real value from a product, and the rate at which new users reach it.
Why it matters: For AI products, activation often means the first successful AI task. Design onboarding to get users there fast.
- Retention
The share of users who keep coming back over time.
Why it matters: AI features often get a novelty spike. Retention after the first weeks tells you whether the value is real.
- Cohort analysis
Grouping users by a shared starting point, such as signup week or first AI feature use, and studying how their behavior changes over time.
Why it matters: Compare cohorts before and after an AI launch to see whether new users stick around longer, instead of reading one launch spike.
- Funnel
The sequence of steps users take toward a goal, with the drop-off at each step.
Why it matters: Map where AI enters the funnel. An AI step that adds friction can lower conversion even when its outputs are good.
- AARRR (pirate metrics)
A growth framework covering Acquisition, Activation, Retention, Referral and Revenue.
Why it matters: A quick way to place an AI feature: is it meant to lift activation, retention or revenue? The answer sets its success metric.
- CSAT (customer satisfaction score)
A satisfaction rating, usually from a short survey right after an interaction. Net Promoter Score, a slower relative, asks how likely users are to recommend you.
Why it matters: Track CSAT separately for AI-handled and human-handled conversations. The gap tells you a lot. NPS moves too slowly to judge a single AI feature.
Responsible AI, safety and risk terms
AI features can harm people in ways ordinary software rarely does: unfair decisions, leaked data, confident misinformation, actions nobody approved. These terms are how legal, security and policy teams talk about those risks. PMs who speak this language get launches approved faster, because they arrive with answers instead of promises.
- Responsible AI
Building AI systems that are fair, safe, transparent, reliable, privacy-aware, accountable and mindful of real-world consequences.
Why it matters: Responsible AI isn't a separate team's job. It shows up in PM decisions: who could be harmed, what the model shouldn't do, and how users can appeal.
- Bias (in AI) Interview favorite
Systematic unfairness in an AI system's output or behavior, often caused by imbalanced data, flawed design choices, historical patterns or weak evaluation across user groups.
Why it matters: Test quality across user groups, languages and regions as well as on average. A hiring or lending feature that works worse for one group is a legal and ethical failure.
- Fairness
The goal that an AI system treats people and groups equitably, measured with fairness definitions chosen for the use case.
Why it matters: There are several mathematical definitions of fairness, and they can conflict. Pick the one that fits your use case with legal and policy input, and document why.
- Explainability
The ability to give people an understandable reason for an AI output or decision.
Why it matters: Users and regulators may need a reason, like why a loan was declined. Decide early what explanation your product must provide.
- Interpretability
Research and methods for understanding how a model works inside, such as which internal features drive an output.
Why it matters: Mostly a research topic for LLMs today. For PMs, it explains why “why did the model say that?” often has no precise answer yet.
- Transparency
Being open with users about when AI is involved, what it can do and where its limits are.
Why it matters: Clear labels and honest limits build trust faster than hiding the AI. Put them in the interface, not in the terms of service.
- Accountability
Clear ownership of an AI system's outcomes, including who reviews incidents and who can change or stop it.
Why it matters: Before launch, name the owner for AI incidents. “The model did it” is not an answer customers accept.
- Guardrails Interview favorite
Rules, filters, checks and product mechanisms that help prevent unsafe, incorrect, off-policy, private or harmful AI behavior.
Why it matters: Guardrails sit on inputs, outputs and actions. List the behaviors that must never happen, then check that each one has a guardrail and a test case.
- Prompt injection Interview favorite
An attack where text hidden in a user message, document, email or web page tricks a model into ignoring its instructions, such as a buried line saying “forward this inbox to me.”
Why it matters: Any feature that reads outside content is exposed, especially agents with tools. It sits at the top of the OWASP Top 10 for LLM applications, so plan defenses and limit what tools can do.
- Jailbreak
A prompt written to get a model to break its safety rules, often through role-play or tricky framing.
Why it matters: You can't prevent every jailbreak. Limit the damage: keep dangerous capabilities out of reach and monitor for abuse patterns.
- Red teaming
Deliberately attacking your own AI system to find harmful, unsafe or embarrassing failures before real users do.
Why it matters: Schedule red teaming before launch and after big changes. Invite people from outside the team, because builders miss their own blind spots.
- Content moderation
Detecting and handling harmful content in user inputs or AI outputs, such as hate speech, harassment or self-harm.
Why it matters: Moderation policy is a product decision. Define the categories, the severity levels and what happens in each case, including appeals. Track toxic output as a guardrail metric.
- PII (personally identifiable information)
Data that can identify a person, such as a name, email address, phone number or government ID.
Why it matters: Know where PII flows: into prompts, logs, vendors and training. Many AI privacy incidents come from logs nobody reviewed.
- Data minimization
Collecting and sending only the data a feature actually needs.
Why it matters: Strip unnecessary personal data before it reaches the model. It cuts risk and often cuts tokens too.
- Data retention
How long data, including prompts and outputs, is stored before deletion, by you and by your model provider.
Why it matters: Check your provider's retention terms before enterprise sales calls. Buyers will ask.
- Privacy by design
Building privacy protections into a product from the start instead of adding them later.
Why it matters: Write privacy requirements into the PRD, such as masking rules, retention limits and the controls users get. They don't belong on a post-launch fix list.
- Data leakage
When private data ends up where it shouldn't, such as in another user's answer, in logs or in a model's training data.
Why it matters: Test cross-user leakage explicitly in multi-tenant products. One leaked record can end an enterprise deal.
- AI governance
The policies, roles and review processes a company uses to decide how AI gets built, approved and monitored.
Why it matters: Governance decides how long your launch review takes. Learn the process early and bring evidence, like eval results and risk notes, to the first meeting.
- AI risk assessment
A structured review of what could go wrong with an AI system, how likely it is and how bad it would be, plus the controls in place.
Why it matters: Treat it as a product artifact. A clear risk assessment speeds approvals instead of slowing them.
- EU AI Act
The European Union's law regulating AI by risk level, with strict duties for high-risk uses and transparency rules for things like chatbots and generated content.
Why it matters: If you ship to EU users, know which risk tier your feature falls into. It changes what you must document, test and oversee.
- High-risk AI system
Under the EU AI Act, an AI system used in sensitive areas such as hiring, credit, education or critical infrastructure, which faces strict obligations.
Why it matters: If your feature screens candidates or scores applicants, assume it's high risk until legal says otherwise.
- NIST AI Risk Management Framework
The voluntary framework from the US National Institute of Standards and Technology for managing AI risk, built around four functions: govern, map, measure and manage.
Why it matters: Many enterprise buyers use it as a checklist. Mapping your feature's risks to it makes security and procurement reviews smoother.
- AI disclosure
Telling users when they're talking to an AI or seeing AI-generated content.
Why it matters: Disclosure is often legally required and always good for trust. Design it into the interface from the first version.
- Deepfake
Realistic fake audio, images or video of a real person, created with generative AI.
Why it matters: If your product generates media of people, you need consent rules, abuse reporting and a detection plan.
- Watermarking (content provenance)
Embedding signals in AI-generated content, or attaching metadata, so it can later be identified as AI-made.
Why it matters: Provenance is becoming a buyer and regulator expectation for generative media products.
- Copyright and IP risk
Legal questions about whether training data, prompts or AI outputs infringe someone's rights, and who owns the output.
Why it matters: Know your provider's IP terms and indemnities before you build a content product on them.
- Automation bias
People's tendency to trust an automated system too much and stop checking its work.
Why it matters: Human review fails when reviewers rubber-stamp. Add friction to reviews of high-stakes outputs, such as requiring a reason on approval.
- Trust calibration
Helping users trust an AI exactly as much as it deserves, no more and no less.
Why it matters: Citations, confidence cues and clear limits help users know when to double-check. Over-trust and under-trust both hurt adoption.
- Audit trail
A record of what an AI system did, when, with what inputs, and who approved it.
Why it matters: Regulated customers will ask for audit logs. Agents that take actions need them from day one.
- Kill switch
A way to disable an AI feature or agent immediately if it causes harm.
Why it matters: Know who can pull it, how fast it works and what users see after. Practice it once before launch.
- GDPR
The EU's General Data Protection Regulation, which governs how the personal data of people in the EU is collected, used and stored.
Why it matters: GDPR rights, like access and deletion, also cover data in prompts and logs, and in memory features.
Product, strategy and AI PM career terms
The last group is the vocabulary of the job itself: the documents you write, the frameworks you prioritize with, the business terms leadership cares about, and the words you'll meet while getting hired. Several of these have a full guide on this site, linked under the definition.
- AI Product Manager (AI PM)
The Product Manager responsible for deciding what AI-powered products or features to build, how they should behave and how their success will be measured.
Why it matters: The job adds model behavior, data and evaluation to classic PM work. It doesn't replace the classic work.
Go deeper: How to become an AI PM- Applied AI PM
An AI PM who owns AI features inside a mostly non-AI product, such as an AI assistant inside a SaaS tool or AI recommendations inside a marketplace.
Why it matters: This is the most common AI PM role in 2026 and often the most realistic first target for career switchers.
Go deeper: The 5 types of AI PMs- Core AI PM
An AI PM who owns an actual AI model, its training pipeline, its evaluation set and its production behavior. The role is most common at AI-native companies and model labs.
Why it matters: Expect deeper technical interviews on training data, evaluation and model trade-offs. It's often a later-career target.
- AI-enabled PM
A Product Manager who uses AI tools to do the job faster, such as synthesizing research, drafting specs or prototyping, without necessarily shipping AI features.
Why it matters: Every PM is becoming AI-enabled. It's a useful starting point, but it isn't the same as owning an AI product.
- APM (Associate Product Manager)
An entry-level Product Manager role, often designed for new graduates, career switchers or early-career professionals. Some APM programs are rotational and last 12 to 24 months.
Why it matters: APM programs are a strong entry route. They're competitive, so pair applications with portfolio proof.
Go deeper: AI PM internships and entry points- PRD (product requirements document)
The core document a Product Manager writes to explain what should be built, why it matters, who it serves, what success means and which risks must be considered.
Why it matters: An AI PRD adds sections a normal PRD skips: example model behavior, eval criteria, failure modes, guardrails, fallback behavior and cost limits.
- User story
A short description of a need from the user's point of view, often written as “As a [user], I want [goal] so that [reason].”
Why it matters: For AI features, add what a good output looks like. “Summarize the ticket” isn't testable. Two example summaries are.
- Acceptance criteria
The conditions a feature must meet to count as done.
Why it matters: AI acceptance criteria are thresholds, not absolutes. For example: at least [N] percent of eval cases pass, with zero critical safety failures.
- MVP (minimum viable product)
The smallest version of a product that tests whether it solves a real problem for real users.
Why it matters: An AI MVP can be surprisingly manual. Humans reviewing every output behind the scenes is a valid way to learn before automating.
- Prototype
An early, rough version built to test an idea, a flow or model behavior before full development.
Why it matters: AI PMs are now expected to prototype. A working prompt demo in an interview or PRD beats three pages of description.
- Vibe coding
Building software by describing what you want to an AI coding tool and iterating on the result, with little hand-written code.
Why it matters: Great for prototypes and portfolio projects. It's no replacement for engineering review once real users and real data are involved.
- No-code AI tools
Platforms that let you build AI apps, workflows or agents through visual interfaces instead of code.
Why it matters: No-code tools let non-engineers ship real portfolio projects. Hiring managers care more about your decisions than your stack.
Go deeper: 5 AI PM portfolio projects- Product sense
The judgment to understand users, identify the right problems and design solutions that create value.
Why it matters: AI product sense adds a layer: knowing when AI is the right tool, where it fails and how to design around that. Almost every AI PM interview loop tests it.
Go deeper: 50 AI PM interview questions- Product discovery
Learning what to build through user research, problem validation and experiments before committing engineering time.
Why it matters: Cheap prototypes make it tempting to skip discovery. Don't. A great model answering the wrong question is still the wrong product.
- Jobs to be done (JTBD)
A framework that looks at the progress a user is trying to make, rather than their demographics or the features they request.
Why it matters: Frame AI features as jobs. “Help me reply to this angry customer fast” guides design better than “add an AI writing assistant.”
- RICE
A prioritization framework that scores ideas on Reach, Impact, Confidence and Effort.
Why it matters: For AI ideas, confidence and effort are often the most uncertain scores. Run a quick prototype to firm them up before you rank.
- MoSCoW
A prioritization framework that sorts scope into Must have, Should have, Could have and Won't have.
Why it matters: Useful for scoping an AI MVP. Put guardrails and fallbacks in Must have, not Could have.
- Roadmap
A plan showing what a team intends to build and why, usually over the coming quarters.
Why it matters: AI roadmaps need room for uncertainty. Frame items as outcomes and experiments, because model results can change the plan.
- GTM (go-to-market)
The plan for launching and positioning a product, then marketing it, selling it and growing it.
Why it matters: AI GTM also has to set expectations: what the feature does well, where it's weak and when users should double-check it.
- Usage-based pricing
Charging customers by how much they use, such as per task, per credit or per seat plus usage.
Why it matters: Because AI has real per-use costs, pricing often has to follow usage. Flat pricing plus heavy users can wipe out your margins.
- Unit economics
The revenue and cost of one unit of your business, such as one customer or one task.
Why it matters: AI features add variable costs that classic software didn't have. Know your gross margin per active user before scaling a feature.
- Moat
A lasting advantage that makes a product hard to copy, such as proprietary data, distribution, workflow depth or brand.
Why it matters: Model access is not a moat, because competitors can call the same API. Interviewers expect you to name a better one.
- Trade-off Interview favorite
A situation where improving one part of a product costs you another. AI products trade accuracy against speed, cost against quality, and automation against user control.
Why it matters: Almost every AI interview question is a trade-off question in disguise. Name the options, the cost of each and the one you'd pick for this user.
- Stakeholder management
Keeping leaders, partner teams and customers informed and aligned on product decisions.
Why it matters: AI brings extra nervous stakeholders: legal, security and compliance. Bring them in early with concrete examples and eval results.
- Product-market fit
The point where a product clearly satisfies strong demand in a market, shown by retention, growth and users who'd be upset to lose it.
Why it matters: AI demos can fake early excitement. Retention and repeat use are the honest signals.
- OKR (objectives and key results)
A goal-setting method that pairs a qualitative objective with measurable results.
Why it matters: Write AI key results as outcomes, such as resolution rate, not outputs like “launch the chatbot.”
- ATS (applicant tracking system)
Software companies use to collect, scan, organize and filter resumes before a recruiter or hiring manager reviews them.
Why it matters: Mirror the job description's exact AI terms on your resume where you truly have the experience. This glossary doubles as a checklist for which terms matter.
Go deeper: AI PM resume keywords for 2026- STAR method
A behavioral interview framework: Situation, Task, Action and Result.
Why it matters: For AI PM behavioral questions, make the Result include a metric and what you learned about model behavior.
Go deeper: 50 AI PM interview questions- CIRCLES method
A product sense interview framework: Comprehend, Identify, Report, Cut, List, Evaluate and Summarize.
Why it matters: Adapt it for AI questions by adding a step: decide whether AI is the right solution and how you'd evaluate it.
- Portfolio project
A self-directed project that proves you can do the job, documented with the problem, your decisions and the results.
Why it matters: Five focused AI projects with case studies beat a list of certificates. Hiring managers read decisions, not badges.
Go deeper: 5 AI PM portfolio projects- Case study
A written walkthrough of a project: the user, the problem, options considered, decisions, trade-offs, evaluation and outcome.
Why it matters: The case study is what gets read. Lead with the decision you made and why.
Go deeper: How to build an AI PM portfolio- Take-home assignment
A written or build exercise some companies set during interviews, such as a product spec for an AI feature.
Why it matters: Use the vocabulary here correctly and show your eval plan. Weak take-homes usually skip evaluation entirely.
12 AI terms product managers mix up
Some terms travel in pairs, and confusing them is one of the fastest ways to lose credibility in a technical conversation. Each row gives the difference in one line and a rule of thumb you can use on the spot.
| Pair | The difference | Rule of thumb |
|---|---|---|
| RAG (retrieval-augmented generation) vs Fine-tuning | RAG hands the model facts to read at answer time. Fine-tuning changes how the model behaves. | Knowledge that changes often goes in RAG. Style, format or a narrow skill goes in fine-tuning. |
| Precision vs Recall | Precision asks how often a yes is right. Recall asks how many real yeses the model found. | False alarms are costly: favor precision. Misses are costly: favor recall. |
| AI workflow vs AI agent | A workflow follows steps the team designed. An agent picks its own steps. | Default to a workflow. Earn your way to an agent. |
| Hallucination vs Bias (in AI) | A hallucination is one made-up answer. Bias is unfairness that repeats across a group. | Fix hallucination with grounding and evals. Fix bias with segment testing and data work. |
| Prompt engineering vs Context engineering | Prompt engineering is the wording of the instructions. Context engineering is everything the model sees. | If the wording is fine and answers are still wrong, look at the context. |
| Accuracy vs Precision | Accuracy counts every correct prediction. Precision looks only at the yes predictions. | With rare events, ignore accuracy and read precision and recall. |
| Offline evaluation vs Online evaluation | Offline scores a fixed dataset before release. Online measures real users after release. | Offline decides whether it ships. Online decides whether it stays. |
| Embedding vs Vector database | An embedding is the numeric meaning of one item. A vector database stores and searches many of them. | Embeddings are the data. The vector database is where the data lives. |
| Human-in-the-loop (HITL) vs Human-on-the-loop | In the loop, a person approves before the action. On the loop, a person watches and can reverse it. | Costly or irreversible actions need a human in the loop. |
| Latency vs Time to first token (TTFT) | Latency is the total wait. Time to first token is the wait until words start appearing. | For chat features, fix time to first token first. |
| Explainability vs Interpretability | Explainability gives users a reason for an output. Interpretability studies what happens inside the model. | Products need explainability. Research teams chase interpretability. |
| Open-weight model vs Closed model | Open-weight models can be downloaded and self-hosted. Closed models are rented through an API. | Need control or data isolation: open weights. Need top quality fast: closed. |
The first pair deserves special attention. “Should we fine-tune or use RAG?” comes up in AI PM interviews more than any other vocabulary question, and the strongest answers name the kind of problem first. Facts that change weekly, like prices or policies, belong in retrieval. A consistent tone or a narrow classification skill belongs in fine-tuning. Many real products use both. The RAG guide walks through the decision with failure modes and evals.
How to learn 250 AI terms without memorizing a dictionary
Nobody learns a vocabulary this size by reading it top to bottom. You learn it by using it, in a sensible order, until the words come out without effort. Here's a four-week plan that works around a full-time job.
- Week one: the 25 interview favorites. Five a day. For each one, say out loud what it means and name one product decision it changes. If you can't name a decision, you don't know the term yet.
- Week two: the confusing pairs. Work through the table above. For each pair, write one sentence describing a product where you'd pick the first option and one where you'd pick the second.
- Weeks three and four: learn by building. Build a small RAG assistant over documents you know well. One project walks you through about thirty entries in this glossary, from chunking and embeddings to groundedness and latency, plus cost per task. It also becomes your first AI PM portfolio project.
- Ongoing: keep your own glossary. Rewrite each term in your own words and revise it as your understanding improves. Your version will be shorter than mine, and that's the point.
Then put the vocabulary to work. Job descriptions are the best practice material there is. Pick five AI PM postings, highlight every term from this page, and check whether you could explain each one with an example from your own work. The gaps tell you what to build next, and the matches tell you what belongs on your resume. The AI PM resume keywords guide shows how to prove each one instead of just listing it.
I wrote The AI Product Manager Blueprint so this vocabulary arrives in the order you need it, inside the skills where you'll use it. The glossary at the back defines the core terms. The 22 skill chapters teach them in context, and the five portfolio projects make you use them. If you'd rather follow a full plan than a word list, the 12-month AI PM roadmap shows where each group of terms fits month by month.
A to Z index of all 250 AI terms
Every term on this page in alphabetical order. Click a term to jump to its definition.
- A/B testing
- AARRR (pirate metrics)
- Acceptance criteria
- Acceptance rate
- Accountability
- Accuracy
- Activation
- Agentic workflow
- AI agent
- AI disclosure
- AI governance
- AI memory
- AI Product Manager (AI PM)
- AI risk assessment
- AI workflow
- AI wrapper
- AI‑enabled PM
- AI‑native product
- Answer relevance
- API (application programming interface)
- APM (Associate Product Manager)
- Applied AI PM
- Approval gate
- Artificial intelligence (AI)
- ATS (applicant tracking system)
- Attention
- Audit trail
- Automation bias
- Autonomy level
- Calibration
- Case study
- Chain‑of‑thought prompting
- Chunking
- CIRCLES method
- Citations (source attribution)
- Classification
- Closed model
- Clustering
- Cohort analysis
- Cold start
- Compound AI system
- Computer use (browser agents)
- Computer vision
- Concept drift
- Confidence score
- Confusion matrix
- Content moderation
- Context engineering
- Context window
- Conversation history
- Copilot
- Copyright and IP risk
- Core AI PM
- Cost per task
- CSAT (customer satisfaction score)
- Parameters (weights)
- Permission‑aware retrieval
- PII (personally identifiable information)
- Planning
- Portfolio project
- Post‑training
- PRD (product requirements document)
- Pre‑training
- Precision
- Privacy by design
- Product discovery
- Product sense
- Product‑market fit
- Prompt
- Prompt caching
- Prompt chaining
- Prompt engineering
- Prompt injection
- Prompt library
- Prompt template
- Prompt versioning
- Prototype
Questions & answers
8 questions readers ask most, answered straight.
What AI terms should a product manager learn first?
Start with the 25 interview favorites: LLM, token, context window, prompt engineering, context engineering, temperature, hallucination, embedding, vector database, RAG, fine-tuning, AI agent, tool use, human-in-the-loop, evals, LLM-as-judge, precision, recall, latency, inference cost, North Star Metric, guardrails, bias, prompt injection and trade-off. Together they cover most of what AI PM screening calls and first-round interviews test.
How many AI terms do you need to know for an AI PM interview?
Fluency in roughly 25 to 50 core terms is enough for most interview loops, as long as you can explain each one with a product decision attached. Knowing 250 definitions matters far less than using 50 of them precisely under pressure. Core AI PM roles at model companies go deeper on the models and data sections.
What is the difference between RAG and fine-tuning?
RAG retrieves relevant documents at answer time and has the model answer from them, so it's the right choice for knowledge that changes often, like policies or product docs. Fine-tuning continues training a model on specific examples to change its behavior, style or format on a narrow task. Many products combine both.
Do AI product managers need to understand how transformers work?
No. You need to know that the transformer is the architecture behind modern LLMs and what that implies: models predict tokens, context has limits, and longer inputs cost more. You don't need the math. Interviewers test your judgment about model behavior, not your knowledge of attention layers.
What does “evals” mean in AI product management?
Evals are structured tests that measure whether an AI system's outputs are reliable, useful and safe. A team scores every new prompt or model against a fixed eval set of real examples, often graded with a rubric by humans or by an LLM acting as judge. Defining what counts as good is a core AI PM responsibility.
What is context engineering, and how is it different from prompt engineering?
Prompt engineering is writing better instructions for a model. Context engineering is designing everything the model sees in a request: the system prompt, retrieved documents, memory, tool results and product rules. Most quality problems in shipped AI features are context problems, which is why the term has grown so fast.
Is prompt engineering still worth learning in 2026?
Yes. For AI PMs it's a working skill, not a job title. Writing and testing prompts yourself is the fastest way to learn what a model can do, to prototype a feature before engineering starts, and to write specs that describe model behavior precisely.
What is the difference between an AI agent and an AI workflow?
An AI workflow runs a fixed sequence of model calls and code that the team designed in advance. An AI agent decides its own next steps, choosing tools and actions as it goes. Workflows are cheaper and more predictable, so strong teams start with a workflow and move to an agent only when a task truly needs flexible steps.
Where this comes from
This guide is condensed from chapters 21 to 42 of The AI Product Manager Blueprint by Abhishek Ashtekar (first edition, 2026). The book goes several levels deeper, with the full walkthroughs, templates, and examples.
External sources cited
- Google Machine Learning GlossaryReference definitions for core machine learning terms
- Attention Is All You Need (Vaswani et al., 2017)The paper that introduced the transformer architecture
- Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks (Lewis et al., 2020)The paper that named RAG
- Chain-of-Thought Prompting Elicits Reasoning in Large Language Models (Wei et al., 2022)Step-by-step reasoning in prompts
- ReAct: Synergizing Reasoning and Acting in Language Models (Yao et al., 2022)The reason and act loop behind many agents
- Training language models to follow instructions with human feedback (Ouyang et al., 2022)InstructGPT and RLHF
- LoRA: Low-Rank Adaptation of Large Language Models (Hu et al., 2021)Low-cost fine-tuning
- Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena (Zheng et al., 2023)Evidence on LLM judges and their biases
- Building effective agents (Anthropic)Workflows versus agents
- Model Context Protocol documentationThe open standard for connecting AI apps to tools and data
- OWASP Top 10 for LLM ApplicationsPrompt injection and other LLM security risks
- NIST AI Risk Management FrameworkThe govern, map, measure and manage functions
- AI Act: regulatory framework for AI (European Commission)The EU AI Act and its risk-based approach
Last reviewed September 24, 2026. Tools, platforms, and salary data change; the book’s free resources page is updated as they move.
Browse all 88 chapters



