Skip to content
Where Technology Meets Humanity

Glossary

Explore essential AI and technology terms in clear language — from foundational concepts to modern models, agents, and responsible AI. Choose your level of depth, see practical examples, and check the sources behind each definition.

Explain everything at:
Definition

A computer that can do things that normally need human smarts — like understanding speech, spotting objects in a photo, or making a choice.

A field of software that performs tasks associated with human intelligence — perception, language, reasoning, decision-making. Historically this included hand-written rule systems; most of today's AI instead learns patterns from data (machine learning).

A branch of computer science concerned with systems that approximate goal-directed behavior under uncertainty. Modern AI is dominated by statistical machine learning, where behavior is induced from data by optimizing an objective, not specified symbolically.

Why it matters

AI is now embedded in phones, banks, hospitals, and classrooms — one of the defining general-purpose technologies of the era.

Real-world example

Your email service filtering spam and drafting suggested replies.

Common misconception

That AI "understands" or is conscious. Today's systems are powerful pattern-matchers with no awareness or intent.

Related: Machine Learning · Neural Network · AI Safety Sources: OECD AI Principles · Stanford HAI Last reviewed: August 2026
Definition

Instead of telling the computer every rule, you show it lots of examples and it figures out the pattern itself.

A branch of AI in which a model improves at a task by learning statistical patterns from data, rather than being given explicit instructions for every case.

Methods that fit a parameterized function to data by minimizing a loss over training examples, aiming to generalize to unseen inputs. Paradigms include supervised, unsupervised, and reinforcement learning.

Why it matters

It let AI handle messy, real-world problems — speech, images, fraud — that are too complex to write rules for by hand.

Real-world example

A bank model that learns to flag unusual transactions from millions of past ones.

Common misconception

That the model "knows" facts. It captures correlations in its training data — which is also why bad data produces bad models.

Related: Neural Network · Training Data · Bias Sources: Stanford HAI · NIST AI RMF Last reviewed: August 2026
Definition

A web of tiny math "neurons" loosely inspired by the brain, stacked in layers, that learns to recognize patterns.

A computing structure made of layers of connected units ("neurons"); each connection has a weight the system tunes during training so the network maps inputs to useful outputs.

A composition of parameterized linear transformations and non-linear activations. Weights are learned via backpropagation and gradient descent to minimize a loss; depth and width govern representational capacity.

Why it matters

It's the core building block deep learning and today's largest AI models are made from.

Real-world example

The network inside a voice assistant that turns sound waves into words.

Common misconception

That it works like a real brain. The "neuron" analogy is loose — biological neurons are vastly more complex.

Related: Machine Learning · Transformer Sources: Stanford HAI Last reviewed: August 2026
Definition

A kind of machine learning that stacks many layers of "neurons," letting it learn very complex patterns like faces or speech.

Machine learning based on neural networks with many layers, which learn increasingly abstract features of the data and power most modern AI breakthroughs.

A subfield using deep multi-layer networks trained end-to-end by backpropagation; depth enables hierarchical feature learning and strong performance given large data and compute.

Why it matters

It powers most modern breakthroughs, from voice assistants to image and text generation.

Real-world example

A photo app recognizing faces and grouping pictures by person.

Common misconception

That "deep" refers to intelligence or understanding. It refers to the number of layers, nothing more.

Related: Neural Network · Machine Learning · Transformer Sources: Stanford HAI Last reviewed: August 2026
Definition

You teach the model with examples that already have the right answers, so it learns to answer new ones.

Training on labeled data — inputs paired with correct outputs — so the model learns to map new inputs to answers. It underlies most practical AI today.

Learning a function from input–label pairs by minimizing prediction error (e.g., cross-entropy, MSE); the basis of classification and regression when labels are plentiful.

Why it matters

It underlies most deployed AI, from medical image screening to email classification.

Real-world example

Teaching a model to spot pneumonia by showing it X-rays already marked by doctors.

Common misconception

That more labeled data always helps. Mislabeled or unrepresentative data can quietly degrade the model.

Related: Training Data · Machine Learning · Bias Sources: Stanford HAI · NIST AI RMF Last reviewed: August 2026
Definition

