A business leader's guide to the building blocks of AI — no code, no jargon, just the mental models that matter.
8 concepts 4 decision paths Diagrams
Share
The building blocks
Click each concept to see the business analogy and visual explanation.
University education
Pre-training
"Sending someone to university"
You invest years and enormous cost in a broad education. The graduate doesn't know your specific business — but they can read, write, reason, and learn new things quickly. That general foundation is what makes everything else possible.
Cost: millions. Time: months. You almost certainly don't do this yourself — you buy the graduate (base model) from someone who did.
University education
Pre-training
"Sending someone to university"
You invest years and enormous cost in a broad education. The graduate doesn't know your specific business — but they can read, write, reason, and learn new things quickly. That general foundation is what makes everything else possible.
Cost: millions. Time: months. You almost certainly don't do this yourself — you buy the graduate (base model) from someone who did.
Library filing system
Embeddings
"A library shelved by meaning, not alphabet"
Imagine a library where books aren't filed alphabetically but by meaning. Cookbooks sit near nutrition guides. Thrillers sit near crime fiction. The "address" of each book on the shelf IS its meaning — and nearby books are related.
This is how AI understands similarity. When you search "revenue forecast", it also finds "financial projections" because they're shelved in the same area.
Specialist apprenticeship
Fine-tuning
"A graduate doing a specialist apprenticeship"
Your university graduate joins a law firm. Through months of supervised practice, they learn legal language, how to draft contracts, and what "good" looks like in this domain. They don't forget how to read or reason — they layer expertise on top of their general education.
Cost: thousands, not millions. Risk: over-specialise and they forget how to do anything else (catastrophic forgetting). Only fine-tune when cheaper levers genuinely fail.
Open-book exam
Retrieval-augmented generation
"An employee with a well-indexed filing cabinet"
Instead of memorising every fact, your employee keeps a well-indexed filing cabinet and looks things up when asked. "What's our refund policy?" — they flip to the right page, read the answer, and respond in their own words. The filing cabinet can be updated instantly; no retraining needed.
This is how you give AI access to your company data without retraining the model. New document? Drop it in the filing cabinet. Instant knowledge update, zero training cost.
Writing a clear brief
Prompt engineering
"The quality of your instructions determines the quality of output"
You don't retrain your employee — you give them better instructions. "Summarise this in 3 bullet points for the board" gets a very different result from "Tell me about this". The skill isn't in the employee's training; it's in how precisely you describe what you want.
Zero cost, instant feedback. This is always your first lever. Most "AI doesn't work" complaints are actually "the brief was vague" problems.
Employee doing the work
Inference
"The moment your trained employee sits down and produces output"
All the education and training was preparation. Inference is the moment they sit down and produce output — one word at a time, reading what they've written so far to decide what comes next. This is where you pay per minute of their time.
This is your running cost. Every API call, every chat response — it's all inference. Speed and cost per query matter here.
Clip-on specialist badge
LoRA and parameter-efficient fine-tuning
"A tiny reference card that shifts behaviour without retraining"
Instead of sending your employee back to university, you give them a laminated reference card for a specific domain. They clip it on, check it when needed, and their answers shift toward that speciality. Swap the card for a different one and they're instantly re-specialised.
One base model, many cheap adapters. Your legal card, medical card, and finance card all share the same employee. Storage: megabytes, not gigabytes.
Photo compression
Quantisation
"RAW photo to JPEG: dramatically smaller, barely visible quality loss"
A RAW photo is 50 MB but a JPEG is 5 MB — and you can barely tell the difference. Quantisation does the same to a model: it reduces the precision of every number from 32-bit to 16-bit, 8-bit, or 4-bit. The model gets dramatically smaller and faster, with minimal quality loss.
This is how you fit a large model onto cheaper hardware. A 28 GB model becomes 3.5 GB at 4-bit — runnable on a single consumer GPU instead of an expensive server.
Decision framework
The decision ladder
Two different playbooks depending on whether you're building internal tools or shipping a product.
API-based models work well — volume is low, value per query is high.
External: product integration
Embedding AI into products, pipelines, customer-facing systems
Prompt engineering
Still your first lever
Free
RAG + self-hosted SLMs
Your data, your infra
Medium
Fine-tuning / LoRA
Domain-specific models
High
Quantisation
Compress for cheaper hardware
Essential
API pricing is lethal at scale — self-hosted SLMs become the only viable path.
Frequently asked questions
What are the building blocks of AI a business leader actually needs to understand?
Eight, and none of them require code. Pre-training is the general education you buy rather than fund. Embeddings are how a model understands similarity. Prompting is the brief you write. RAG gives the model access to your data without retraining. Fine-tuning and LoRA layer domain expertise on top. Quantisation shrinks a model to fit cheaper hardware. Inference is the moment it does the work — and the line item you pay every month.
Should I use RAG or fine-tuning to give a model knowledge of my business?
Start with RAG in almost every case. RAG keeps your data out of the model weights, which makes it far easier to update, audit, and delete — drop a new document in and the knowledge is current immediately, with no retraining cost. Fine-tuning changes how a model behaves rather than what it knows, and it carries a real risk of over-specialisation. Reach for it only when the cheaper levers have genuinely failed.
Do we need to train our own model?
Almost certainly not. Pre-training a base model costs millions and takes months, and the result is a general graduate who still knows nothing about your business. You buy the graduate from someone who did it, then specialise them — with a better brief, a filing cabinet of your own documents, or a lightweight adapter. Training from scratch is a research programme, not a product decision.
What is quantisation and why does it matter commercially?
Quantisation reduces the numeric precision of a model — 32-bit down to 16, 8, or 4 — much as a RAW photo becomes a JPEG. The model gets dramatically smaller and faster with minimal quality loss. Commercially, that is the difference between an expensive multi-GPU server and a single consumer card: a 28 GB model becomes roughly 3.5 GB at 4-bit. It is the technique that makes self-hosting affordable.
Should internal tools and customer-facing products use the same AI approach?
No — the economics point in opposite directions. Internal productivity tooling is low-volume and high-value per query, so API-based models work well and the ladder rarely climbs past RAG. Product integration is the reverse: volume is high, value per query is low, and per-token API pricing becomes lethal at scale. That path runs through self-hosted small models, and usually ends at quantisation.
What is the cheapest lever to pull first?
A better brief. Prompt engineering is free, gives instant feedback, and resolves the large majority of enterprise use cases on its own — system prompts, a few worked examples, and asking the model to show its reasoning. Most complaints that "AI does not work" turn out to be vague-instruction problems, not model problems. Exhaust that before you spend anything.