Agentic
Describes AI that acts with initiative: planning, choosing tools, and taking multiple steps toward a goal rather than replying once.
It is the buzzword for the whole shift from chatbots to systems that get work done.
Every term you keep running into, decoded in one plain read. No jargon walls. Each entry: what it means, why it matters, and where to go next. 53 terms and counting.
Describes AI that acts with initiative: planning, choosing tools, and taking multiple steps toward a goal rather than replying once.
It is the buzzword for the whole shift from chatbots to systems that get work done.
A program built on a language model that can take goals, make decisions, use tools, and act on its own across multiple steps, not just answer a single question.
This is the shift from a chatbot that talks to a system that does. Agents can book, search, write, and update real systems.
The ongoing work of making an AI's behavior match human intentions and values, so it is helpful, honest, and harmless.
It is the difference between a capable model and a trustworthy one.
A defined way for one piece of software to talk to another. AI models are usually accessed through an API.
It is how developers plug a model into apps, and how tools plug into an agent.
The mechanism inside a transformer that lets the model weigh how much each word should influence every other word when forming meaning.
It is how a model keeps track of context and relationships across a sentence or a document.
A standard test used to compare models on a specific skill, such as reasoning, math, or coding.
Benchmarks are useful signals but easy to over-trust. A high score does not guarantee a good fit for your task.
Prompting a model to work through its reasoning step by step before giving a final answer.
It noticeably improves accuracy on math, logic, and multi-step problems.
The maximum amount of text, measured in tokens, that a model can hold in mind at once, including your prompt and its own reply.
Go past it and the model forgets the earliest parts. It sets how much document or history you can work with in one shot.
A type of model that generates images by starting from random noise and refining it step by step into a coherent picture.
It is the technology behind most AI image generators, a different approach from the language models that power chat.
Training a smaller model to imitate a larger one, capturing much of its ability in a cheaper, faster package.
It is how providers ship small models that punch above their size for everyday tasks.
A way of turning text into a list of numbers that captures its meaning, so a computer can measure how similar two pieces of text are.
Embeddings power search, recommendations, and RAG. They are how AI finds "related" things by meaning, not keywords.
Giving the model a handful of worked examples inside your prompt so it copies the pattern.
Often the fastest way to lock in a format or style without any fine-tuning.
Further training an existing model on your own examples so it adopts a specific style, format, or specialty.
It bakes behavior into the model itself, useful when prompting alone cannot get consistent results.
Tying an AI answer to real, checkable sources instead of the model's memory alone.
Grounded answers can be trusted and cited. Ungrounded ones are just confident guesses.
Rules and filters that keep an AI inside safe, on-topic, and accurate boundaries, blocking bad outputs or risky actions.
They are what makes an agent safe to point at real customers and real systems.
When a model states something false with full confidence, because it is predicting plausible-sounding language, not looking up facts.
It is the number-one risk in real use. Anything factual from an AI needs verification.
The act of actually running a model to produce an answer. Training builds the model once; inference is every time you use it afterward.
Inference is what you pay for per use and what determines speed. It is the running cost of AI.
A crafted prompt that tricks a model into ignoring its safety rules and producing content it is meant to refuse.
It is a core safety concern and the reason guardrails need constant testing.
The date after which a model has no built-in knowledge, because its training data stopped there.
It is why a model may not know recent events unless it is given search or fresh documents.
The delay between sending a request to a model and getting a response back.
It shapes how an app feels. Reasoning models are more accurate but slower, a real trade-off to weigh.
A system trained on enormous amounts of text to predict the next chunk of language. That simple ability, at scale, produces reading, writing, reasoning, and answering.
The LLM is the raw engine under every chatbot and agent. Everything else bolts onto it.
An efficient fine-tuning method that trains a small add-on layer instead of the whole model, saving time and compute.
It makes customizing an open-weight model practical without the cost of full retraining.
An open standard for connecting AI models to external tools and data sources in a consistent way, so one tool works across many apps.
It is becoming the universal plug for agents, the way a USB port standardized devices.
How an agent retains information: short-term memory for the current conversation, long-term memory for facts stored and recalled later.
Memory is what lets an agent know you, your history, and what it did a minute ago.
The trained file of learned patterns that an LLM runs on. When people say "which model are you using," they mean which specific trained brain.
Different models have different strengths, costs, and limits. Picking the right one is a real decision.
A setup where several specialized agents work together, each handling part of a task and passing results along.
It is how bigger jobs get split up, one agent to plan, others to research, write, or check.
A model that can handle more than just text: images, audio, or video as input or output.
It lets AI read a screenshot, describe a photo, or listen to a recording, not just chat.
A model whose trained parameters are released publicly, so anyone can download, run, and modify it on their own hardware.
Open-weight models give you privacy, control, and no per-use fee, at the cost of running the infrastructure yourself.
The coordination layer that decides which model, tool, or agent handles each step of a workflow and in what order.
It is the conductor of a multi-step AI system, turning separate pieces into one reliable process.
The internal numbers a model learns during training, often in the billions. More parameters can mean more capability, but not always.
Parameter count is a rough size measure people cite, though quality of training matters just as much.
The instruction or question you give an AI. It can be one line or several pages of context, rules, and examples.
The prompt is your steering wheel. Better prompts get better results from the exact same model.
The craft of writing prompts that reliably get the result you want: clear instructions, context, examples, and format.
It is the single highest-leverage AI skill for non-coders. Same model, far better output.
An attack where hidden instructions in a document, webpage, or message trick an AI into ignoring its real rules.
It is a top security risk for any agent that reads outside content. Untrusted text can hijack behavior.
A reusable, fill-in-the-blank prompt with slots for your specifics, so you get consistent results every time.
Templates turn a good one-off prompt into a repeatable tool for a whole team.
A closed model you can only access as a hosted service through its maker, without seeing or downloading its weights.
Most of the strongest assistants are proprietary. You trade control and privacy for convenience and power.
Shrinking a model by storing its numbers at lower precision, so it uses less memory and runs faster, with a small quality trade-off.
It is what lets large open-weight models run on ordinary computers instead of only on servers.
A technique where the system first looks up relevant real documents, then hands them to the model so its answer is grounded in actual sources.
It is the main defense against hallucination and how AI answers questions about your own private data.
A model tuned to spend extra effort thinking through a problem step by step before answering, trading speed for accuracy.
It handles hard logic, math, and planning better, at higher cost and slower speed.
A training method where a model is rewarded for good outputs and penalized for bad ones, so it learns preferred behavior.
It is a big reason modern assistants feel helpful and polite rather than raw and random.
A training step where humans rate model outputs, and the model learns to prefer the answers people found helpful.
It is a big reason modern assistants feel polite and useful rather than raw and erratic.
Searching by meaning rather than exact keywords, so a query finds relevant results even when the words differ.
It powers modern search and RAG, matching intent instead of just matching text.
A plain-language file that defines an agent's identity: its name, voice, job, and rules. It is a friendly name for a rich system prompt.
It is the moment an agent stops being a something and becomes a someone. Change it and the agent changes.
Delivering a model's answer token by token as it is generated, rather than waiting for the whole reply to finish.
It is why chat assistants appear to type in real time, which feels faster and more responsive.
Forcing a model to answer in a strict format, such as JSON, so software can read the result reliably instead of parsing free text.
It is essential for connecting AI to other systems, where a predictable shape matters more than prose.
A hidden set of standing instructions that shapes how the AI behaves for an entire conversation: its role, tone, rules, and boundaries.
It is where an agent gets its identity and guardrails. Change it and the assistant becomes a different assistant.
A setting from roughly 0 to 1 that controls randomness. Low temperature gives focused, predictable answers; high gives varied, creative ones.
It is a practical dial: near 0 for facts and code, higher for brainstorming and writing.
The cycle an agent runs: think, act, observe, repeat, adjusting each step until the goal is met.
This simple loop is where all the apparent intelligence of an agent comes from.
The unit an LLM reads and writes in. A token is roughly three-quarters of a word, so "learning" might be one or two tokens.
Usage is billed and limited in tokens, and the context window is measured in them. Tokens are the currency of AI.
The ability of a model to call external functions, like search, a calendar, or your database, and use the results.
Tools are what turn talk into action. Without them, an agent can only describe; with them, it can do.
The one-time, expensive process of building a model by exposing it to huge amounts of data until it learns patterns.
Training happens rarely and costs a fortune; using the finished model (inference) is what you do daily.
The neural-network design behind almost every modern language model. It reads a whole sequence at once and learns which parts relate to which.
It is the architecture that made today's AI boom possible. The "T" in GPT stands for it.
A database built to store embeddings and quickly find the ones most similar to a query.
It is the memory bank behind RAG and semantic search, letting an agent pull the right document from thousands.
Asking the model to do a task with no examples, relying purely on its instructions and training.
It is the default way most people prompt. Knowing when to switch to few-shot is the skill.
Want the guided version? Start with what an AI agent really is, then explore the full learning hub.