◆ TECHNICAL · 9 MIN READ ◆

Should your AI look it up — or learn it by heart?

RAG vs fine-tuning is the first real technical decision every AI project faces. Here's the plain-English framework we use with clients — no PhD required.

Every company adopting AI eventually hits the same fork in the road: "We want the AI to know about our business. How?" Two answers dominate every conversation — RAG and fine-tuning — and they are constantly confused, oversold, and picked for the wrong reasons. This article gives you the mental model to choose correctly in about nine minutes.

01

The library vs the training montage

RAG (Retrieval-Augmented Generation) gives the AI a library card. Your documents — policies, product specs, case files, past emails — sit in a searchable knowledge base. When a question arrives, the system fetches the most relevant passages and hands them to the model along with the question. The model's brain never changes; it simply reads before answering.

Fine-tuning is the training montage. You take a base model and continue training it on your examples until the knowledge, style or behaviour is baked into its weights. The model itself changes. No lookup happens at answer time — it just knows.

02

When RAG wins (most of the time)

For roughly four out of five business use cases we scope, RAG is the right first answer. The reasons are practical, not academic:

Your information changes. Prices update, policies get revised, new documents arrive weekly. With RAG, you update the library and the AI is instantly current. With fine-tuning, stale knowledge means retraining — every time.

You need receipts. RAG can cite its sources — "this answer comes from page 4 of your refund policy." For anything customer-facing, regulated, or high-stakes, traceability is not optional.

It's dramatically cheaper to start. A solid RAG system over a few hundred documents is a weeks-scale project. Fine-tuning done properly — data preparation, training runs, evaluation — costs multiples of that before you've proven any value.

Rule of thumb: if your sentence starts with "the AI should answer questions about our…" — documents, products, policies, past cases — you almost certainly want RAG first.
03

When fine-tuning earns its cost

Fine-tuning shines when the problem isn't knowledge but behaviour. Three genuine signals:

A very specific voice or format. You need every output in your house style, your legal template, your medical-report structure — thousands of times, identically. Teaching by examples beats describing by prompt.

Deep domain language. Niche terminology and reasoning patterns — specialist clinical notes, proprietary engineering formats — where general models consistently stumble even with context provided.

Scale economics. At very high volumes, a small fine-tuned model can outperform a large general model on your narrow task — faster and cheaper per call. This is an optimisation you earn after product-market fit, not before.

The trap: fine-tuning is often sold as "making the AI know your company." It's poor at reliably storing facts — that's what retrieval is for. Fine-tune for how to respond; retrieve for what to say.
FIG. 01 — HOW RAG ANSWERS A QUESTIONLIVE PIPELINE
Retrieval-Augmented Generation: the model reads the relevant passages before every answer — knowledge stays fresh, sources stay citable.
"Fine-tune for how to respond. Retrieve for what to say. Confusing the two is the most expensive mistake in applied AI."
04

The decision table

Your situationChooseWhy
Answer questions from documentsRAGCurrent, citable, cheap to update
Information changes weeklyRAGUpdate the library, not the model
Strict output style at high volumeFine-tuneBehaviour lives in the weights
Deep niche vocabularyFine-tune (+ RAG)Language in weights, facts in library
Compliance needs source citationsRAGTraceable answers
Just starting your AI journeyRAGWeeks not months; prove value first
05

The hybrid path most businesses take

Mature systems usually end up combining both: a fine-tuned (or well-prompted) model that speaks your language and follows your formats, fed live facts through retrieval. But the sequencing matters enormously: start with RAG, measure, and let real usage tell you whether fine-tuning is worth it. In our experience, half the teams who arrive convinced they need fine-tuning discover that good retrieval plus careful prompting solves the whole problem — at a fraction of the budget.

The best technical decision is the one you can afford to be wrong about. RAG lets you be wrong cheaply. That alone should tell you where to begin.

Which approach fits your use case?

Answer two questions — get an instant recommendation.

1. What are you trying to give the AI?
Knowledge of our docs/data
A specific style/behaviour
2. How often does that information change?
Frequently (weekly-ish)
Rarely / never

Pick an answer to each question above ☝️

Not sure which approach fits your data?

Send us one paragraph about your use case. We'll tell you RAG, fine-tuning, or neither — honestly and for free.

Book a free discovery call ✦