Read next
A people-and-projects index of the AI world for context that the term-by-term glossary cannot give you.
Famous AI: The Most Important AI Systems, Companies, and People →
Look up any AI term. Plain English, no jargon.
Artificial Intelligence (AI)
Artificial intelligence is the broad field of building computer systems that can do things normally associated with human thinking — recognizing what’s in a photo, understanding written language, holding a conversation, solving puzzles, or making decisions. The phrase is so broad it covers everything from spam filters in your email to ChatGPT.
When someone says “AI” in 2026, they usually mean a large language model like ChatGPT, Claude, or Gemini. But the term also includes image generators, voice assistants, recommendation systems on Netflix and Spotify, fraud-detection systems at your bank, and many things you’d never call “AI” out loud. The field is the umbrella; everything else in this glossary sits underneath it.
Machine Learning
Machine learning is how computers learn to do something by looking at lots of examples instead of being told step-by-step what to do. You don’t write rules; you show the computer thousands or millions of examples and let it figure out the patterns on its own.
The classic illustration: to build a spam filter the old way, a programmer writes rules like “mark as spam if subject contains ‘free money’.” To build one with machine learning, you show the computer 100,000 emails labeled spam or not spam, and it works out the patterns itself. The result usually catches spam the rule-writer would have missed — including spam that uses words the rule-writer never thought of.
Machine learning is the foundation almost every modern AI tool sits on, including every large language model.
Deep Learning
Deep learning is a kind of machine learning that uses a special structure called a neural network with many stacked layers — that’s the “deep” part. Each layer learns a slightly more complicated version of the patterns in the data.
Picture how you’d teach a child to recognize a cat. First they notice edges and shapes. Then they connect those shapes into ears, eyes, whiskers. Then they put it all together as “cat.” Deep learning works the same way: early layers spot simple things, middle layers spot parts, late layers spot the whole concept.
Almost every AI breakthrough of the last decade — image generation, large language models, voice cloning, protein folding — runs on deep learning.
Large Language Model (LLM)
A large language model is the AI behind ChatGPT, Claude, Gemini, and every other chatbot you’ve used in the last two years. It’s a program that was trained on huge amounts of writing — books, websites, articles, code — until it became extremely good at predicting what word comes next.
The “large” part is literal: today’s models have trillions of internal numbers (called parameters) and were trained on text equivalent to millions of books. The “language” part is also literal: the model learns the patterns of how humans actually use words.
You don’t need to know how an LLM works to use one. You type a question or a request, the model responds with text. That’s it. The depth shows up when you push it — the same model that writes a poem can also help debug code, draft a contract, or summarize a 200-page document.
Neural Network
A neural network is a kind of computer program inspired by — but very different from — how brains work. It’s a giant collection of simple math operations connected together in layers. Information flows in, each layer transforms it a little, and the answer comes out the other side.
Don’t get caught up in the “neural” word. The connection to biology is loose. What matters is that neural networks turned out to be very good at learning patterns from data — faces in photos, words in audio, the next word in a sentence. Every large language model is built from neural networks. So is every image generator, voice assistant, and most of the AI you actually use.
Training
Training is how an AI model learns. You feed it huge amounts of data along with the answers (or let it work out the answers), and the model slowly adjusts its internal numbers until it gets things right more often than not.
For a large language model, training looks like this: take a sentence, hide the last word, ask the model to guess it. If it’s wrong, nudge the internal numbers a tiny bit toward the right answer. Now do that billions of times with different sentences. The result is a model that’s seen so much language it can write coherently about almost anything.
Training a frontier model in 2026 takes thousands of expensive GPUs running for weeks or months and costs tens to hundreds of millions of dollars. That’s why only a handful of companies (OpenAI, Anthropic, Google, Meta, xAI) train them.
Inference
Inference is what happens every time you actually use an AI model — you type a prompt, the model generates a response. It’s the opposite of training: training builds the model once; inference uses the trained model over and over.
When you ask ChatGPT a question, you’re triggering an inference run. The model takes your input, runs it through its neural network, and produces an output. Each inference is fast (often a second or two for short responses) but costs real money in computing power — especially at scale. That’s why ChatGPT free has usage limits and Pro doesn’t.
Parameters (Weights)
Parameters are the internal numbers a model uses to make predictions. They’re the “dials” that get tuned during training. A modern large language model has hundreds of billions to trillions of them.
Roughly speaking, more parameters means the model can capture more complicated patterns — but also costs more to train and run. GPT-3 had 175 billion parameters; current frontier models are believed to have many trillions. You’ll often see model names hint at this: Llama-3-70B has 70 billion parameters, Mistral-7B has 7 billion.
For users, parameter count is a rough size signal. Bigger isn’t always better — a well-trained smaller model often beats a poorly-trained larger one — but it correlates with capability.
Token
A token is the smallest unit of text an AI model works with. It’s usually a chunk of a word — not a whole word, not a letter. The word “happening” might be one token; “sushi” might be two (“su” + “shi”); “antidisestablishmentarianism” might be a dozen.
You care about tokens because they’re how AI usage is priced and limited. ChatGPT’s context window is measured in tokens. The OpenAI and Anthropic APIs charge per million tokens. As a rough rule, 1,000 tokens is about 750 English words.
You don’t need to count tokens manually — the tools handle it. But knowing they exist explains why long documents fill up the context window and why some pricing is “per million tokens” instead of “per query.”
Context Window
The context window is how much information an AI model can hold in mind at one time during a conversation. It includes your question, the model’s answer, everything you said earlier in the chat, any documents you uploaded, and any system instructions the developers set.
Context windows are measured in tokens. In 2026, common sizes range from 128,000 tokens (about 100,000 words — a long novel) to 2 million tokens (an entire book series). When you exceed the limit, the model starts to forget the earliest parts of the conversation.
For day-to-day use, this almost never matters. For long-document analysis, code review across many files, or extended multi-hour conversations, it matters a lot. Models from Gemini and Claude currently lead on context-window size.
Generative AI
Generative AI is the part of AI that creates new things — text, images, video, audio, code — instead of just classifying or analyzing existing data. Every popular AI tool you can name (ChatGPT, Claude, Midjourney, DALL-E, Suno, Sora) is generative AI.
The category exploded in late 2022 with ChatGPT and Stable Diffusion and has reshaped most knowledge work since. “Generative AI” is what most people mean when they say “AI” in casual conversation in 2026.
It’s distinct from older AI systems that classify (this email is spam) or predict numbers (the stock will go up tomorrow). Generative AI produces rather than judges.
Prompt
A prompt is the text you type into an AI tool to tell it what you want. “Write a haiku about coffee” is a prompt. So is a 500-word brief telling the model exactly how to draft a contract. Anything you give the model is a prompt.
Prompts are the single biggest factor in whether an AI gives you something useful. Two people can use the same model with very different results, entirely because of how they wrote their prompt. The skill of writing better prompts is called prompt engineering.
Prompt Engineering
Prompt engineering is the practice of writing prompts that reliably get useful results from AI models. It includes techniques like giving the model a clear role (“you are an editor”), showing examples of what good output looks like, telling it to think step by step, and being specific about the format you want.
You don’t need a technical background to do it. Most of prompt engineering is just being clearer about what you want than you’d be when asking a person. State the audience, the length, the tone, what to avoid, and what good looks like. The clearer the prompt, the better the result.
For beginners, learning the STACK framework (Situation, Task, Audience, Constraints, Format) covers about 80% of useful prompting.
Fine-tuning
Fine-tuning is when a company takes an already-trained AI model and trains it a little more on specialized data so it gets better at a specific task. It’s like hiring a professional editor and giving them your style guide.
You almost never fine-tune as an end user. It’s something AI labs and large companies do. For example, OpenAI starts with a base model and fine-tunes it to be helpful, harmless, and honest before releasing it as ChatGPT. A law firm might fine-tune a model on its own contracts to make it better at the firm’s specific style.
For most uses today, RAG (Retrieval-Augmented Generation) and good prompts work better than fine-tuning. Fine-tuning makes sense when you need consistent specialized behavior at scale.
RAG (Retrieval-Augmented Generation)
RAG is a technique that lets an AI model answer questions using your specific documents instead of just its training data. Before answering, the system searches your files, pulls the most relevant snippets, and gives them to the model along with your question.
Without RAG, asking ChatGPT “what does our company policy say about remote work?” gets you a generic guess. With RAG, the system retrieves the actual policy document first and the model answers from it — usually with the right page reference.
RAG is what powers most company-specific AI tools: knowledge-base assistants, document Q&A, customer-support bots that know your products. Google’s NotebookLM is a consumer-friendly version of the same idea.
Hallucination
A hallucination is when an AI model confidently states something that isn’t true. The model didn’t “lie” — it just generated plausible-sounding text that turned out to be wrong. Made-up citations, invented dates, non-existent court cases, and wrong API documentation are all hallucinations.
Hallucinations happen because LLMs predict the next word based on patterns, not by checking facts. The same mechanism that helps them write fluently also generates confident-sounding falsehoods when they don’t actually know something.
Practical defense: don’t trust factual claims from any AI without verifying. For research, use tools that cite sources (Perplexity, NotebookLM, ChatGPT with web browsing). For anything you’d be embarrassed to be wrong about, double-check.
Embedding
An embedding is the AI version of a fingerprint for a piece of text. The model converts a sentence, paragraph, or whole document into a long list of numbers (typically 1,000 to 4,000 of them) that captures its meaning in a way computers can compare.
You don’t see embeddings as an end user. But they power a lot of what you do see: similar-document search, “you might also like” recommendations, semantic search that finds “dog photos” even when the file is named IMG_4521.jpg, and the retrieval step in RAG.
The key property: two things with similar meaning have similar embeddings, even if they share no words. “Car” and “automobile” end up close together; “car” and “cardinal” end up far apart.
Temperature
Temperature is a setting that controls how predictable or creative an AI model’s responses are. Low temperature (close to 0) makes the model deterministic and conservative — it’ll pick the most likely next word every time. High temperature (1 or above) makes it more random and creative — it’ll sometimes pick less obvious words.
You don’t usually see temperature when chatting with ChatGPT or Claude — it’s set to a sensible default. It shows up when you use the API or developer tools. For factual Q&A you want low temperature (0.0–0.3). For brainstorming or creative writing you want higher (0.7–1.0).
Zero-shot Learning
Zero-shot means asking an AI to do a task without giving it any examples first. You just describe the task and the model figures it out from its general training. “Classify this email as spam or not spam” with no examples is a zero-shot prompt.
Modern LLMs are remarkably good at zero-shot tasks they were never specifically trained for — that’s one of the things that makes them useful. But for tricky or specialized tasks, giving the model a few examples (called few-shot) often produces better results.
Few-shot Learning
Few-shot means giving an AI two to five examples of what good output looks like before asking it to do the same on a new input. It’s one of the highest-leverage prompting techniques.
Instead of saying “summarize this article in my voice,” you’d paste three articles you’d already written summaries for — showing what your voice and structure look like — then paste the new article. The model copies the pattern. Few-shot dramatically improves output for anything where consistency matters: writing style, output format, classification, structured extraction.
Multimodal AI
Multimodal AI is a single model that can handle more than one kind of input or output — text, images, audio, video — not just one. Gemini can look at a photo and answer questions about it. ChatGPT‘s voice mode listens to you talk and talks back. Claude can read a PDF, look at a chart, and write the analysis in one conversation.
In 2026 most major AI assistants are multimodal by default. The shift from text-only to multimodal happened roughly between 2023 and 2025 and is one of the biggest practical upgrades the field has had — you can now point your phone at something and ask “what is this and how do I fix it?”
AI Agent
An AI agent is an AI system that doesn’t just answer your question — it takes actions to accomplish a goal. You tell it “book me a flight to Lisbon next Tuesday under $700,” and the agent opens a browser, searches multiple airlines, compares results, and reports back (or actually books, if you let it).
Agents are LLMs hooked up to tools: a web browser, your calendar, your email, a code interpreter, your file system. The model decides what tool to use, uses it, looks at the result, and decides what to do next. The loop is what makes it an agent rather than a chatbot.
2025-2026 has been the year agents went from research demos to actual products: OpenAI’s ChatGPT agent mode, Anthropic’s Claude with computer use, Google’s Project Mariner. They’re still imperfect — long workflows go off the rails — but the trajectory is clear.
Tool Use
Tool use is what lets an AI model do things beyond generating text — search the web, do precise math, run code, query a database, send an email, or move files. The model decides when to reach for a tool, calls it, and uses the result.
Without tool use, asking an LLM “what’s the current price of Bitcoin?” gets you a guess based on training data. With tool use, the model calls a web-search tool, reads the live price, and gives you the right answer with a source. Tool use is what turns a chatbot into something genuinely useful for real-world tasks.
Tool use is also the foundation of AI agents — agents are LLMs with access to many tools, deciding which to call in what order.
Function Calling
Function calling is the technical pattern that makes tool use work. Developers register a list of functions the AI can call (each with a name, description, and inputs); the model, when relevant, generates a structured request to call one; the developer’s code runs the function and returns the result; the model continues.
As an end user you mostly experience the results. But if you’re building anything with the OpenAI or Anthropic API, function calling is the mechanism. It’s how a customer-support bot looks up a real order, how a research assistant pulls from a database, how an agent buys you a flight.
Base Model
A base model is the raw output of pretraining — the model fresh out of seeing trillions of words of internet text, before anyone has shaped it to be helpful or harmless. Base models are good at completing text but lousy at following instructions. Ask a base model “what’s the capital of France?” and it might continue with “What’s the capital of Germany? What’s the capital of Spain?” instead of just answering.
You don’t interact with base models directly — they’re a stepping stone. The version you actually use (ChatGPT, Claude, Gemini) has been through additional training (see instruction-tuned model and RLHF) to make it conversational and useful.
Instruction-Tuned Model
An instruction-tuned model is a base model that’s been trained additionally to follow instructions. Instead of just continuing text, it understands “summarize this,” “translate that,” or “rewrite in a friendlier tone” and does the thing.
Almost every consumer AI assistant is instruction-tuned. The training process involves showing the model thousands of example (instruction, good response) pairs so it learns the pattern of helpful responses. After instruction tuning, models usually go through RLHF to refine helpfulness further.
API
An API (Application Programming Interface) is how one piece of software talks to another. The OpenAI API lets developers integrate ChatGPT into their own apps. The Anthropic API does the same for Claude.
For most users, the API never matters directly — you just use the web app or mobile app. But it explains why every AI tool you encounter (a chatbot inside a website, an AI writing feature in Notion, a customer-service agent) might be calling the same underlying model. The API is the plumbing.
Transformer Architecture
The transformer is the specific kind of neural network design behind every modern large language model. It was introduced in a 2017 paper by Google researchers titled “Attention Is All You Need.” The architecture turned out to scale up extraordinarily well, and the resulting flood of models eventually produced ChatGPT.
You don’t need to know how transformers work to use AI. But if you’ve ever wondered why so many model names end in “T” (GPT, BERT, T5), that’s why — it stands for “Transformer.”
Vector Database
A vector database is a specialized database for storing embeddings — the long lists of numbers that represent the meaning of text. It’s optimized to answer “find me the things most similar to this” quickly across millions of entries.
Vector databases power most RAG systems. When a user asks a question, the question gets converted to an embedding, the vector database returns the most similar stored embeddings (and the original text they came from), and that text gets fed into the LLM as context.
You’ll only deal with vector databases if you’re building AI tools. As an end user, they’re behind-the-scenes plumbing.
Agentic Workflows
An agentic workflow is a multi-step task an AI agent handles autonomously — researching across multiple sources, then writing a summary, then emailing it; or planning a trip by checking flights, hotels, and your calendar in sequence. The agent decides what step to take next based on what it found in the previous step.
Agentic workflows are what make agents useful in practice. A single AI action is rarely interesting; a chain of actions ending in a real outcome (a draft, a booking, a fix) is. The downside: long chains accumulate errors. The agent might be right on each step but wrong about the whole picture — one wrong assumption early on cascades.
Best practice in 2026: agentic workflows for research, comparison shopping, and structured data extraction work well. For anything with real money or legal consequences, keep a human in the approval loop.
RLHF (Reinforcement Learning from Human Feedback)
RLHF is one of the steps that turns a raw language model into something genuinely helpful. After basic training, the model goes through a process where humans rate its outputs — this answer is better than that one — and the model gradually learns to produce the kinds of answers humans rate highly.
It’s why modern LLMs are friendlier, more polite, and more aligned with what users actually want than the same models would be straight out of pretraining. RLHF was first popularized by OpenAI’s work on InstructGPT (the model behind early ChatGPT) and is now standard across the industry.
It has limits — RLHF teaches models to produce responses humans rate well, which isn’t always the same as responses that are correct or wise. But it’s the difference between a model that’s useful in daily life and one that isn’t.
AI Safety
AI safety is the field focused on making sure AI systems do what we actually want them to do, and don’t cause harm — especially as they become more capable and more autonomous. Concerns range from immediate ones (a model giving dangerous medical advice, a chatbot generating phishing emails) to long-term ones (highly capable agents pursuing goals that don’t match human values).
Practical AI safety work in 2026 includes red-teaming (deliberately trying to make models fail), building filters against harmful outputs, testing how models behave in unusual situations, and watching for unexpected behavior at scale. Anthropic, OpenAI, Google DeepMind, and a growing list of universities all have dedicated safety teams.
For end users, AI safety mostly shows up as the model declining certain requests — refusing to write malware, refusing to give medical dosing advice, etc. Those refusals exist because of safety research.
AI Alignment
AI alignment is the part of AI safety focused on the harder problem: making sure an AI’s goals actually match human values — not just in the cases the developers tested, but in novel situations the developers never imagined. A perfectly aligned AI does what you meant, not just what you said.
The problem is harder than it sounds because human values are messy, contradictory, and hard to write down precisely. Worse, a sufficiently capable AI might find clever ways to satisfy the letter of an instruction while missing the spirit of it.
Anthropic, the company behind Claude, was founded explicitly around this problem. You’ll see alignment come up whenever people debate whether more capable AI systems should be paused, regulated, or built differently. It’s a real open research problem, not a solved one.
Actuator
An actuator is the motor or muscle inside a robot. It turns electricity into motion. Without actuators, robots can’t move.
Agent Handoffs
Agent handoffs are the mechanism by which one AI agent transfers a task, conversation, or workflow to another agent (or to a human) when a different expertise or capability is needed.Who it’s for: Anyone learning…
Agentic AI
Agentic AI refers to AI systems that can take autonomous sequences of actions to complete complex goals — going beyond answering questions to actually doing things in the world.
AGI
AGI stands for Artificial General Intelligence — a hypothetical AI system that matches or exceeds human capability across nearly all cognitive tasks.
AI Augmentation vs Automation
AI augmentation means using AI to enhance and extend human capabilities — making people more capable, faster, or better informed.
AI Automation
AI automation is the use of artificial intelligence to perform tasks, make decisions, or execute workflows without requiring direct human involvement — replacing or reducing manual work through intelligent software…
AI Benchmark
An AI benchmark is a standardized test measuring AI model performance on specific tasks, enabling fair comparison between models and tracking of progress over time.
AI Co-Pilot
An AI co-pilot is an AI system designed to work alongside a human — assisting, suggesting, and enhancing the human’s work rather than replacing them.
AI Governance
AI governance refers to the laws, regulations, policies, standards, and organizational practices that guide how AI systems are developed, deployed, and used.
AI in Finance
AI in finance refers to the application of artificial intelligence across financial services — including fraud detection, credit underwriting, algorithmic trading, regulatory compliance, financial planning, and customer…
AI in Healthcare
What is AI in Healthcare? — everything you need to know Who it’s for: Beginners and professionals looking for practical guidance Best if: You want actionable steps you can use today Skip if: You’re already…
AI in Marketing
AI in marketing refers to the application of artificial intelligence across marketing functions — from content creation and ad targeting to customer segmentation, predictive analytics, and campaign optimization.
AI Infrastructure
AI infrastructure is the hardware, software, and systems required to train, deploy, and operate AI models at scale — including GPUs, data pipelines, model serving platforms, and monitoring tools.
AI Lip Sync
AI lip sync is when AI makes a person’s mouth move to match new words. You can take a video of someone talking and change what they say.
AI Literacy
AI literacy is the ability to understand what artificial intelligence is, how it works at a conceptual level, what it can and cannot do, and how to use AI tools effectively and critically.
AI Memory
Artificial intelligence (AI) is the field of computer science focused on building machines that can perform tasks that normally require human intelligence — things like understanding language, recognizing images, making…
AI Model
An AI model is the ‘brain’ of an AI tool. It’s trained on lots of data, then used to answer your questions or make pictures.
AI Orchestration
AI orchestration is the coordination and management of multiple AI models, tools, and processes to complete complex tasks — routing work to the right AI component at the right time, in the right sequence.
AI Plugins
A plain-English definition of AI plugins — what they are, how they differ from skills and integrations, and how they work in Claude, ChatGPT, and other major AI platforms in 2026.Who it is for: Anyone reading…
AI Powered Customer Service
AI-powered customer service is the use of artificial intelligence — chatbots, virtual agents, intelligent routing, and AI-assisted human agents — to handle customer inquiries, resolve issues, and deliver support at…
AI Readiness
AI readiness is the degree to which an organization has the data, infrastructure, talent, processes, and culture in place to successfully adopt and scale artificial intelligence.
AI Regulation
AI regulation refers to laws, rules, and guidelines that governments create to govern how artificial intelligence is developed, deployed, and used — balancing innovation against safety, fairness, and accountability.
AI ROI
AI ROI (Return on Investment) is the measurable business value generated by AI initiatives relative to the cost of developing, deploying, and maintaining them.
AI Search
AI search is a new generation of search technology that uses large language models to synthesize information from multiple sources and return a direct, conversational answer — rather than displaying a list of links for…
AI Skills Gap
The AI skills gap is the growing mismatch between the AI capabilities organizations need and the AI skills their current workforce possesses.
AI Slop
AI slop is low-quality, generic content generated by AI at high volume — articles, images, videos, and code that is technically functional but lacks originality, accuracy, and genuine human value.
AI Strategy
An AI strategy is an organization’s plan for how it will use artificial intelligence to achieve its business goals — defining which AI capabilities to build or buy, which problems to prioritize, how to build…
AI Washing
AI washing is the practice of falsely or misleadingly claiming that a product, service, or company uses artificial intelligence when the underlying technology is actually simpler, minimal, or entirely absent.
AI Wrapper
An AI wrapper is a software layer built on top of an existing AI model — like GPT-4 or Claude — that adds a user interface, extra features, or workflow logic without changing the underlying model itself.
Aider
Aider is an open-source command-line AI coding assistant.
Algorithm
An algorithm is a step-by-step set of instructions for solving a problem or completing a task.
Ambient AI
Ambient AI refers to artificial intelligence that is always present, passively observing and ready to assist without requiring explicit commands or screen-based interactions.
Andrej Karpathy
Andrej Karpathy is a leading AI researcher and educator.
Andrew Ng
Andrew Ng is a leading AI educator and entrepreneur. He co-founded Coursera, founded DeepLearning.AI, led Google Brain and Baidu’s AI Group, and taught the world’s most popular online machine-learning course.
Answer Engine Optimization Aeo
Answer Engine Optimization (AEO) is the practice of structuring content so that AI assistants, voice search engines, and answer-generating systems return your content as a direct answer to user queries — rather than…
Anthropic
Anthropic is the AI safety company behind Claude. Founded in 2021 by former OpenAI researchers, it focuses on building AI systems that are reliable, interpretable, and steerable.
Artificial General Intelligence AGI
Artificial General Intelligence (AGI) is the hypothetical capability of an AI system to perform any intellectual task that a human can — matching or exceeding human-level cognition across all domains.
Artificial Superintelligence ASI
Artificial Superintelligence (ASI) refers to a hypothetical AI that surpasses the cognitive abilities of the best human experts in every domain — science, creativity, strategy, and social intelligence alike.
Attention Mechanism
The attention mechanism is a technique that allows an AI model to focus on the most relevant parts of its input when producing each output.
Backpropagation
Backpropagation is the algorithm that teaches neural networks to learn.
Bash
Bash is the shell behind nearly every “Allow command?” prompt your AI tools show you. Here’s what it is, what to look for before you approve, and how it relates to other terms.
Bias in AI
Bias in AI refers to systematic errors in AI model outputs that unfairly favor or disadvantage particular groups.
Bolt
Bolt (Bolt.new) is StackBlitz’s AI-powered web development platform. It lets you build, run, and deploy full-stack web apps entirely in your browser through a chat interface with an AI agent.
Brain Computer Interface Bci
A BCI is a device that lets a person control a computer (or another device) directly with their brain. No hands needed, no voice needed — just thoughts.
Chain of Thought
Chain of Thought (CoT) is a technique for getting better answers from AI models by asking them to “think step by step” before answering.
Chain of Thought Prompting
Chain-of-thought prompting is a technique that instructs an AI model to show its reasoning step by step before giving a final answer, dramatically improving performance on complex tasks.
Character AI
Character AI is a consumer AI app where users create and chat with fictional characters — historical figures, anime characters, original creations, or copies of celebrities.
Chat Interface
A chat interface is the type-and-reply box you use to talk to AI, like ChatGPT or Claude. You type a message. The AI types back.
Chatbot
A chatbot is a computer program you can talk to in plain English. It reads what you type and writes back.
ChatGPT
ChatGPT is an AI chatbot made by OpenAI. Launched November 2022, now serves 700M+ weekly users — the most-used AI assistant in the world.
Claude
Claude is an AI chatbot made by Anthropic. It’s one of the three biggest AI chatbots, along with ChatGPT and Gemini.
Claude Artifacts
Artifacts are a Claude feature that displays code, documents, HTML pages, SVG diagrams, and other generated content in a side panel where you can see, edit, iterate, and run them — separate from the chat conversation.
Claude Code
Claude Code is Anthropic’s AI coding assistant that works in your terminal, IDE, Slack, or the web. Here’s what it is, how to install it on Mac/Windows/Linux, what it costs, and what it can actually do.
Claude Cowork
Claude Cowork is the part of Claude Code where you add tools, plugins, and custom helpers. Think of it as Claude’s ‘settings and customize’ area.
Claude Desktop
Claude Desktop is the free app you install on your Mac or Windows computer to chat with Claude. It’s the AI’s own app, like Slack or Zoom.
Claude in Chrome
Claude in Chrome is a Chrome browser extension from Anthropic. It puts Claude in a side panel of your browser, and the key thing it adds is this: that Claude ca…
Claude Projects
A Claude Project is a folder-like workspace that lives inside your Claude account. You give the project a name, upload a set of files to it, and maybe write a f…
Claude Skills
Skills are reusable instruction packages that turn Claude into a specialized assistant for repeated tasks. Each Skill bundles instructions, files, and tool access into something Claude loads on demand.
CLI
CLI stands for Command-Line Interface. It’s a way of using a computer program by typing short text commands into a black-and-white window called a termina…
Closed Weights
Closed-weight AI models are ones whose trained model files are kept private by the company that built them.
Codex
Codex is OpenAI‘s family of coding-focused AI models and tools. The current ChatGPT Codex (launched 2025) is a cloud-based agent that handles software-engineering tasks autonomously across a real codebase.
Coding Agents
Coding agents are AI systems that don’t just suggest snippets — they read your repository, plan changes, run commands, fix their own errors, and ship complete features.Who it’s for: Developers and…
Cohere
Cohere is a Toronto-based AI company that builds large language models targeted at enterprise customers.
Compound AI Systems
A compound AI system is an application that combines multiple AI models, tools, databases, and logic components working together — rather than relying on a single model to do everything.
Compute in AI
Compute is the umbrella term for the raw computational power — GPUs, TPUs, CPUs, memory, networking — needed to train and run AI models.Who it’s for: Anyone trying to understand why “access to compute” has become…
Computer Use
Computer Use is Anthropic‘s capability that lets Claude directly control a computer — moving the cursor, clicking buttons, filling in forms, taking screenshots, opening applications — as if a human
Computer Use in AI
Computer use in AI refers to the capability of an AI system to interact with a computer’s graphical user interface (GUI) — clicking buttons, typing in fields, navigating menus, and reading screen content — just…
Computer Vision
Computer vision is the field of AI that enables machines to see and interpret visual information — images, videos, and live camera feeds.
Constitutional AI
Constitutional AI trains models to critique their own outputs using written principles, enabling AI that understands values rather than just following rules — powering Claude.
Context Engineering
Context engineering is the practice of carefully designing and managing all the information fed to an AI model to get better, more reliable outputs.Who it’s for: Anyone learning AI terminologyBest if: You’ve…
Conversational AI
Conversational AI is technology that enables computers to understand and respond to human language in natural, dialogue-based interactions — powering chatbots, voice assistants, and AI customer service agents.
Cowork
Cowork is the feature in the Claude desktop app that lets Claude move around your computer and do work — open your browser, click through websites, rename files…
Cron
Cron is the small text format Unix systems have used since the 1970s to schedule recurring tasks. It is the same format AI tools like Claude Code use under the hood when they schedule themselves.
Cursor
Cursor is an AI-powered code editor built on top of VS Code. It lets developers write, edit, and debug code through natural-language conversation with an AI that has full project context.
Custom Gpts
Custom GPTs are personalized versions of ChatGPT, launched November 2023.
Dall E
DALL-E is OpenAI’s AI image maker. You type what you want, and it draws it. It’s built into ChatGPT.
Dario Amodei
Dario Amodei is the CEO and co-founder of Anthropic, the AI safety lab behind Claude. Previously VP of Research at OpenAI, he’s a leading voice on careful AI
Data Augmentation
Data augmentation is the process of artificially expanding a training dataset by creating modified versions of existing data — helping AI models learn to be more robust and generalize better.
Data Compliance Types
Plain-English guide to the compliance frameworks you see on AI tool marketing pages: SOC 2 Type II, GDPR, HIPAA, CCPA, ISO 27001, PCI-DSS, and FERPA.
Dataset
A dataset is a big collection of information used to teach an AI. The AI studies the dataset until it learns patterns.
Deep Research
Deep Research is an asynchronous AI research mode where the AI browses dozens of web sources for 5-15 minutes and writes a structured cited report. Available in Gemini, ChatGPT, and
Deepfake
A deepfake is a fake video, image, or voice made by AI that looks or sounds real. They can be used for fun, but they’re also used to trick people.
DeepSeek
DeepSeek is a Chinese AI lab whose open-weight models reached frontier-level performance at dramatically lower training costs.
Demis Hassabis
Demis Hassabis is the CEO of Google DeepMind and won the 2024 Nobel Prize in Chemistry for AlphaFold. He’s a leading figure in AI research and arguably the most decorated scientist among AI lab CEOs.
Diffusion Model
A diffusion model generates images by learning to reverse a noise-adding process, powering DALL·E, Midjourney, Stable Diffusion, and AI video generation.
Distillation in AI
Distillation in AI is a technique where a smaller ‘student’ model is trained to mimic a larger ‘teacher’ model — transferring knowledge and capability into a model that’s cheaper and faster…
Edge AI
Edge AI is the practice of running AI models directly on local devices — smartphones, cameras, sensors, cars, and industrial equipment — rather than sending data to a remote cloud server.
Elevenlabs
ElevenLabs is the leading AI voice and audio company.
Elon Musk
In the AI context, Elon Musk is the founder of xAI (the company behind Grok), co-founder of OpenAI (now in legal dispute with), and CEO of Tesla which deploys some o
Embodied AI
Embodied AI is AI that lives inside a physical body — like a robot. Instead of just typing answers, it moves, touches, and does things in the real world.
Emergent Behavior in AI
Emergent behavior in AI refers to capabilities that appear suddenly in large language models at certain scale thresholds — abilities that were absent in smaller versions of the same model and were not explicitly trained…
EU AI Act
The EU AI Act is the world’s first comprehensive law governing artificial intelligence — a risk-based framework that regulates AI applications from prohibited social scoring to high-risk medical and hiring systems.
Evals AI Evaluation
Evals (short for evaluations) are systematic tests used to measure how well an AI model performs on specific tasks, benchmarks, or quality criteria.Who it’s for: Anyone learning AI terminologyBest if: You’ve…
Explainable AI XAI
Explainable AI (XAI) refers to methods and techniques that make AI models’ decisions understandable to humans.
Federated Learning
Federated learning is a machine learning technique that trains AI models across multiple devices or servers without sharing raw data.
Foundation Model
A foundation model is a large AI model trained on a huge, diverse dataset that can then be adapted to many specific tasks. ChatGPT, Claude, Gemini, and
Frontier Model
A frontier model is one of the most capable AI models in existence at a given moment.
Function Calling in AI
Function calling is the mechanism by which AI models like GPT-4 and Claude request the execution of external functions or tools — outputting structured JSON that specifies which function to call and with what parameters.
GAN Generative Adversarial Network
A GAN (Generative Adversarial Network) is a type of AI system that generates realistic synthetic data — images, audio, video, or text — by pitting two neural networks against each other in a competition.
Gemini
Gemini is Google’s AI assistant. Launched Dec 2023 (replacing Bard), now the default AI on Android and built into Gmail, Docs, Sheets, Drive.
Gemini 3
Gemini 3 is the third major version of Google DeepMind‘s flagship AI model family. Released November 2025, it powers Gemini Advanced and is integrated across Google Workspace, Search, Pixel d
Gemini Gems
Gemini Gems are custom AI assistants you build inside Google Gemini — the direct equivalent of OpenAI’s Custom GPTs.
Generative Engine Optimization Geo
Generative Engine Optimization (GEO) is the practice of optimizing content and digital presence so that AI-powered answer engines — like ChatGPT, Claude, Perplexity, and Google’s AI Overviews — are more likely to…
Geoffrey Hinton
Geoffrey Hinton is the “Godfather of Deep Learning” — winner of the 2018 Turing Award (with Yann LeCun and Yoshua Bengio) and the 2024 Nobel Prize in Physics for his foundational work on neural networks.
GitHub
GitHub is the website where most of the world’s open-source code lives — like Google Docs for programmers. Plain-language explainer for beginners.
Github Copilot
GitHub Copilot is the original AI coding assistant — an in-editor tool from Microsoft and GitHub that suggests code completions, writes functions, and answers questions about your codebase.
Google AI Studio
Google AI Studio is the free browser-based development environment where developers can experiment with Gemini models, test prompts, and prototype AI features before deploying via the Gemini API.
Google Antigravity
Antigravity is Google‘s AI-first development platform launched in 2025. It’s a code editor with deep Gemini integration plus an agent that can complete multi-file coding tasks autonomously.
Google Deepmind
Google DeepMind is the AI research division at Google. It builds Gemini (Google’s flagship AI assistant) and is the lab behind landmark research like A
GPT 5
GPT-5 is the flagship large language model from OpenAI, released in August 2025. It powers ChatGPT across all tiers and is widely considered the most capable frontier model from OpenAI as of 2026.
GPT Store
The GPT Store is OpenAI‘s marketplace where users can browse, share, and use Custom GPTs — specialized versions of ChatGPT built by other users.
GPU Computing
GPU computing is the use of graphics processing units to accelerate computational tasks, particularly the massive parallel matrix operations that train and run modern AI models.
Gradient Descent
Gradient descent is the optimization algorithm that trains most AI models.
Grok
Grok is the AI assistant built by xAI, Elon Musk’s AI company. It powers conversational AI on X (formerly Twitter) and as a standalone product at grok.com.
Grounding in AI
Grounding in AI refers to connecting an AI model’s outputs to verifiable, real-world information — reducing hallucinations by anchoring responses in actual facts, documents, or data.
Guardrails in AI
Guardrails in AI are safety mechanisms and rules that constrain an AI system’s behavior to prevent harmful, off-topic, or unreliable outputs.Who it’s for: Anyone learning AI terminologyBest if: You’ve…
GUI
GUI stands for Graphical User Interface. It’s the normal kind of app — windows you can resize, buttons you can click, menus that drop down, icons you can …
Hooks
Hooks in Claude Code are automated scripts that run before or after certain AI actions — the “if this, then that” layer for your AI workflow.
Hugging Face
Hugging Face is the central hub of the open-source AI community — a website where developers share, download, and try out tens of thousands of open-weight AI models, datasets, and demos for free.
Human in the Loop
Human-in-the-loop (HITL) is a design approach where a human reviewer is integrated into an AI system’s decision-making process — providing oversight, approvals, or corrections at key points rather than letting the…
Humanoid Robot
A humanoid robot is a robot shaped like a human. Two legs, two arms, a head with cameras for eyes. Examples: Tesla Optimus, Figure 02, Boston Dynamics Atlas.
Image to Video
Image-to-video is when you give AI a still picture and it turns it into a short moving video. Your photo comes alive.
in Context Learning
In-context learning is the ability of large language models to adapt to new tasks using only information provided in the current prompt — without updating model weights or additional training.
IndexNow
IndexNow is a free protocol that lets website owners tell Bing and Yandex instantly when content changes, so it gets indexed and shown in search faster.
Inflection AI
Inflection AI is the company behind Pi, a consumer AI assistant designed to be friendly, supportive, and conversational rather than task-focused.
Inpainting
Inpainting is when AI fills in or changes a specific part of an image. You mark an area. The AI redraws just that area, keeping everything else the same.
Intelligent Document Processing
Intelligent Document Processing (IDP) is the use of AI — including optical character recognition (OCR), natural language processing, and machine learning — to automatically extract, classify, and process information…
Jailbreaking in AI
Jailbreaking in AI refers to techniques that attempt to bypass an AI model’s safety guidelines and content restrictions, tricking it into producing outputs it was designed to refuse.
JSON
JSON (JavaScript Object Notation) is a lightweight, text-based data format used to send structured information between computers.
Kimi
Kimi is the AI assistant from Moonshot AI, a Chinese AI lab.
Knowledge Cutoff
A knowledge cutoff is the last date the AI learned anything. Ask it about news after that date and it won’t know.
Knowledge Distillation
Knowledge distillation is a technique where a small, fast AI model is trained to mimic the behavior of a larger, more capable one.
Latency in AI
Latency is how long it takes an AI to answer you. Lower is faster. Higher is slower.
Llama
Llama is the family of open-weight large language models from Meta AI.
Lmm Large Memory Models
An LMM is an AI architecture that adds a persistent memory module to a transformer, so the model can store, retrieve, and selectively forget information across very long contexts.
LORA in Image AI
A LoRA is a small file you add to an AI image tool so it can draw a specific style or character. Think of it as a skill pack.
LORA Low Rank Adaptation
LoRA (Low-Rank Adaptation) is a technique for fine-tuning AI models efficiently by only updating a small fraction of the model’s parameters instead of all of them.Who it’s for: Anyone learning AI…
Loss Function
A loss function (also called a cost function or objective function) is a mathematical formula that measures how wrong an AI model’s predictions are.
Lovable
Lovable is an AI app-building platform that turns a plain-English description into a deployed web application.
Lyria
Lyria is Google’s family of generative AI music models. The latest version, Lyria 3, can generate full songs with vocals, instruments, and structure from a text prompt — and is integrated into Gemini.
Managed Agents
Managed Agents are AI agents that run on a vendor’s servers on a schedule, doing repeating work without needing you to be present.
MCP
MCP (Model Context Protocol) is the new open standard that lets AI assistants like Claude connect to your apps and files. This beginner-friendly guide explains exactly what it is, how it works, and why it matters.
MCP Model Context Protocol
MCP (Model Context Protocol) is an open standard by Anthropic for connecting AI models to external tools, data sources, and services in a consistent, interoperable way — like a USB standard for AI integrations.
Mechanistic Interpretability
Mechanistic interpretability is a field of AI safety research that tries to understand exactly what computations are happening inside a neural network — reverse-engineering the specific circuits, features, and…
Memory Cache in AI
Memory cache (often called prompt caching or KV caching) is an AI optimization that stores the work the model already did on repeated parts of a prompt, so it doesn’t have to redo it on every request.Who…
Meta AI
Meta AI is the AI division at Meta (Facebook, Instagram, WhatsApp).
Midjourney
Midjourney is an AI that makes pictures from your words. You type a description, and it creates art in seconds.
MIE Memory Integrity Enforcement
MIE is Apple’s hardware-level memory safety system on Mac M5 chips. It physically blocks most exploits that target the memory bugs hackers usually rely on.
Mira Murati
Mira Murati was the Chief Technology Officer of OpenAI during the launch of ChatGPT, GPT-4, and DALL-E.
Mistral
Mistral AI is a French AI company that builds open-weight large language models. Their models punch above their size and are widely used by developers who want self-hosted alternatives to OpenAI and Anthropic.
Mixture of Experts
Mixture of Experts (MoE) is a model design where a large neural network is split into many specialized “expert” subnetworks.
Mixture of Experts MOE
A Mixture of Experts (MoE) is an AI architecture where a large model is divided into many specialized “expert” sub-networks, and for each input, only a small fraction of those experts are activated.
Mlops
MLOps (Machine Learning Operations) is the discipline of applying DevOps principles to machine learning systems — making AI models reliable, reproducible, and maintainable in production.
Model Card
A model card is a standardized document that describes an AI model — what it does, what data it was trained on, what it’s good at, what it’s bad at, and its known biases.
Model Collapse
Model collapse is a phenomenon where an AI model trained on AI-generated data progressively degrades in quality, eventually losing the diversity and accuracy of the original human data it learned from.
Model Deployment
Model deployment is the process of making a trained AI model available to real users or systems — moving it from a development environment into production where it can handle real requests at scale.
Model Routing
Model routing is the practice of automatically directing AI requests to different models based on the complexity, cost, or type of each task.Who it’s for: Anyone learning AI terminologyBest if: You’ve seen…
Multi Agent Systems
Multi-agent systems are networks of AI agents that work together, each handling specialized subtasks, to accomplish goals that would be too complex for a single agent alone.
N1 Chip
The N1 is the brain chip made by Neuralink. It’s the tiny chip they put inside a person’s skull to read brain signals.
Narrow AI
Narrow AI (also called Weak AI) refers to AI systems designed and trained for a specific task — the category that includes all AI in existence today, from chess engines to language models to recommendation systems.
Natural Language Processing NLP
Natural Language Processing (NLP) is the field of AI focused on enabling computers to understand, interpret, and generate human language.
Negative Prompt
A negative prompt is a list of things you DON’T want in your AI-generated image. Most image AI tools let you add one.
Neuralink
Neuralink is a company started by Elon Musk that makes brain chips. The chip is placed in the brain so a person can control computers with their thoughts.
Neuromorphic Computing
Neuromorphic computing is a computer hardware design philosophy that mimics the structure and operation of biological brains — using artificial neurons and synapses to process information with extreme energy efficiency.
NotebookLM
NotebookLM is Google’s research notebook — an AI you can upload up to 50 sources to and chat with, with citations on every answer.
on Device AI
On-device AI refers to artificial intelligence that runs directly on a local device — a smartphone, laptop, wearable, or IoT sensor — rather than sending data to a cloud server for processing.
Open Source AI
Open source AI means the AI is free for anyone to download, look at, change, and share. Closed source AI is locked up inside one company.
Open Weights
An open-weight AI model is one where the trained model files are publicly downloadable.
OpenAI
OpenAI is the AI company behind ChatGPT, GPT, DALL-E, Sora, Whisper, and ChatGPT Operator. Founded 2015 in San Francisco, led by Sam Altman, ~$300B valuation in 2026. Plain-English glossary entry.
Optimus Tesla Robot
Optimus is Tesla’s humanoid robot. It walks on two legs, has two arms, and is built to do jobs humans don’t want to do.
Overfitting
Overfitting is a fundamental problem in machine learning where a model learns the training data too well — including its noise and quirks — and performs poorly on new, unseen data.
P(doom)
P(doom) is shorthand for “probability of doom” — specifically, the probability that advanced AI causes human extinction or civilizational collapse.
Parallelization in AI
Parallelization is the practice of doing many calculations at the same time, across many chips and machines, instead of doing them one after another.Who it’s for: Anyone trying to understand why training a…
Parameter
In AI, a parameter is a numerical value inside a model that gets adjusted during training to improve its predictions.
Perplexity
Perplexity is an AI-powered answer engine that combines web search with the conversational style of ChatGPT. Every answer comes with cited sources you can click to verify.
Personalization in AI
AI personalization is the process of adapting an AI system’s outputs, recommendations, and behavior to match individual user preferences, history, and context.
Playwright
Playwright is a free, open-source library made by Microsoft. It lets a program control a web browser — open pages, click buttons, fill forms, grab text, take sc…
Plugin in AI
A plugin is a small add-on that gives an AI a new skill. Think of it like adding a new app to your phone.
Pre Training
Pre-training is the first phase of building a large AI model, where it trains on a massive, diverse dataset to learn general-purpose representations of language, images, or other data.
Predictive Analytics
Predictive analytics is the use of statistical algorithms, machine learning, and data mining techniques to forecast future events or behaviors based on historical data.
Project Glasswing
Project Glasswing is Anthropic’s initiative to give major infrastructure companies early access to Claude Mythos for defensive security research.
Prompt Chaining
Prompt chaining is the technique of breaking a complex task into a sequence of smaller prompts, where the output of one prompt becomes the input for the next, creating a chain of AI reasoning steps.
Prompt Injection
Prompt injection is a security attack where malicious instructions embedded in external content — a webpage, document, or user message — override or hijack an AI model’s intended behavior.
Quantization
Quantization is a technique for shrinking an AI model by storing its internal numbers (weights) at lower precision — 8-bit or 4-bit instead of the standard 16-bit or 32-bit.
Quantization in AI
Quantization in AI reduces the numerical precision of model weights — for example, from 32-bit floats to 4-bit integers — making models dramatically smaller and faster to run while preserving most of their capability.
RAMageddon
RAMageddon is industry slang for the severe shortage of memory chips — DRAM and HBM — caused by AI data-centre demand outstripping supply.Who it’s for: Anyone wondering why GPUs cost so much and laptops feel so…
React Pattern
ReAct is a design pattern for AI agents where the model alternates between Reasoning (thinking through the problem) and Acting (calling tools or taking actions in the world).
Reasoning Model
A reasoning model is an AI that spends extended time ‘thinking’ through a problem step by step before answering — trading speed for accuracy on complex math, logic, and multi-step tasks.
Reasoning Models
Reasoning models are AI models specifically designed to think through problems step-by-step before answering, producing more accurate results on complex tasks that require logic, math, or multi-step analysis.Who…
Red Teaming in AI
Red teaming in AI is the organized practice of adversarially probing AI systems to find safety failures, harmful outputs, and vulnerabilities before they’re discovered and exploited in the real world.
Reinforcement Learning
Reinforcement learning (RL) is a type of machine learning where an AI agent learns by trial and error, receiving rewards for good actions and penalties for bad ones.
Replit
Replit is a browser-based coding platform with deep AI integration.
Research Preview
"Research preview" is Anthropic’s label for a feature that is live and usable, but not finished. You can turn it on; it just isn’t the com…
Responsible AI
Responsible AI is the practice of designing, deploying, and governing artificial intelligence systems in ways that are safe, fair, transparent, and aligned with human values and societal well-being.
Reward Hacking
Reward hacking is when an AI system finds a way to maximize the reward signal it was trained on without actually doing the task humans wanted. The system technically “wins” but in a way that misses the point.
Robotic Process Automation RPA
Robotic Process Automation (RPA) is software technology that uses “software robots” or “bots” to automate repetitive, rule-based digital tasks by mimicking human interactions with computer…
Robotics
Robotics is the part of science and engineering that builds robots. A robot is a machine that can sense the world, think, and act.
Runway
Runway is an AI video tool built for creative pros. It makes videos from text, photos, or other videos. It’s known for giving users lots of controls.
Sam Altman
Sam Altman is the CEO of OpenAI, the company behind ChatGPT. He’s become the public face of consumer AI and one of the most influential figures shaping how the technology gets built and deployed.
Scaling Laws in AI
Scaling laws in AI are mathematical relationships that describe how a model’s performance improves predictably as you increase compute, data, and model size.
Self Attention
Self-attention is the mechanism at the heart of transformer models that allows each word (or token) in a sequence to weigh its relevance to every other word — enabling AI to understand context across long distances in…
Sentiment Analysis
Sentiment analysis is an NLP technique that automatically identifies the emotional tone of text — whether it is positive, negative, or neutral.
Shadow AI
Shadow AI refers to the use of AI tools by employees without the knowledge, approval, or oversight of their organization’s IT or security teams.
Small Language Model Slm
A Small Language Model (SLM) is a language model with a relatively small number of parameters — typically ranging from 1 billion to 13 billion — designed to run efficiently on local devices and resource-constrained…
Sora
Sora is OpenAI’s AI that makes videos from your words. You type a short description, and it makes a real-looking video.
Specification Gaming
Specification gaming is when an AI achieves the literal goal it was given but in a way that violates the spirit of what humans actually wanted.
Speech to Text Stt
Speech-to-text (STT), also called automatic speech recognition (ASR), converts spoken audio into written text. Modern AI-powered STT achieves human-level accuracy across many languages and accents.
Stability AI
Stability AI is the company that created Stable Diffusion, the open-weight image generation model that launched the consumer AI image revolution in August 2022.
Stable Diffusion
Stable Diffusion is a free, open-source AI that makes pictures from text. You can run it on your own computer or on a website.
Structured Output
Structured output is when an AI model generates responses in a specific, machine-readable format — like JSON, XML, or a defined schema — rather than free-form text, enabling reliable downstream processing.
Suno
Suno is an AI music generation platform that creates complete songs — with vocals, instruments, and lyrics — from a short text prompt. It’s the most popular tool in the rapidly growing AI music category.
Superintelligence
Superintelligence (also called ASI — Artificial Superintelligence) is a hypothetical AI system that surpasses human intelligence across nearly every domain.
Supervised Learning
Supervised learning is a type of machine learning where an AI model trains on labeled examples — data that already has the correct answers attached.
Synthetic Data
Synthetic data is artificially generated data that mimics the statistical properties of real data without being directly derived from real-world observations or actual people.
System Prompt
A system prompt is a set of instructions given to an AI model before the conversation begins, shaping its personality, capabilities, constraints, and how it responds to users.
TEE Trusted Execution Environment
A TEE is a walled-off section of a computer chip where data is processed in a way that even the device’s owner cannot see. Used in AI for stronger privacy claims.
Temperature in AI
Temperature is a setting that controls how creative or safe the AI’s answers are. Low temperature = boring but accurate. High temperature = creative but wild.
Test Time Compute
Test-time compute (also called inference-time compute) is the idea of giving an AI model more processing time and computational resources when answering a question — allowing it to “think harder” and produce…
Text to Image
Text-to-image AI generates photorealistic or artistic images from natural language descriptions — type a prompt, get an image.
Text to Speech Tts
Text-to-speech (TTS) is AI technology that converts written text into spoken audio — generating natural-sounding human voices from text input. Modern TTS is nearly indistinguishable from human speech.
Text to Video
Text-to-video AI generates video clips from natural language descriptions — type a prompt and the AI creates moving, coherent video. This technology advanced rapidly in 2024 with models like Sora, Runway, and Kling.
Token in AI
In AI, a token is the basic text unit language models process — roughly 0.75 words — determining both context limits and API pricing.
Token Throughput
Token throughput measures how many tokens an AI system can produce per second — a combined measure of how fast individual answers feel and how many users a system can serve at once.Who it’s for: Anyone comparing…
Tokenization
Tokenization is the process of splitting text into smaller units called tokens that an AI model can process.
Tool Use in AI
Tool use in AI is the ability of a language model to call external tools — like web search, code execution, calculators, or APIs — to gather information or take actions beyond what text generation alone can provide.
Training Data
Training data is the collection of examples an AI model learns from during the training process.
Transfer Learning
Transfer learning is a technique where an AI model trained on one task is reused as the starting point for a different but related task.
Transformer in AI
A Transformer is the neural network architecture behind all major AI language models, using ‘attention’ to understand relationships between words in an entire sequence at once.
Tree of Thoughts
Tree of Thoughts (ToT) is a reasoning technique where an AI model explores multiple possible solution paths in parallel, evaluates each branch, and prunes weak ones — like a chess engine but for general problems.
Uav Unmanned Aerial Vehicle
UAV means ‘Unmanned Aerial Vehicle.’ That’s the official name for a drone. No pilot on board.
Unsupervised Learning
Unsupervised learning is a branch of machine learning where an AI finds patterns in data without being given any labels or correct answers.
Upscaling in AI
Upscaling is when AI takes a small or blurry picture and makes it bigger and sharper. Magic-zoom, basically.
V0
v0 (v0.dev) is Vercel’s AI tool for generating user interfaces from a plain-English prompt.
Vae Variational Autoencoder
A Variational Autoencoder (VAE) is a type of generative AI model that learns a compressed, structured representation of data and can generate new, realistic examples by sampling from that learned representation.
Validation Loss
Validation loss is the score an AI model gets on data it didn’t train on — the most reliable signal of whether the model is actually learning, or just memorising.Who it’s for: Beginners trying to understand…
Veo
Veo is Google DeepMind’s AI that makes videos from text. It’s Google’s answer to OpenAI’s Sora.
Vibe Coding
Vibe coding is a software development approach where you describe what you want in plain language and let AI generate the code — building apps through conversation and intent rather than writing syntax.
Vision Language Model
A vision-language model (VLM) is an AI system that understands and reasons about both images and text together — enabling tasks like image captioning, visual question answering, and describing what’s in a photo.
Voice AI
Voice AI is technology that enables computers to understand, process, and generate human speech — powering everything from voice assistants like Siri and Alexa to real-time AI phone calls, audio transcription, and…
Web Feeds Rss and Atom
Web feeds (RSS and Atom) are machine-readable summaries of a website’s latest content, designed so any software can subscribe to updates without scraping the site.Who it’s for: Anyone who wants to follow…
Weights in AI
Weights are the numerical values inside an AI model that determine how strongly each input feature contributes to the model’s output.
Whisper
Whisper is OpenAI‘s speech-to-text (ASR) model. It transcribes audio into text across 99+ languages with high accuracy and is open-source, meaning developers can run it themselves.
Windsurf
Windsurf is an AI-powered code editor that competes with Cursor. Built by Codeium, it offers an “agent flow” that can complete multi-step coding tasks autonomously across an entire codebase.
Workflow in AI
A workflow is a set of steps that happen in order, usually without you. In AI, it’s when one thing happens, then the AI does the next thing, then the next, until the task is done.
XAI
xAI is Elon Musk’s AI company. It makes Grok, an AI chatbot connected to X (formerly Twitter).
Yann Lecun
Yann LeCun is Chief AI Scientist at Meta AI and one of the three winners of the 2018 Turing Award for foundational deep learning work.
Yoshua Bengio
Yoshua Bengio is one of the three winners of the 2018 Turing Award for foundational deep learning research.
No terms match. Try a shorter or different word.
How to Use This Glossary Most Effectively
Learning AI vocabulary is most effective when it is contextual rather than rote. The best approach is to encounter a term in the wild, look it up here, and then watch for it in subsequent articles, tool descriptions, or conversations. Repetition in varied contexts is how vocabulary becomes truly internalized.
If you are just starting out, prioritize five terms above all others: LLM, prompt, context window, hallucination, and AI agent. These five concepts will unlock your understanding of at least 90 percent of what you read about AI in 2026. Every other term in this glossary adds nuance and depth, but those five are the foundation.
- LLM — the technology powering nearly every AI text tool
- Prompt — how you communicate with AI systems
- Context window — understanding memory and length limits
- Hallucination — knowing when to verify AI outputs
- AI agent — the direction AI is heading for automation
For a practical introduction to working with the best AI tools available today, read our roundup of the 15 best AI tools for beginners. Each tool in that list maps directly to concepts in this glossary, giving you concrete examples of the theory in practice.
Frequently Asked Questions
What is the difference between AI and machine learning?
AI is the broad field of making computers perform intelligent tasks. Machine learning is one of the most successful methods for achieving AI — it involves teaching computers to learn patterns from data rather than programming explicit rules. All machine learning is AI, but not all AI uses machine learning. Rule-based expert systems, for example, are AI without ML. In practice, nearly all modern AI applications you interact with are powered by machine learning.
What does training data mean in the context of AI?
Training data is the dataset used to teach an AI model. For a language model, training data typically consists of hundreds of billions of words of text gathered from the web, books, academic papers, code repositories, and other sources. The quality, diversity, and size of training data heavily influence what a model knows, what biases it may reflect, and how capable it is across different tasks. The training cutoff date also determines what recent events the model is unaware of.
What is the difference between a chatbot and an AI agent?
A traditional chatbot follows pre-scripted decision trees and responds to keywords. An LLM-powered chatbot understands natural language and handles flexible, open-ended conversations. An AI agent goes further still — it can autonomously use tools, browse the web, write and execute code, send communications, and complete multi-step tasks without step-by-step human direction. The key distinction is autonomy: chatbots are reactive, agents are proactive.
Why do AI models sometimes give confidently wrong answers?
Language models generate text by predicting what comes next based on statistical patterns in their training data. They are not retrieving facts from a verified database. This means they can generate plausible-sounding but incorrect answers — particularly for obscure topics, recent events after their training cutoff, or specialized factual questions requiring precision. This limitation is well understood, and solutions like RAG, web search integration, and structured fact-checking workflows address it in production applications.
How quickly is AI vocabulary evolving in 2026?
Very rapidly. Major new capabilities and architectures emerge every few months, bringing new terminology with them. In 2022, terms like RAG, agentic workflows, and multimodal AI were largely unknown outside research circles. By 2025 they were mainstream business concepts. Staying current requires ongoing reading — subscribing to a quality AI newsletter is the most efficient approach. Subscribe below to get our daily breakdown of what matters most.
More Glossary Entries
Plain-English definitions of more AI terms you’ll see in 2026:
- What is AI Infrastructure? — AI Glossary
- What is AI Literacy?
- What is AI Slop? — AI Glossary
- What is Bias in AI? — AI Glossary
- What is Computer Use (in AI)?
- What is Computer Vision? — AI Glossary
- What is Fine-Tuning? — AI Glossary
- What is GPU Computing? — AI Glossary
- What is Generative AI? — AI Glossary
- What is Grounding (in AI)? — AI Glossary
- What is Human-in-the-Loop?
- What is LoRA (Low-Rank Adaptation)?
- What is Model Routing?
- What is Pre-Training? — AI Glossary
- What is Prompt Injection? — AI Glossary
- What is Reinforcement Learning? — AI Glossary
- What is Small Language Model (SLM)?
- What is Supervised Learning? — AI Glossary
- What is Synthetic Data? — AI Glossary
- What is Training Data? — AI Glossary
- What is Transfer Learning? — AI Glossary
- What is Zero-Shot Learning? — AI Glossary
- What is a Context Window? — AI Glossary
- What is a Loss Function? — AI Glossary
- What is a Neural Network? — AI Glossary
You May Also Like
- What are Evals (AI Evaluation)?
- What is Context Engineering?
- What Is Artificial Intelligence
- AI for Dummies
- How Does AI Work
- Essential AI Skills
- Best AI Tools for Beginners
Sources
This article draws on official documentation, product pages, and industry reporting. Specific sources are linked inline throughout the text.
Last reviewed: April 2026