A kind of AI — not built yet — that could do almost anything a person can, not just one narrow job.

A hypothetical AI able to match human performance across most cognitive tasks, not just narrow ones. Definitions vary widely between labs.

An informal target denoting broad, human-level competence across domains; it lacks a rigorous, agreed operationalization, which complicates measurement and claims.

Why it matters

It anchors much of the debate about AI's long-term promise and risk — even without agreement on what would count.

Real-world example

None yet — and because there's no agreed test for AGI, whether any future system "counts" will itself be contested.

Common misconception

That current chatbots are "almost AGI." They are impressive on many tasks but uneven in reliability and breadth — and without an agreed definition, confident claims in either direction are hard to justify.

Related: Artificial Intelligence · Reasoning Models · AI Safety Sources: OECD · Stanford HAI Last reviewed: August 2026
Definition

A model design that looks at how every word in a sentence relates to every other word, all at once, so it handles language really well.

A neural-network architecture, introduced in 2017, that uses an "attention" mechanism to weigh how much each part of the input relates to every other part — enabling fast, highly parallel training at scale.

An architecture built on self-attention, computing weighted combinations of value vectors from query–key similarities across all positions. Removing recurrence enables parallelization; positional encodings restore order.

Why it matters

It's the architecture behind nearly all modern LLMs, including the GPT and Claude families.

Real-world example

The engine that lets a chatbot keep track of context across a long message.

Common misconception

That "attention" means the model consciously focuses. It's a weighting operation in matrix math, not awareness.

Definition

An AI that has read enormous amounts of text and learned to predict what comes next — usually a word or part of a word (a "token"), which turns out to be enough to hold a conversation.

A transformer-based model trained on very large text corpora to predict the next token, which gives it broad abilities to write, summarize, translate, and answer questions.

A high-parameter autoregressive model estimating the probability of the next token given prior context. Pre-trained by self-supervised next-token prediction, then typically aligned via instruction tuning and RLHF.

Why it matters

LLMs turned AI from a niche tool into something hundreds of millions of people use daily.

Real-world example

The model answering your questions in a chat assistant right now.

Common misconception

That it looks up answers in a database. It generates text statistically — which is why it can sound confident yet be wrong.

⟳ What changed

LLMs increasingly ship as multimodal systems with tools, memory, and much larger context windows — less a text box, more the core of an assistant that can act.

Related: Transformer · Token · Hallucination Sources: Stanford HAI · Transformer paper Last reviewed: August 2026
Definition

AI that makes new things — a paragraph, a picture, a tune — instead of just sorting or scoring what already exists.

A class of models that produce novel content (text, images, audio, video, code) by learning the patterns of their training data and sampling new outputs from them.

Models that approximate the data distribution and sample from it. Families include autoregressive transformers (text), diffusion models (images/audio), and GANs, differing in how they represent and sample the distribution.

Why it matters

It's reshaping creative and knowledge work, and raising fresh questions about authorship, originality, and consent.

Real-world example

Typing a sentence and getting a newly generated illustration back.

Common misconception

That outputs are "copied" from specific sources. They're statistically generated — though training-data provenance is a real, unsettled debate.

⟳ What changed

Quality and speed have risen sharply while costs fall, and generation is now routinely multimodal — one system producing text, images, and audio together.

Related: Multimodal AI · Large Language Model Sources: NIST AI RMF · OECD Last reviewed: August 2026
Definition

AI that can handle more than one kind of input or output — you can show it a picture and talk to it about it.

A model that accepts and/or produces more than one type of data — text, images, audio, video — within a single system, closer to how people naturally communicate.

A model that maps multiple modalities into a shared representation space, enabling cross-modal reasoning and generation. Often built by aligning modality-specific encoders to a language backbone.

Why it matters

It moves AI from a text box toward assistants that see, hear, and respond in kind.

Real-world example

Showing a model a photo of your fridge and asking what you can cook.

Common misconception

That handling images means it "sees" like a human. It processes pixels statistically and can still misread them.

⟳ What changed

Multimodality has shifted from a bolt-on feature to a default expectation for flagship models, including live voice and video interaction.

