📄 Article AI Glossary

AI Glossary

On This Page

Plain-English definitions for common AI terms. Quick tooltips across the site link back here for deeper explanation.

Use this glossary to get quick, plain-English explanations of AI terms. Terms are organized alphabetically like a dictionary, with quick navigation to jump to any letter. Cross-linked terms in definitions make it easy to explore related concepts.

A

2 terms

Agent

#

An AI that can plan steps and use tools (like search or spreadsheets) to complete tasks, not just answer a single prompt.

API (Application Programming Interface)

#

How software systems connect and share data. Lets apps talk to each other and to AI models.

B

2 terms

Benchmark

#

A standardized test used to compare model performance (e.g., SWE-bench for coding).

Bias

#

Unfair patterns learned from data that can cause skewed or discriminatory outputs.

C

3 terms

Context Window

#

The maximum amount of text (in tokens) a model can consider at once. Larger windows let the AI read longer documents or conversations.

Chunking

#

Splitting long documents into smaller pieces so they fit within the context window.

Chain-of-thought

#

The step-by-step reasoning behind an answer. Often hidden or summarized for safety.

E

2 terms

Embedding

#

A numerical representation of text that captures its meaning. Used to compare similarity between pieces of text.

Evaluation

#

Measuring how well an AI performs using tests, examples, or benchmarks.

F

2 terms

Fine-tuning

#

Training an existing model further on your data so it better matches your style, terminology, or tasks.

Few-shot

#

When an AI is given a few examples in the prompt to show it how to perform a task.

G

3 terms

Grounding

#

Connecting answers to trusted sources or documents so that responses are verifiable and accurate.

Guardrails

#

Controls that limit an AI’s behavior to stay safe and on-policy (filters, rules, constraints).

Ground Truth

#

The correct answer or trusted source used to check an AI’s output.

H

1 term

Hallucination

#

When an AI makes up facts or gives an incorrect answer with confidence.

I

2 terms

Input Tokens

#

Tokens you send to the AI (your prompt and any context). Billed separately from outputs by many providers.

Inference

#

When the trained model runs to produce an answer. This is the “use” phase after training.

L

2 terms

Large Language Model (LLM)

#

An AI system trained on large amounts of text that can understand and generate language (e.g., ChatGPT, Claude, Gemini).

Latency

#

How long the AI takes to respond. Lower latency feels faster and more interactive.

M

3 terms

Model

#

The “brain” of the AI—the learned system that produces answers based on patterns in data.

Multimodal

#

AI that can work with more than one type of input, such as text, images, audio, or video.

Memory

#

Information the AI or app keeps across interactions to personalize or continue a task.

O

2 terms

Output Tokens

#

Tokens the AI generates in its response. Often billed at a different rate than inputs.

Open-source Model

#

A model whose code and/or weights are publicly available to use and modify (e.g., Llama, Mistral).

P

5 terms

Prompt

#

The instruction or question you give to an AI. Clear prompts lead to better results.

Prompt Engineering

#

The practice of writing prompts in a structured way to guide the AI toward better, more reliable answers.

Parameters

#

The internal values a model learns during training. More parameters can mean more capability, but also higher cost.

Proprietary Model

#

A closed, vendor-controlled model accessed via an API (e.g., OpenAI, Anthropic, Google Gemini).

Pricing per Token

#

Most providers charge based on tokens used for inputs and outputs.

R

2 terms

Retrieval-Augmented Generation (RAG)

#

A technique where the AI looks up relevant documents first and then uses them to answer your question, reducing hallucinations.

Rate Limit

#

The maximum number of requests or tokens allowed in a given time period by a provider.

S

2 terms

System Prompt

#

Hidden instructions that set the AI’s role and behavior (e.g., “You are a helpful assistant”).

Safety

#

Practices and controls to prevent harmful outputs and misuse, and to protect users and data.

T

6 terms

Token

#

A small chunk of text that AI models read and write. Roughly four characters of English on average. Pricing and limits are based on tokens.

Transformer

#

A modern AI architecture that powers most LLMs. It handles long text efficiently by focusing on important parts (attention).

Temperature

#

A setting that controls how creative or cautious the AI is. Higher values are more creative, lower values are more consistent.

Top-p (Nucleus Sampling)

#

A setting that limits the AI to the most likely words whose probabilities add up to p (e.g., 0.9), balancing variety and quality.

Tool Use / Function Calling

#

The AI’s ability to call external tools or functions, like searching the web or looking up data from your systems.

Training

#

Teaching the model by showing it many examples so it learns patterns and can generalize to new inputs.

V

1 term

Vector Database

#

A database optimized for storing and searching embeddings to find the most similar items quickly.

Z

1 term

Zero-shot

#

When an AI solves a task without seeing any examples—only the instructions.