Book, Study, or Bigger Desk? RAG vs. Fine-Tuning vs. Long Context
The argument your AI team keeps having, settled with one exam
Sooner or later, every team building with AI has the same meeting. Someone says "we should fine-tune a model on our data." Someone else says "why bother — context windows are huge now, just paste everything in." A third person has read this series and mutters something about libraries.
The meeting matters, because the losing side is expensive either way: I've watched teams burn a quarter fine-tuning a model to "know" facts that changed before training finished — a problem a week of RAG would have solved. And I've watched teams bolt RAG onto a problem where no retrieved passage would ever help, because what they actually needed was a model that behaves differently, not one that knows more.
Here's the framework that ends the meeting. It fits in one image you already own: a student preparing for an exam. There are exactly three ways to prepare, and each one maps to a technology.
Option 1: Bring the book (RAG)
You know this one — eight articles' worth. Keep knowledge outside the model, in a library; retrieve the relevant pages per question; answer grounded, with citations.
What it's for: knowledge. Especially knowledge that changes (policies, prices, inventory), knowledge that's private (your documents were never on the internet), and knowledge that must be auditable ("per the March update…"). Update the library Tuesday morning, correct answers Tuesday afternoon. And when the book doesn't cover something, the system can say so — accountability lives in the architecture.
What it's not for: changing how the model behaves. If the model writes like a press release and you want it to write like your legal team; if it won't follow your output format; if it's clumsy in your domain's style — no retrieved passage fixes that. Handing a rambler an encyclopedia gets you well-informed rambling.
Option 2: Study for months (fine-tuning)
Fine-tuning actually changes the model — additional training on your examples, adjusting internal wiring. The student studies until the material reshapes them.
Here's the single most misunderstood sentence in applied AI, so it gets its own paragraph:
Fine-tuning teaches skills, not facts.
Study transforms how you think far more reliably than what you can recall on demand. Fine-tuning is superb at behavior: always answer in this legal-memo format, adopt this diagnostic style, master this domain's phrasing, follow this workflow. It is a terrible filing cabinet: facts fed in through fine-tuning blur into the model's other hundred billion learned patterns — unverifiable, uncitable, impossible to update without studying all over again, and vulnerable to the same confident-blur problem from Part 1. Your refund policy changes and your fine-tuned model still "remembers" the old one, the way you still reach for the light switch in the house you moved out of.
Costs: real training runs, evaluation, and maintenance — every knowledge change means retraining, which is why using fine-tuning for facts is how teams lose quarters.
Option 3: Demand a bigger desk (long context)
Modern models accept enormous inputs — hundreds of pages, sometimes more, in a single prompt. So skip the library: paste everything onto the desk, every question. No chunking, no retrieval funnel, no pipeline. Tempting. Three problems, in rising order of importance.
The meter is running. You pay per token, per question. Paste 500 pages against every query and you're paying to re-read your entire documentation thousands of times a day — the difference between a librarian fetching three pages and photocopying the building each visit. At any real volume, this line item alone ends the argument.
The reading is slower. Bigger desks mean longer waits — awkward for anything interactive.
Attention dilutes. The one that survives even when someone else pays the bill: models genuinely handle huge inputs, but attention across them isn't uniform — details buried mid-pile get missed, a lost-in-the-middle effect that's improved with each model generation but hasn't vanished. A student can take an exam at a desk stacked with forty open books. Whether they reliably spot the one relevant footnote on page 312 of book 23, on every question, is another matter. Retrieval isn't just cost management — it's attention management. Three right pages beat three hundred mixed ones.
Where the big desk genuinely wins: your entire corpus is small and stable (a few dozen pages — paste it, skip the pipeline, done), or the task is holistic — summarize this whole contract, find contradictions across this report — where the point is reading everything at once and retrieval-of-snippets is the wrong shape entirely.
The five-minute decision
Three questions, in order:
"Does the answer depend on facts that change, are private, or need citing?" That's knowledge → RAG. (Modern AI search and assistant products are built exactly this way — the pattern you now know station by station.)
"Is the problem how the model behaves — tone, format, style, domain fluency — rather than what it knows?" That's skill → fine-tune. No library teaches manners.
"Is the whole corpus tiny and stable, or does the task require reading everything at once?" → big desk, and enjoy skipping the pipeline.
And the answer real production systems keep arriving at: combinations. The strongest setup for a specialized assistant is often a model fine-tuned to behave like your domain expert, doing RAG for every fact it cites, on a desk sized generously enough to hold real context comfortably. Study for the skills, bring the book for the facts, get a decent desk. No student prepares any other way — the technologies were never rivals; they answer different exam questions.
The catch
The framework simplifies one thing dishonestly: it presents this as a menu, when in a real team it's a sequencing decision. Almost everyone should start with RAG — not because it always wins, but because it's the cheapest to try, the fastest to show value, and the easiest to walk back. Fine-tuning is a commitment: training runs, eval suites, retraining schedules. The mature path is boring: RAG first, measure, fine-tune what retrieval demonstrably can't fix. Teams that start with the exciting option in month one tend to rediscover this order in month six, at tuition prices.
The one line to remember
RAG for what the model should know, fine-tuning for how it should behave, long context when the book is thin — and when in doubt, bring the book first.
One article left. We've built the machine, broken it, fixed it, and chosen when to use it. The finale zooms out: where this open-book pattern is already running your daily life without telling you — and the strange, wonderful thing it's turning into next.
Next — Part 10: "RAG Is Already Running Your Life (and What Comes Next)." The genius gets his final upgrade: from a student with a library card to a researcher who decides what to look up.
When RAG Lies: Why \"AI With Sources\" Still Gets It Wrong
Part 10 →RAG Is Already Running Your Life (and What Comes Next)
Facing this problem in production?
I help teams make AI systems smaller, faster, and cheaper — from distillation to full MLOps pipelines.
Work with me