Related: Generative AI · Large Language Model Sources: Stanford HAI Last reviewed: August 2026
Definition

A way to turn words or pictures into lists of numbers, so the computer can tell which things are similar in meaning.

A representation that maps data such as words or images into numeric vectors where similar items sit close together, enabling meaning-based search and matching.

A learned mapping into a dense vector space where geometric proximity approximates semantic similarity; foundational to retrieval, clustering, and nearest-neighbor search.

Why it matters

Embeddings power semantic search and recommendations — matching by meaning, not just exact words.

Real-world example

A search that returns "car" results when you type "automobile."

Common misconception

That embeddings store the original text. They store a numeric summary of meaning, not the words themselves.

Related: RAG · Token Sources: word2vec (Mikolov et al., 2013) · Stanford HAI Last reviewed: August 2026
Definition

An AI image-maker that starts with random static and cleans it up step by step until a picture appears.

A generative model that creates images by starting from random noise and gradually denoising it into a coherent result; it's behind most high-quality AI image generators.

A model trained to reverse a gradual noising process, denoising samples step-by-step from a prior toward the data distribution; enables high-fidelity image and audio synthesis.

Why it matters

Diffusion models made high-quality generative imaging practical and helped drive the rapid adoption of text-to-image systems.

Real-world example

Turning the prompt "a red bicycle in the rain" into a photo-like image.

Common misconception

That it retrieves and edits existing photos. It synthesizes new images from noise, guided by the prompt.

Related: Generative AI · Multimodal AI Sources: DDPM (Ho et al., 2020) · Stanford HAI Last reviewed: August 2026
Definition

AI models that work through a problem step by step before giving an answer, instead of replying instantly — better for tricky maths or logic.

Language models trained or prompted to produce intermediate reasoning steps before a final answer, trading extra compute at answer-time for higher accuracy on complex tasks.

Models optimized to allocate additional inference-time computation to multi-step reasoning (e.g., extended chains of thought), often reinforced toward verifiable correct solutions on math, code, and logic benchmarks.

Why it matters

They mark a shift from "bigger training" to "more thinking at answer-time" as a way to improve results.

Real-world example

A model that spends longer working through a multi-step maths problem before answering — whether or not it shows that working to the user.

Common misconception

That step-by-step output means the model truly reasons like a person. The visible "thinking" is generated text, and can still be wrong or post-hoc.

⟳ What changed

"Test-time compute" — letting a model think longer before answering — has become a major axis of progress alongside raw model size.

Definition

An AI that can actually do things for you — search, click, send, book — step by step, not just chat.

A system that pursues a goal by planning and taking actions — calling tools, browsing, or using other software — with limited human supervision, and adjusting based on results.

An LLM-driven control loop that interleaves reasoning with tool/API calls, observes results, and iterates toward a goal. Capability and risk scale with autonomy, tool access, and memory.

Why it matters

Agents turn AI from an advisor into an operator — powerful, but with higher stakes when it acts on your behalf.

Real-world example

An assistant that researches flights, fills the form, and books — checking each step.

Common misconception

That agents are fully autonomous and reliable. In practice they still err, and generally need guardrails and human oversight.

⟳ What changed

Agents increasingly combine models with tools, memory, and external systems — via emerging standards like MCP — rather than operating only as conversational interfaces.

Related: MCP · Reasoning Models · AI Safety Sources: OECD · NIST AI RMF Last reviewed: August 2026
Definition

Before answering, the AI searches a set of documents and uses what it finds — so replies are more accurate and up to date.

A method that retrieves relevant text from an external source and feeds it to a language model before it answers, grounding responses in real, current, or private data.

A pipeline that embeds a query, retrieves nearest-neighbor passages from a vector store, and conditions generation on them — decoupling knowledge from model weights and improving factual grounding and freshness.

Why it matters

It reduces made-up answers and lets models use data they were never trained on.

Real-world example

A company chatbot that answers strictly from its own help articles.

Common misconception

That RAG eliminates hallucinations. It reduces them, but the model can still misread or ignore the retrieved text.

⟳ What changed

RAG has become standard practice for enterprise assistants, and is increasingly paired with agents that decide when and what to retrieve.

