Glossary
AI Glossary: 30 Terms SMB Owners Should Know
AI agents, RAG, context windows, escalation, MCP — we explain the terms we use across our other articles. Short, precise, and jargon-free.
AI agent
What is an AI agent?
An AI agent is a program that takes a task, plans the steps it needs, calls tools (email, spreadsheets, APIs) to execute them, and delivers a result — without a person directing each action.
In practice, an AI agent consists of three things: a large language model that makes decisions, a set of tools it can call, and a loop that lets it work across multiple steps. It differs from a chatbot in that it actually does something — not just responds.
Agent-based system
What is an agent-based system?
An agent-based system is a collection of specialised AI agents that collaborate on a job. One agent can fetch data, another analyses, a third writes the response — instead of one general agent doing everything.
AI workflow
What is an AI workflow?
An AI workflow is a chain of steps where AI handles each step automatically — for example: receive email → classify → extract data → create task in CRM → send confirmation. A human only approves exceptions.
Agentic AI
What does 'agentic AI' mean?
Agentic AI means AI that acts on its own behalf instead of just answering questions. The difference is active vs. passive: a chatbot waits for you to ask; agentic AI executes tasks in the background.
Multi-agent system
What is a multi-agent system?
Multiple AI agents with different specialties that coordinate to solve a task together. Used when one task is too large or too varied for a single agent to handle well.
Autonomous agent
What is an autonomous agent?
An agent that makes decisions without human approval at each step. Autonomy is usually bounded by rules (can only use these tools) and approval gates (requires confirmation before sending money or emails outside the company).
Tool use
What does tool use mean for an AI agent?
Tool use is the ability an agent has to call external functions — search the web, read from a database, send email, create an invoice. It is the difference between an agent that can think and one that can act.
Function calling
What is function calling in AI?
A way to let the language model choose and call a specific function with the correct arguments. It is the mechanism that makes tool use possible in practice. OpenAI, Anthropic, and others offer this as a built-in API.
Agent orchestration
What is agent orchestration?
The logic that controls which agent does what, in what order, and how results flow between them. Think conductor — orchestration is not an agent itself, but the rules that coordinate them.
Large language model (LLM)
What is an LLM?
A large language model is a machine-learning model trained on vast amounts of text. It can write, summarise, classify, and reason in natural language. Examples: GPT-5, Claude 4.7, Gemini 2.5.
RAG (Retrieval-Augmented Generation)
What is RAG?
RAG is a pattern where the AI retrieves relevant information from your own documents or database before responding. Used when you want the agent to know your company, not just what it was trained on.
Prompt
What is a prompt?
The instruction you give to an AI model. In practice, a good prompt consists of a role (who the AI should be), context (what it is working with), and a concrete task.
Prompt engineering
What is prompt engineering?
The discipline of writing prompts that consistently produce good results. Less 'magic' than many assume — mostly about being precise, giving examples, and structuring the task clearly.
Context window
What is a context window?
The maximum amount of text (measured in tokens) a model can read at once. Affects how much documentation or history an agent can consider in one call. Modern models have 200k–1M tokens.
Token
What is a token?
The smallest text unit a language model processes — typically a syllable or short word. In English, one word is often 1–2 tokens. Pricing and context limits are counted in tokens, not words.
Hallucination
What is a hallucination in AI?
When an AI model invents something that looks credible but is wrong. A real problem handled with concrete context (RAG), approval gates, and having the agent cite sources.
Fine-tuning
What is fine-tuning a model?
Training an existing model further on your own examples so it becomes better at a specific task. Less common now that context windows are large enough to inject examples into the prompt instead.
Embedding
What is an embedding?
A numerical representation of text that captures its meaning. Used for search and similarity comparison — two documents with similar meaning get similar embeddings.
Vector database
What is a vector database?
A database that stores embeddings and can search for the most similar ones. The backbone of RAG solutions. Examples: Pinecone, Weaviate, pgvector (PostgreSQL extension).
Inference
What is inference in AI?
The act of the model generating a response — as opposed to training. When you pay for AI usage, you typically pay for inference, measured in tokens in and tokens out.
MCP (Model Context Protocol)
What is MCP?
An open protocol from Anthropic for how AI agents connect to tools and data sources. Lets you reuse the same integration across different AI clients — Claude Desktop, Cursor, your own agents.
Human-in-the-loop
What does 'human-in-the-loop' mean?
A design pattern where AI does the groundwork, but a person approves before anything is executed. Used for all outgoing actions (customer emails, invoices, payments) in all Crunchtime deliverables.
Escalation
What does escalation mean for an AI agent?
When the agent hands the task to a human because it is uncertain, the task falls outside its rules, or something significant is at stake (money, legal, customer relationships). Good escalation = fewer errors in production.
Audit log
What is an audit log for an AI agent?
A complete, timestamped record of what the agent has done: which tools it called, with what arguments, what it received back, what it chose. Critical for debugging, compliance, and trust.
AI pilot
What is an AI pilot?
A time-bounded, scope-bounded implementation of one concrete AI workflow to prove value before scaling. In Crunchtime's case: 3–5 weeks, fixed price, delivered with a runbook.
Discovery Sprint
What is a Discovery Sprint?
Crunchtime's 1–2 week initial engagement: we go through your processes, identify 3–5 automation candidates, score them on hours saved, and deliver a prioritised plan. NOK 15,000; credited toward the pilot.
Feedback loop
What is a feedback loop in AI?
The mechanism for collecting signals on how well the agent is doing its job (approved vs. rejected, reworked, complained about) and using that to improve it over time. Without a feedback loop, quality drifts.
AI policy
What is an AI policy?
The written rules for what an AI agent is and is not allowed to do in the company — which data it can see, which actions require approval, who is responsible. First deliverable in all mature implementations.
Bias
What is bias in an AI model?
Systematic skews in what the model produces — because the training data was skewed, because the prompt steers toward a particular angle, or because feedback signals are biased. Measured and mitigated, not ignored.
AI evaluation (eval)
What is an AI evaluation?
A set of test cases with known answers that are run against the agent regularly to check quality. Like unit tests, but for AI. Makes it possible to upgrade models or change prompts without losing what was working.