Reference
AI Glossary
82+ AI terms in plain English. Search or browse.
Agent Evaluation
Methods for measuring how well an AI agent performs: task success rate, efficiency, safety, cost, and alignment with intended goals.
Agent Guardrails
Safety constraints that limit what an AI agent can do — e.g., restricting tool access, requiring approval for destructive actions, or filtering outputs.
Agent LoopFull Page
The repeating cycle an AI agent follows: plan what to do, execute a step using tools, observe the result, decide whether to continue or adjust.
Agent Memory
Mechanisms that allow an AI agent to retain and recall information across interactions, such as conversation history, vector stores, or file-based memory.
Agent Orchestration
Coordinating multiple AI agents to work together on complex tasks, managing handoffs, shared context, and task delegation.
Agentic CodingFull Page
Using AI agents to write, test, and debug code autonomously — planning multi-step development tasks and executing them with minimal human intervention.
Agentic WorkflowFull Page
A multi-step process where AI agents autonomously plan, execute, and refine work — going beyond simple prompt-response to handle complex tasks end-to-end.
AGI
Artificial General Intelligence. A theoretical AI that matches human-level reasoning across all domains. Does not yet exist.
AI AgentFull Page
An AI system that can take actions autonomously — browsing the web, running code, calling APIs, and completing multi-step tasks with minimal human intervention.
AI Agent Architecture
The structural design of an AI agent: how it perceives inputs, plans actions, uses tools, and produces outputs in a loop.
AI EthicsFull Page
The study and practice of ensuring AI systems are developed and used in ways that are fair, transparent, safe, and respectful of human rights and values.
AI GovernanceFull Page
The policies, processes, and frameworks that guide how an organisation develops, deploys, and manages AI systems — covering risk, ethics, compliance, and accountability.
AI LiteracyFull Page
The ability to understand, use, and evaluate AI tools effectively. Not coding — knowing what AI can do, when to use it, and how to get good results.
AI ReadinessFull Page
An organisation's preparedness to adopt and benefit from AI — covering data quality, skills, processes, culture, and infrastructure.
AI-First CompanyFull Page
An organisation that designs its processes, products, and culture around AI as a core capability rather than treating AI as an add-on to existing operations.
API (Application Programming Interface)Full Page
A way for software to communicate with other software. APIs are how developers connect AI capabilities to websites, apps, and business tools.
Artificial Intelligence (AI)Full Page
Software that can perform tasks that normally require human intelligence, such as understanding language, recognising patterns, and making decisions.
AutomationFull Page
Using technology to perform tasks without manual human effort. AI automation goes beyond traditional rule-based automation by handling unstructured tasks like writing, analysis, and decision-making.
Autonomous AI
AI systems that can operate independently over extended periods, making decisions and taking actions without continuous human oversight.
Chain-of-Thought (CoT)
A prompting technique where the AI is asked to show its reasoning process step-by-step, improving accuracy on complex tasks.
Chain-of-Thought PromptingFull Page
A technique where you ask the AI to explain its reasoning step by step before giving a final answer. This dramatically improves accuracy on complex tasks.
ClassificationFull Page
An AI task that assigns input to predefined categories. Spam detection, sentiment analysis, and image recognition are all classification tasks.
Computer VisionFull Page
The field of AI that enables machines to interpret and understand visual information from images and videos, including object recognition, scene understanding, and visual analysis.
Context WindowFull Page
The maximum amount of text an AI can process at once. Think of it as the AI's working memory — everything it can see and consider when generating a response.
Deep LearningFull Page
A subset of machine learning that uses neural networks with many layers to learn complex patterns. The 'deep' refers to the number of layers, not the depth of understanding.
Digital TransformationFull Page
The process of using digital technology — including AI — to fundamentally change how a business operates, delivers value, and competes. Not just adopting new tools but rethinking processes.
EmbeddingFull Page
A numerical representation of text (or images, audio, etc.) that captures its meaning. Embeddings let AI measure how similar two pieces of content are.
Few-Shot PromptingFull Page
A prompting technique where you provide the AI with a few examples of the desired input-output pattern before giving it your actual task. This dramatically improves output consistency.
Fine-TuningFull Page
Training an existing AI model on your specific data to improve its performance on your specific tasks. Like giving the AI specialised on-the-job training.
Generative AIFull Page
AI that creates new content — text, images, code, audio, video — rather than just analysing or classifying existing data.
Git WorktreeFull Page
A git feature that creates an additional working directory linked to the same repository, allowing multiple branches to be checked out simultaneously — essential for parallel agent development.
GPU (Graphics Processing Unit)Full Page
A specialised processor originally designed for rendering graphics but now essential for training and running AI models. GPUs can perform thousands of calculations simultaneously.
GuardrailsFull Page
Constraints, rules, and safety mechanisms built into AI systems to prevent harmful, incorrect, or out-of-scope outputs and actions.
HallucinationFull Page
When AI generates confident but incorrect information. The AI is not lying — it is producing statistically plausible text that happens to be wrong.
Human-in-the-Loop (HITL)Full Page
A system design where AI handles execution but a human reviews, approves, or intervenes at critical decision points before actions are taken.
InferenceFull Page
The process of an AI model generating output from your input. Every time you send a prompt and get a response, that is inference.
Large Language Model (LLM)Full Page
A type of AI trained on vast amounts of text to understand and generate human language. ChatGPT, Claude, and Gemini are all LLMs.
LatencyFull Page
The time delay between sending a request to an AI model and receiving the first part of the response. Lower latency means faster, more responsive AI interactions.
Machine Learning (ML)Full Page
A type of AI where systems learn patterns from data instead of following explicitly programmed rules. The system improves its performance through experience.
MCP
Model Context Protocol. A standardised way to connect AI to external tools like Gmail, Slack, databases, and CRMs.
Meta-PromptingFull Page
A technique where you ask the AI to write or improve prompts — using the AI itself to generate better instructions for the AI, creating a self-improving feedback loop.
Model Context Protocol (MCP)Full Page
An open standard that allows AI models to connect to external tools, data sources, and services through a unified interface. MCP lets AI access real-time data and take actions beyond text generation.
Model WeightsFull Page
The numerical values inside a neural network that determine how it processes information. Weights are what the model learns during training — they encode its knowledge and capabilities.
Multi-Agent SystemFull Page
An AI architecture where multiple specialised agents collaborate to complete complex tasks, coordinated by an orchestrator or a defined protocol.
Multi-Modal AIFull Page
AI that can process and generate multiple types of content — text, images, audio, and video — within a single model. Claude, GPT-4o, and Gemini are all multi-modal.
Natural Language Processing (NLP)Full Page
The branch of AI focused on enabling computers to understand, interpret, and generate human language in useful ways.
Neural NetworkFull Page
A computing system loosely inspired by the human brain, made of layers of interconnected nodes that learn to recognise patterns in data.
Orchestrator (Agent Pattern)Full Page
A manager agent that coordinates multiple specialist agents by planning tasks, delegating work, reviewing results, and delivering the final output.
ParametersFull Page
The total number of adjustable values in an AI model. A model with more parameters can capture more complex patterns but requires more computing power to train and run.
Planning (AI Agents)
The ability of an AI agent to break a complex goal into sub-tasks, sequence them, and adapt the plan as new information emerges.
Prompt CachingFull Page
A feature that reuses previously processed prompt content across API calls, reducing latency and cost when the same system prompt or context is sent repeatedly.
Prompt ChainingFull Page
A technique where the output of one AI prompt becomes the input to the next, creating a multi-step workflow that produces better results than a single complex prompt.
Prompt EngineeringFull Page
The skill of writing instructions to AI that consistently produce useful, accurate, high-quality output.
Prompt InjectionFull Page
A security vulnerability where malicious text in user input or external data tricks an AI system into ignoring its original instructions and following the attacker's instructions instead.
Quality GatesFull Page
Automated checkpoints between AI generation and human review that catch specific types of errors — format, factual, tone, completeness, and consistency.
ReAct Pattern
A prompting pattern where the AI alternates between Reasoning about what to do and Acting (calling tools), then observing the result before deciding the next step.
ReAct PromptingFull Page
A prompting pattern that combines Reasoning and Acting — the AI thinks through the problem step by step, takes an action (like a search), observes the result, and repeats until the task is complete.
Reasoning Model
An AI model that uses extended thinking time to work through complex problems step-by-step before responding, producing more accurate results for logic, maths, and analysis.
RegressionFull Page
An AI task that predicts a numerical value based on input data. Sales forecasting, price estimation, and demand prediction are all regression tasks.
Reinforcement LearningFull Page
A machine learning approach where an AI learns by trial and error, receiving rewards for good outcomes and penalties for bad ones. Used to train game-playing AI and to fine-tune LLMs.
Responsible AIFull Page
The practice of developing and deploying AI in ways that are ethical, transparent, accountable, and aligned with societal values — translating AI ethics principles into operational reality.
Retrieval-Augmented Generation (RAG)Full Page
A technique that connects AI to your own documents and data so it can answer questions using your specific information, not just its general training.
Self-Consistency PromptingFull Page
A prompting technique where you ask the AI to generate multiple independent answers to the same question, then select the most common response — improving accuracy through consensus rather than relying on a single output.
Structured Output (JSON Mode)Full Page
A feature that constrains AI to respond in a specific structured format — typically JSON — making the output reliably parseable by code instead of requiring human interpretation.
Sub-AgentFull Page
An AI agent spawned by another agent to handle a specific sub-task, operating with its own context window and returning results to the parent.
Supervised LearningFull Page
A machine learning approach where the model learns from labelled examples — input data paired with correct answers. The most common type of machine learning in business applications.
System PromptFull Page
A set of persistent instructions given to an AI that shapes its behaviour for an entire conversation. System prompts define the AI's role, tone, rules, and output format.
TemperatureFull Page
A setting that controls how creative or conservative AI output is. Low temperature = predictable and focused. High temperature = varied and creative.
ThroughputFull Page
The volume of data an AI system can process in a given time period — typically measured in tokens per second or requests per minute. Higher throughput means more work done faster.
TokenFull Page
The smallest unit of text an AI model processes. Roughly 3-4 characters or three-quarters of a word. AI pricing is typically measured in tokens.
Tokenizer (Tokeniser)Full Page
The component that converts text into tokens — the numerical units an AI model processes. Different models use different tokenisers, which affects how they handle text.
Tool Use (AI)
The ability of an AI model to call external tools — APIs, databases, code interpreters — to take actions beyond generating text.
Tool Use (Function Calling)Full Page
The ability of an AI model to interact with external tools — search engines, code interpreters, APIs, databases — to take actions beyond generating text.
TPU (Tensor Processing Unit)Full Page
A custom AI chip designed by Google specifically for machine learning workloads. TPUs are optimised for the tensor operations that neural networks rely on.
Training DataFull Page
The dataset used to teach an AI model. The quality, size, and composition of training data directly determines what the AI can and cannot do well.
TransformerFull Page
The neural network architecture behind modern AI assistants like ChatGPT and Claude. Introduced in 2017, it processes all words simultaneously using an attention mechanism.
Tree-of-Thought PromptingFull Page
A prompting technique where the AI explores multiple reasoning paths in parallel, evaluates each branch, and selects the most promising solution — mimicking how humans consider alternatives before deciding.
Unsupervised LearningFull Page
A machine learning approach where the model finds patterns in data without being given correct answers. Used for discovering hidden structure, grouping similar items, and detecting anomalies.
Vector DatabaseFull Page
A specialised database designed to store and search embeddings — the numerical representations of text, images, or other data used in AI applications.
Vibe Coding
Building software by describing what you want in plain English rather than writing code. AI generates the code for you.
WorkflowFull Page
A sequence of connected steps that accomplish a specific business task. In AI context, a workflow combines human actions and AI processing to complete work efficiently.
Zero-Shot PromptingFull Page
Asking an AI to perform a task without providing any examples — relying entirely on the model's training and your instructions. The simplest prompting approach.