Related: Hallucination · Token Sources: RAG paper (Lewis et al., 2020) Last reviewed: August 2026
Definition

A shared "plug" standard that lets AI apps connect to your tools and data without custom wiring for each one.

An open protocol that standardizes how AI applications connect to external tools, data sources, and services — so any compliant client can talk to any compliant server.

A client–server protocol that exposes tools, resources, and prompts to AI hosts over a defined message interface, decoupling model applications from bespoke, per-integration connectors.

Why it matters

It aims to be the "USB-C of AI integrations" — cutting the custom glue code that agents need to reach real systems.

Real-world example

An assistant using an MCP connector to read your calendar and files through one standard interface.

Common misconception

That MCP is a model or an AI. It's a connection standard — plumbing between AI apps and the tools they use.

⟳ What changed

Introduced as an open standard in late 2024, MCP has seen growing adoption as a common way to give agents tool and data access. Check the official spec for its current status.

Related: AI Agent · RAG Sources: Model Context Protocol (official spec) Last reviewed: August 2026
Definition

The skill of asking an AI the right way — clear instructions, examples, and the format you want — to get a better answer.

The practice of designing inputs — instructions, examples, constraints, and structure — to steer a model toward more accurate and useful outputs.

Conditioning model behavior through the input context: task framing, few-shot exemplars, output schemas, and decoding constraints, exploiting in-context learning without changing weights.

Why it matters

Good prompting is often the difference between a vague reply and a genuinely useful one.

Real-world example

Adding an example answer and a required format to sharpen a model's output.

Common misconception

That there are magic "secret" prompts. Clarity, context, and examples matter far more than tricks.

Related: Token · Large Language Model Sources: Stanford HAI Last reviewed: August 2026
Definition

The little pieces — usually a word or part of a word — that an AI breaks text into. Costs and limits are counted in these.

The unit of text a language model processes — often a word or sub-word fragment. Context limits and pricing are typically measured in tokens.

A discrete symbol from a fixed vocabulary produced by a tokenizer (e.g., byte-pair encoding). Sequences of token IDs are the model's actual input and output; token count drives context and cost.

Why it matters

Tokens determine both how much a model can handle at once and what it costs to run.

Real-world example

Roughly 750 English words work out to about 1,000 tokens.

Common misconception

That one token equals one word. Many words split into several tokens, and other languages tokenize very differently.

Related: Large Language Model · Prompt Engineering Sources: Stanford HAI Last reviewed: August 2026
Definition

How much text an AI can "hold in mind" at one time. Go past it and it forgets the earliest parts.

The maximum span of text, measured in tokens, a model can attend to in a single request — setting how much it can "remember" in one conversation or document.

The fixed maximum token length the model conditions on per forward pass; exceeding it forces truncation, chunking, or retrieval, and attention cost scales with it.

Why it matters

It sets how much a model can take into account before it starts losing earlier detail.

Real-world example

A large context window lets a model read a whole book before answering.

Common misconception

That a bigger window automatically means better answers. More room helps, but relevant, well-organized input matters more.

Related: Token · Large Language Model Sources: Stanford HAI Last reviewed: August 2026
Definition

Taking a ready-made AI and giving it extra training on your specific topic so it does that job better.

Taking an already-trained model and training it further on specialized data so it performs better for a specific task or style — without training from scratch.

Continued training of pretrained weights on a narrower dataset, typically at a small learning rate; variants include full fine-tuning and parameter-efficient methods (e.g., LoRA, adapters).

Why it matters

It adapts powerful general models to niche needs at a fraction of the cost of training anew.

Real-world example

Tuning a general model on legal contracts to draft them in-house.

Common misconception

That fine-tuning reliably teaches brand-new facts. It mostly shapes style and task behavior; for fresh facts, retrieval (RAG) often works better.

Related: Training Data · RAG · Large Language Model Sources: Stanford HAI Last reviewed: August 2026
Definition

The pile of examples an AI studies to learn. Good examples in, good AI out — and the reverse.

The examples a model learns from; their range and quality largely decide how capable — and how biased — the model becomes.

The dataset optimized over during training; distribution, coverage, labeling quality, and contamination directly shape generalization, fairness, and failure modes.

