The AI glossary

25 terms you'll see in every AI tool review — explained in plain English.

A C D E F G H I L M P Q R T V Z
AI agents — Autonomous AI programs

An AI agent is a program that takes a goal and works through the steps on its own — making a plan, using tools, browsing the web, or calling other apps — without you micromanaging each move. Think of it as an AI intern you hand a task to, instead of typing every instruction yourself.

Chain-of-thought — Step-by-step reasoning

Chain-of-thought is a prompting technique that gets the model to spell out its reasoning step by step before giving the final answer. It noticeably improves accuracy on math, logic, and multi-step problems — simply asking for "step-by-step" reasoning is the simplest version.

Context window — How much the model can remember

The context window is how much text (measured in tokens) a model can consider at once — its working memory. A bigger window means it can handle longer conversations and documents; once you exceed it, the model starts forgetting the beginning.

Diffusion — How image models draw

Diffusion is the technique behind most AI image generators: the model starts from random noise and gradually removes it, guided by your prompt, over many steps. That's why tools like Midjourney reveal the picture in visible stages.

Embeddings — Meaning as numbers

Embeddings turn words, sentences, or images into lists of numbers (vectors) that capture meaning, so "dog" and "puppy" land close together while unrelated words stay far apart. They're the backbone of semantic search, recommendations, and RAG.

Few-shot — Teaching by a few examples

Few-shot prompting means giving the model a handful of examples of the task inside your prompt, then asking it to do the same thing. It works like showing a template: the model copies the pattern without any extra training.

Fine-tuning — Specializing a model

Fine-tuning trains an already-built model a bit more on your own examples — your support tickets, your brand voice, your data — to specialize it. It's far cheaper and faster than training from scratch, but the results depend heavily on the quality of your examples.

Foundation model — The base everything builds on

A foundation model is a large, general-purpose model trained on massive data that other products build on top of — GPT, Claude, and Gemini are examples. "Foundation" is literal: apps, features, and fine-tunes all sit on top of it.

Guardrails — Safety rails for AI

Guardrails are the safety rules and filters wrapped around a model: blocking harmful outputs, keeping answers on-topic, and enforcing policies. They give developers a way to control what the AI can and can't do in a real product.

Hallucination — Confident AI fiction

A hallucination is when an AI confidently makes something up — fake facts, invented links, or quotes that don't exist. It happens because models predict what sounds plausible, not what is verified true, so always double-check important claims.

Inference — Running the model

Inference is simply running a trained model to get an answer — you type a prompt, the model "infers" a response. It happens every time you use ChatGPT, as opposed to training, which is the one-time process that built the model.

LLM — Large Language Model

LLM stands for Large Language Model: an AI system trained on enormous amounts of text so it can understand and generate human language. ChatGPT, Claude, and Gemini are all LLMs.

Multimodal — More than just text

A multimodal model handles more than one type of input or output — text plus images, audio, or video. Describing a photo you upload, or generating a video from a text prompt, are both multimodal tasks.

Parameters — The model's memory size

Parameters are the billions of adjustable numbers inside a model that hold everything it learned during training. More parameters usually means a bigger, more capable model — and a more expensive one to run.

Prompt engineering — Writing better instructions

Prompt engineering is the skill of writing clear, well-structured instructions to get better answers from AI. Examples, assigned roles, and explicit constraints are its main tools.

Quantization — Shrinking models to run anywhere

Quantization shrinks a model by storing its numbers with less precision (for example, 8-bit instead of 32-bit), so it runs faster and fits on smaller devices. The trade-off is a slight dip in quality for a big win in speed and size.

RAG — Retrieval-Augmented Generation

RAG (Retrieval-Augmented Generation) is a technique where the model first looks up relevant information in your documents or a database, then uses what it found to write its answer. It's how AI assistants answer questions about your own files without hallucinating as much.

Red-teaming — Attacking AI on purpose

Red-teaming means deliberately trying to break a model's safety with tricky prompts and edge cases, in order to find weaknesses before real users do. It's the AI equivalent of hiring hackers to test your security.

RLHF — Training with human feedback

RLHF (Reinforcement Learning from Human Feedback) trains the model to prefer answers that humans rate highly. It's what turns a raw text-predicting model into a polite, helpful chatbot instead of an autocomplete that just blurts out likely text.

Temperature — Creativity dial

Temperature is a setting (usually 0–2) that controls how random a model's answers are: low temperature gives focused, predictable replies; high temperature gives more creative, varied ones. For factual work, keep it low.

Tokens — The pieces AI reads and writes

Tokens are the chunks of text (roughly three-quarters of a word each) that AI models read and write. Everything is measured in tokens: pricing, speed, and the size of the context window all use them.

Training — Teaching the model

Training is the long, expensive process of teaching a model from data — adjusting its billions of parameters until it predicts well. Training happens once (costing millions for big models); inference happens every time you use it.

Transformer — The architecture behind modern AI

The transformer is the neural-network design behind nearly all modern AI, introduced by Google in 2017. Its "attention" mechanism lets models weigh which words matter most to each other — the breakthrough that made LLMs possible.

Vector database — Search by meaning

A vector database stores and searches embeddings by meaning rather than exact keywords. It's the storage layer behind RAG and semantic search — Pinecone and Weaviate are well-known examples.

Zero-shot — No examples needed

Zero-shot means asking the model to do a task with no examples at all — just the instruction. LLMs can often handle it thanks to their broad training, though adding a few examples (few-shot) usually improves accuracy.

Keep exploring

Now that you speak the language, put it to use: