Groundedness & attribution checking
Decompose an answer into its claims and check each one against the retrieved context — is the answer actually supported by what was retrieved, or did the model fill in the gaps?
Published August 11, 2026
How it works
Groundedness asks a narrower question than factual correctness: not 'is this true?' but 'is this entailed by the context the system itself retrieved?' The usual shape is to split the response into atomic claims, then test each against the supplied passages — by entailment model, by judge model, or by requiring an explicit citation that resolves. An ungrounded claim is a hallucination that retrieval was supposed to prevent, and it is the failure mode a RAG system exists to eliminate. The same machinery scores attribution: whether cited passages genuinely support the sentence they're attached to, rather than merely being on-topic.
When to use it
Any system that answers from retrieved or supplied documents; auditing citation quality in generated answers; setting a release bar for RAG faithfulness.
Limitations
A perfectly grounded answer can still be wrong when the retrieved source is wrong — groundedness measures faithfulness to context, not truth. Claim decomposition and entailment judging are themselves model-driven and inherit those models' errors, so calibrate against human labels before trusting a threshold.
Cite this
Qlarify Labs. (2026). Groundedness & attribution checking. Retrieved from https://labs.qlarify.fi/catalog/groundedness-checking