Why it matters

"Garbage in, garbage out" is real: flawed data produces flawed models.

Real-world example

A model trained mostly on English will struggle with other languages.

Common misconception

That more data is always better. Representative, clean data usually beats simply larger data.

Related: Bias · Supervised Learning · Machine Learning Sources: NIST AI RMF · OECD Last reviewed: August 2026
Definition

When an AI confidently makes something up — a fake fact, quote, or source — that sounds right but isn't.

An output that is fluent and confident but factually wrong or fabricated, arising because the model generates plausible text rather than retrieving verified facts.

A failure mode where a generative model produces content unsupported by its inputs or ground truth — a byproduct of probabilistic next-token generation optimized for plausibility, not veracity.

Why it matters

It's the main reason important AI output should always be checked against a reliable source.

Real-world example

A model citing a study, case, or book that does not exist.

Common misconception

That hallucinations are rare bugs to be fully "fixed." Current generative models remain prone to them; techniques such as retrieval, verification, and grounding can reduce them, but don't guarantee error-free output.

Related: RAG · Large Language Model Sources: NIST AI RMF Last reviewed: August 2026
Definition

Being able to see why an AI made a decision, instead of it being a black box.

How well humans can understand why an AI reached a particular decision — crucial in high-stakes areas like medicine, credit, and law.

The degree to which a model's internals or decisions can be interpreted by humans; spans intrinsically interpretable models and post-hoc methods (e.g., feature attribution), with fidelity trade-offs.

Why it matters

In high-stakes areas, "because the model said so" isn't good enough — for trust, accountability, or regulation.

Real-world example

A loan tool that shows which factors drove a rejection.

Common misconception

That an explanation proves the model is correct. An explanation can be plausible yet incomplete or misleading.

Related: Bias · AI Safety Sources: NIST AI RMF · OECD Last reviewed: August 2026
Definition

When an AI treats some groups unfairly — usually because the data it learned from was skewed.

Systematic, unfair skew in a model's behavior, typically inherited from unrepresentative training data or design choices, that can disadvantage particular groups.

Statistical and societal disparities in model outputs across attributes, originating in data sampling, labeling, objective design, or deployment context; measured via fairness metrics that can mutually conflict.

Why it matters

Biased AI can quietly cause harm at scale in hiring, lending, healthcare, and policing.

Real-world example

A résumé screener that favors one group because past hires skewed that way.

Common misconception

That bias is purely a data problem with a technical fix. It also involves value choices about what "fair" even means.

Related: Training Data · AI Safety Sources: NIST AI RMF · OECD Last reviewed: August 2026
Definition

The work of making sure AI does what we want and doesn't cause harm — especially as it gets more capable.

The field focused on ensuring AI systems behave reliably and as intended, and don't cause harm, even when powerful, widely deployed, or in unexpected situations.

Research and practice spanning robustness, alignment, evaluation, interpretability, and control — aiming to keep system behavior within intended bounds under distribution shift and adversarial pressure.

Why it matters

As AI takes on higher-stakes roles, ensuring it acts as intended becomes essential, not optional.

Real-world example

Red-teaming a model for harmful outputs before it's released.

Common misconception

That safety is only about distant, sci-fi risks. Most of it is concrete and present: reliability, misuse, bias, and oversight.

Related: Bias · AI Agent Sources: NIST AI RMF · OECD Last reviewed: August 2026

No term matches that yet. Try another word.

Sources & methodology

This glossary is meant to be understood, not just skimmed. Here's how it's made:

  • Definitions are written in plain language and grounded in primary and institutional references — original papers, standards bodies (e.g. NIST), inter-governmental bodies (e.g. OECD), universities, and official specifications. Every entry links its references so you can check them yourself.
  • Where experts disagree or a term is unsettled, we say so rather than imply false consensus.
  • AI tools may assist drafting, but are never cited as a source; each entry stands on the human and institutional references it lists, and is open to correction.
  • Each entry shows a review date, and fast-moving terms carry a "What changed" note so the reference stays current.

Full standards: Sources & Methodology · AI Transparency Policy.

Last reviewed: August 2026 · 25 terms and growing · Spot an error? Tell us.