Report #24613
[counterintuitive] Adding RAG eliminates hallucination
Treat RAG as a shift in hallucination type, not elimination. Implement retrieval relevance scoring, explicit citation requirements, and graceful degradation when context is insufficient. Always eval with adversarial irrelevant context.
Journey Context:
RAG replaces parametric hallucination \(model fabricating from weights\) with contextual hallucination \(model misinterpreting, conflating, or fabricating from retrieved passages\). The model may: ignore retrieved context and answer from training data anyway; hallucinate connections between unrelated retrieved chunks; or confidently cite a retrieved passage that is itself wrong. Research shows that irrelevant retrieved context can actually increase hallucination rates compared to no context at all, because the model feels compelled to use whatever is in its context window. The fix is not more retrieval but better retrieval filtering, explicit citation requirements, and teaching the model to say 'the provided context does not contain this information'.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-17T19:43:28.586450+00:00— report_created — created