← Back to Notes
AI Terminology

How to Read AI Language Without Getting Lost

A practical map for understanding common AI terms without getting buried in jargon.

AI jargon gets confusing fast because people often use different words for different layers of the same system.

A cleaner way to read it is to treat AI language like a map.

You do not need to memorize every term right away. You mostly need to know what category a term belongs to, what job it does, and which other terms it is commonly confused with.

Start with the Three Terms That Anchor Everything

If you only learn three words first, make them these:

  • model: the system that produces outputs from inputs
  • training: the process of teaching that system patterns from data
  • inference: the act of using the trained model to generate an answer

Those three terms matter because a lot of other AI language hangs off them.

People often talk about models as if they are the whole product. They are not. A model is one component. The product around it may include prompts, retrieval, tools, guardrails, memory, APIs, and user interface decisions.

Training is where the model learns broad patterns. Inference is what happens when you actually ask it to do something. A lot of confusion comes from people mixing those together.

For example, if a model answers slowly, that is usually an inference-time issue. If it knows nothing about a niche domain, that may be a training limitation, a retrieval limitation, or both.

Prompts, Tokens, and Context Window

These terms describe the model’s immediate working space.

  • prompt: the input text or instruction you give the model
  • tokens: small chunks of text the model reads and generates
  • context window: the total amount of token space available for the current interaction

A simple way to think about it is this: the prompt is what you ask, tokens are the units being processed, and the context window is the size of the temporary workspace.

This matters because people often assume a model “remembers” something when it may only still be present in the current context window. Once that space fills up, or older parts fall out, behavior can change.

Fine-Tuning, Embeddings, and RAG

These terms often get grouped together, but they solve different problems.

  • fine-tuning: changing the model itself so it behaves differently in a more lasting way
  • embeddings: numerical representations of meaning that help systems compare pieces of content
  • RAG: retrieval-augmented generation, where a system fetches relevant information and gives it to the model during inference

People often reach for fine-tuning when they really need retrieval.

If the goal is “help the model use the right documents at the right time,” RAG is often the more practical answer. If the goal is “change the model’s style or behavior in a repeated, stable way,” fine-tuning may be the better fit.

Embeddings usually sit underneath retrieval systems. They help the system find related information even when the wording is not identical.

Agents, Tools, and Workflows

This is where a lot of AI discussion becomes fuzzy.

  • agent: a system that can take a goal, make decisions, and use steps or tools to move toward that goal
  • tool: an external capability the model can call, like search, code execution, a database query, or a messaging action
  • workflow: the structured sequence around the model, often with fixed steps, checks, or routing logic

Not every workflow is an agent.

A workflow can be very useful without being autonomous at all. In many cases, a simple workflow is better because it is easier to debug and easier to trust.

Calling everything an agent makes systems sound more magical than they are. Usually it is more honest to ask: what decisions are being made by the model, what actions can it take, and what parts are fixed by software around it?

Providers Versus Models

This distinction is one of the easiest ways to stay oriented.

  • provider: the company or platform serving access to a model or model family
  • model: the actual system doing the generation

For example, OpenAI, Anthropic, and Google are providers. GPT, Claude, and Gemini are model families.

People blur this constantly. They will say “we use OpenAI” when they mean a specific model from OpenAI, or they will compare providers when they are really comparing one model snapshot against another.

That matters because pricing, latency, context limits, tool support, reliability, and policy behavior can all vary at both levels.

A provider is the vendor relationship. A model is the thing you are actually running.

Hallucination, Reasoning, and Evaluation

These words also get used loosely.

  • hallucination: when a model presents false or unsupported information as if it were true
  • reasoning: the process of working through a problem, though the term is often used more loosely in marketing than in technical explanation
  • evaluation: the process of testing how well a model or system performs on defined tasks

Hallucination is not the same thing as lying. It is usually a byproduct of probabilistic generation without grounded verification.

Reasoning is worth treating carefully. Sometimes it refers to real gains in problem-solving ability. Sometimes it just means the system was prompted to show more intermediate steps or spend more compute.

Evaluation is the corrective term in this cluster. It forces the conversation back toward evidence. Instead of asking whether a model “feels smart,” evaluation asks whether it performs well on the tasks that matter.

A Simpler Mental Model

When AI language starts getting dense, ask these questions:

  1. Is this term about the model itself, or the system around it?
  2. Is this happening during training, retrieval, or inference?
  3. Is this a vendor term, a technical term, or a marketing term?
  4. Is this describing behavior, capability, or infrastructure?

That usually cuts through most of the fog.

The main mistake people make is assuming every new term describes a new kind of intelligence. Often it is just a label for one layer in a larger stack.

Once you see the layers clearly, the jargon gets a lot less intimidating.