AI Fundamentals

A business leader's guide to the building blocks of AI — no code, no jargon, just the mental models that matter.

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

Internal: can better instructions fix it?
Yes → prompt engineering. Free, instant.
Internal: does it need access to your data?
Yes → RAG with an API model. Low cost, always current.
External: will volume exceed 10K queries/day?
Yes → self-host. Fine-tune + quantise a 7B–14B model on your own GPUs.
External: does a small model handle it?
No → hybrid approach. SLM for 95% bulk, frontier API for 5% hard cases.

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.

Frontier Models