TL;DR
Retrieval-augmented generation (RAG)—a technique that feeds external documents into language models to ground outputs in evidence—lacks reliable verification that retrieved context actually controls generation rather than the model's internal training data. Researchers identified an attribution blind spot: when retrieved documents overlap with pretraining data, models produce faithful-looking outputs from memory alone, making context-governed and context-consistent outputs indistinguishable.
✦ Why It Matters
Engineers deploying RAG systems can now detect when models hallucinate from memory rather than retrieved evidence, preventing unsafe high-stakes applications.
Key Takeaways
How It Works
CRM operates by analyzing the internal representations of language models when they generate text with and without external context. By identifying differences in these representations, CRM can reveal whether the model's output is influenced by its pretraining data or actual retrieved information.
Related