AI Foundations & Adoption

AI Fundamentals

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

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.
University (broad education)Billions of tokens from the entire internetHistoryMathsScienceCodeLanguagesReasoningRaw studentBase modelBroad knowledge, no specialisation — ready to learn anything
Cost: millions. Time: months. You almost certainly don't do this yourself — you buy the graduate (base model) from someone who did.

Decision framework


The decision ladder

Two different playbooks depending on whether you're building internal tools or shipping a product.

Internal: productivity tooling

Boosting employees, internal tools, knowledge management

  • Prompt engineering
    Write a better brief
    Free
  • RAG
    Give them a filing cabinet
    Low
  • Fine-tuning / LoRA
    Rarely needed
    Occasional

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.

Diagrams

Embed these freely — each SVG is licensed CC BY 4.0 (opens in a new tab) with attribution to this page baked in.

Frontier Models