Creative Genius Creative Genius
Lesson 1 of 5 · 14 min read

What RAG Actually Solves (and Doesn't)

RAG isn't memory. RAG isn't fine-tuning. It's a search engine glued to an LLM — that mental model fixes most production bugs.

RAG = Retrieval-Augmented Generation. The model doesn't 'know' your data. It looks it up at query time and reads it like a human reading a Wikipedia article.

What RAG is good at

  • Answering questions over a corpus that updates frequently (docs, support tickets, internal wikis)
  • Citing sources — every answer can be traced back to a chunk
  • Keeping costs down vs. stuffing the entire corpus into context

What RAG is bad at

  • Reasoning across many documents at once ("compare every contract we signed in 2023")
  • Tasks where the answer requires synthesis, not lookup
  • Anything that needs personality or style — fine-tuning wins there
Chunking Strategies →