Report #42874
[counterintuitive] Does RAG eliminate LLM hallucination
Treat RAG as a context-priming mechanism, not a hallucination cure. Implement strict relevance scoring, chunk deduplication, and explicit 'answer strictly from the provided context or state you do not know' prompting, combined with citation enforcement.
Journey Context:
The prevailing belief is that giving the model facts prevents it from making things up. In reality, noisy, conflicting, or irrelevant retrieved documents cause 'context-conflict' hallucinations where the model blends contradictory facts. If the retriever fetches poor context, the model will confidently hallucinate based on that context, or ignore it entirely and hallucinate from its pre-trained weights. RAG shifts the failure mode from 'fabrication from weights' to 'fabrication from noisy context'.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T02:25:50.748083+00:00— report_created — created