Home / Guides  ·  September 2026

AI Jargon Glossary

Every AI term you'll meet as a beginner, explained in one or two plain sentences. Bookmark this — you'll be back.

Grand library hall
Photo: Unsplash

The essentials

TermPlain meaning
AI / artificial intelligenceSoftware that performs tasks needing human-like judgment: understanding language, recognizing images, making predictions.
Generative AIAI that creates new content — text, images, code, audio — rather than just classifying or predicting.
LLMLarge language model: AI trained on vast text to understand and generate human-like language. ChatGPT, Claude, Gemini.
PromptThe instruction you give an AI. Better prompts = better results; it's a skill, and it's learnable.
TokenA chunk of text (roughly ¾ of a word) — the unit AI reads and bills by. Long chats consume thousands.
Context windowHow much text the AI can consider at once. Bigger window = longer documents and conversations remembered.
HallucinationConfident-sounding false output. LLMs predict plausible text, not verified facts — check important claims.
Training data / cutoffThe text the model learned from, frozen at a date. Anything newer is unknown unless the tool browses the web.

Using AI well

TermPlain meaning
System promptHidden instructions shaping the AI's behavior (tone, rules). You can often add your own custom instructions.
TemperatureA creativity dial: low = predictable and factual, high = surprising and varied. Most apps hide this.
Few-shot promptingShowing the AI 2–3 examples of what you want before asking. Massively improves format compliance.
Chain of thoughtAsking the AI to reason step by step ("think through this carefully") — improves complex answers.
RAGRetrieval-augmented generation: the AI looks up your documents before answering. How chatbots "know" your files.
AgentAI that takes multi-step actions (browse, click, run code) toward a goal, not just one reply. Powerful, needs supervision.
Fine-tuningExtra training on specific data to specialize a model. Overkill for beginners; prompting usually suffices.
EmbeddingsNumbers capturing text meaning, enabling semantic search ("find similar"). Infrastructure you'll never touch directly.

Models, safety & ecosystem

TermPlain meaning
Foundation modelA big general-purpose model others build on (GPT, Claude, Gemini, Llama). The engine under many apps.
Open weightsModels you can download and run yourself (like Llama). "Open" varies — check the actual license.
MultimodalHandles multiple input types: text plus images, audio, or video. Most flagships are now multimodal.
Alignment / guardrailsTraining and filters steering AI away from harmful outputs. Why models refuse some requests.
JailbreakTricking a model past its guardrails. A security research topic — and a terms-of-service violation on most platforms.
BenchmarkStandardized tests scoring models (bar exams, coding tasks). Useful directionally; gameable and narrow.
APIThe paid pipe developers use to embed AI in apps. You pay per token; playgrounds let you test without coding.
CopilotAI assistant embedded in a tool (coding, Office, browser). The generic pattern; also Microsoft's brand name.
Diffusion modelImage-generation AI that refines noise into pictures (Midjourney, DALL-E, Firefly). Different tech from LLMs.

Quick answers

What is an LLM?

A large language model — AI trained on vast text to understand and generate human-like language.

What is an AI hallucination?

Confident-sounding false output. Always verify important AI claims against real sources.

Continue the path