Hallucination & Mitigations

RAG: Let the Model "Take an Open-Book Exam"

PM perspective: When do you need RAG? How do you design the retrieval pipeline? Where are the real pitfalls?

Strategy 02 / 04 · Prevention
Scenario A · Legal / Compliance
Contract Review / Regulatory Q&A Assistant
Regulations update frequently; the model's training data has a cutoff, making it easy to cite outdated or repealed clauses.
Scenario B · Healthcare
Drug Information / Medication Advice Assistant
Medication plans are highly personalized; the model's general knowledge cannot reflect a specific patient's condition or hospital protocols.
Scenario C · Product Docs
SaaS Product Technical Support Bot
Products iterate rapidly; version numbers and navigation paths change often, so the model only remembers the old version it was trained on.
PM Decision Framework: When is RAG Required?
Time-sensitive knowledge: Policies, products, or prices update frequently — the model's training data can't keep up
Private knowledge base: Internal company docs, product manuals — the model has never seen them
High cost of errors: Legal, medical, or financial contexts — one wrong answer can cause serious harm
⚠️
Not needed for chat/creative scenarios: RAG can actually make responses feel rigid and overly constrained

Conversation Comparison

Without RAG (Closed-Book)
With RAG (Open-Book)