If you've sat through one AI presentation in the last twelve months, you've heard the term RAG. It's everywhere — and it's underexplained. Here's what Retrieval-Augmented Generation actually does, in fifteen minutes, without the jargon. By the end you'll know enough to interrogate a vendor's pitch.

The problem RAG solves

AI models like ChatGPT and Claude were trained on a snapshot of the internet up to some date. They know a lot about the world in general — but they know nothing specific about your business. They don't know your product catalog, your prices, your refund policy, or your customer-onboarding playbook.

Worse, if you ask them about those things, they don't say "I don't know." They make something up that sounds plausible. We call this hallucination. It's the single biggest reason businesses get burned by AI deployments — they ship a chatbot trained on the public internet and watch it confidently tell customers the wrong return policy.

RAG fixes this.

RAG in 60 seconds

RAG stands for Retrieval-Augmented Generation. In one sentence: before the AI answers your question, it first retrieves the most relevant pieces of your private information, then generates its answer using those pieces as source material.

Think of it like this:

  • Without RAG: AI is a smart graduate trying to answer your question from memory.
  • With RAG: AI is a smart graduate trying to answer your question with the relevant pages of your company handbook open in front of them.

The difference is enormous. The graduate doesn't have to guess. They can quote, summarise and explain — grounded in real information.

The four parts of a RAG system

RAG isn't one thing. It's four things working together:

1. Your documents

The source material. Policy documents, knowledge base articles, contracts, product specs, FAQs, past customer interactions, internal wikis. The format doesn't matter much — PDFs, Word docs, web pages, database records all work.

2. The embeddings

Each chunk of your documents gets converted into a list of numbers (technically a "vector") that captures its meaning. Documents about returns sit near other documents about returns in this "meaning space". Documents about shipping sit elsewhere. This is the magic that lets the system find relevant content fast.

3. The retrieval step

When someone asks a question, the question itself gets converted into numbers the same way. The system then finds the document chunks whose numbers are closest — the most semantically relevant pieces of your content.

4. The generation step

The retrieved chunks get bundled with the user's question and sent to the AI model. The model is essentially told: "answer this question, using these source materials, and don't make stuff up that isn't in there."

The output is an answer grounded in your actual content — often with citations back to the source documents.

A worked example

A customer asks your support chat: "Can I return a product after 60 days?"

The system embeds the question, searches your documents, and retrieves three relevant chunks: your returns policy, an FAQ about extended returns, and a manager's email clarifying an exception.

It sends all of that to the AI model along with the question. The model reads the chunks and answers: "Yes, returns are accepted within 90 days of purchase for full refund. After 90 days, returns are available for store credit only. Here's the policy: [link]."

Crucially, if your policy says 90 days, the answer says 90 days. If you change it to 60 days tomorrow, the system retrieves the new policy and answers 60 days. The AI never had to memorise your policy — it just learned to read.

Why RAG matters more than fine-tuning

The other technique you'll hear about is fine-tuning — actually teaching the AI new patterns by training it on your data. Fine-tuning gets a lot of attention; RAG does almost all the work in real business deployments.

QuestionRAGFine-tuning
How do I get the AI to know my private content?Index it. Done in hours.Train on it. Weeks of work.
What if my content changes?Re-index. AI sees changes immediately.Re-train. AI sees changes after the next training cycle.
Can I cite my sources?Yes — every retrieved chunk has a source.No — facts are baked into the model.
What does it cost to maintain?Low. Storage + retrieval per query.High. Re-training is expensive.
When do I need it?Almost always.For tone of voice, output format, or extreme latency requirements.

For 95% of business AI use cases, RAG is the right answer. Fine-tuning is the exception, not the rule.

Five business use cases where RAG is the right tool

1. Customer support chat

RAG over your knowledge base, policies and FAQs. The chatbot answers correctly because it's reading the actual policy, not inventing one.

2. Sales enablement

RAG over your case studies, product specs and competitive battlecards. A rep asks "what do we say when a prospect asks about competitor X?" and gets the actual answer your sales leadership has written down.

3. Internal Q&A / wiki replacement

RAG over your internal documentation, meeting notes and Slack archives. "What did we decide about pricing in the last quarterly review?" returns the answer from the actual notes.

4. Legal and contracts

RAG over a firm's precedent library. "Show me language we've used for limitation of liability in SaaS contracts." Returns the actual clauses with citations to which matters they came from.

5. Onboarding and training

RAG over your onboarding materials and SOPs. A new hire asks "how do we process a refund?" and gets the current process — not an old one a tenured colleague half-remembers.

The costs and trade-offs

Building a RAG system isn't free, but it's cheaper than most alternatives:

  • One-time cost: $15K–$30K for a single-team internal RAG with up to a few thousand documents. More for larger or more complex builds.
  • Ongoing cost: Vector storage ($50–$300/month for typical SMB volumes) + model usage per query ($50–$500/month at SMB query volumes).
  • The hidden cost: Document hygiene. RAG is only as good as the content it retrieves. If your knowledge base is out of date, the AI confidently retrieves the out-of-date answer. You're now in the document-maintenance business in a way you might not have been before.

When RAG isn't the answer

  • Casual conversation. If the AI needs to chitchat, RAG doesn't add much.
  • Pure reasoning tasks. Solving a maths problem or writing code doesn't need retrieval from your documents.
  • Real-time data. RAG is for relatively static knowledge. For live data (stock prices, account balances), you want direct API calls, not RAG.
  • Tiny, well-bounded content sets. If your "knowledge base" is three FAQs, just paste them into the prompt and skip RAG entirely.

Picking a vendor (or building yourself)

When evaluating an AI vendor or agency offering a RAG-based product, ask:

  1. Which embedding model do you use, and why?
  2. Where is the vector store hosted? (For AU businesses with privacy considerations, AU region matters.)
  3. How do you handle document updates? (Re-indexing should be automated or close to it.)
  4. How do you measure retrieval quality? ("Recall at K" is the technical answer — most vendors should be tracking this.)
  5. Can the system cite its sources back to the document?
  6. What happens when no relevant document is found? (The right answer: "I don't know" — never "let me make something up".)
  7. Do I own the vector store and the indexed content? (You should.)

If the answers to those seven questions are confident and specific, you're talking to someone who actually builds RAG systems. If they're vague, find another vendor.

Key takeaways

  • RAG = AI answers your questions using your private content. Without RAG, AI makes things up about your business.
  • Four parts: documents → embeddings → retrieval → generation.
  • RAG beats fine-tuning for almost every business use case. Cheaper, faster, easier to update.
  • Your content quality determines the AI's answer quality. Plan to keep documents current.
  • If a vendor can't explain their retrieval strategy, citation handling and "I don't know" behaviour clearly, pick another vendor.

Want help putting any of this into practice?

30-minute discovery call. We'll map your highest-leverage AI opportunities to revenue or time saved — no obligation.

Request more info