Citation Recall is a metric that measures the proportion of all factual claims in a generated text that are correctly supported by an explicit citation to a verifiable source. It quantifies how thoroughly an AI system attributes its factual assertions, answering the question: 'Of all the facts stated, how many have a corresponding reference?'
Glossary
Citation Recall

What is Citation Recall?
A core evaluation metric for measuring the completeness of source attribution in AI-generated text.
This metric is the counterpart to Citation Precision, which measures the relevance and correctness of the citations provided. High recall with low precision indicates over-citation, while high precision with low recall signals that many factual claims are left unsupported. Together, they form the foundation of Citation Integrity Scoring and are critical for evaluating Retrieval-Augmented Attribution systems.
Key Characteristics of Citation Recall
Citation Recall is a precision metric for AI attribution systems, measuring the completeness of source coverage for factual claims. It answers the question: 'Of all the verifiable facts stated, what fraction did the model properly cite?'
The Core Formula
Citation Recall is calculated as a strict ratio: the number of factual claims with a correct citation divided by the total number of factual claims in the generated text. A claim is a discrete, verifiable statement of fact. A correct citation is one where the referenced source document explicitly and accurately supports the claim. This metric ignores irrelevant or hallucinated citations, which are measured separately by Citation Precision.
Distinction from Citation Precision
Citation Recall and Citation Precision are complementary metrics that together define Attribution Fidelity. Recall measures coverage—did you cite enough? Precision measures accuracy—were your citations correct?
- High Recall, Low Precision: The model cites many sources, but some are irrelevant or hallucinated.
- Low Recall, High Precision: The model cites few sources, but every single one is perfectly accurate.
- Target State: High Recall and High Precision, indicating comprehensive and accurate source grounding.
Granularity of Measurement
Citation Recall can be evaluated at multiple levels of granularity, each revealing different failure modes:
- Claim-Level: The standard approach. Each atomic fact must have its own citation.
- Sentence-Level: A coarser measure where an entire sentence is considered cited if at least one claim within it is supported.
- Document-Level: The weakest measure, only checking if a general reference to a source exists, regardless of whether it supports the specific text.
Fine-grained, claim-level evaluation is the gold standard for detecting Attribution Drift and Null Attribution.
Relationship to Hallucination
Citation Recall is a direct, operationalized counter-measure to factual hallucination. A low Citation Recall score is a leading indicator of Hallucination Risk. If a model generates 10 factual claims but only cites 4, the remaining 6 are unsupported assertions. These uncited claims are the primary candidates for hallucination. Monitoring Citation Recall in production provides a quantitative signal for the trustworthiness of a Retrieval-Augmented Generation (RAG) pipeline.
Automated Evaluation with NLI
Manual evaluation of Citation Recall does not scale. The standard automated approach uses a Natural Language Inference (NLI) model as a judge. The process is:
- Decompose the generated text into atomic claims.
- For each claim, retrieve the text of its cited source document.
- Feed the premise (source text) and hypothesis (claim) to an NLI model.
- The NLI model classifies the pair as entailment, contradiction, or neutral.
Only claims with an entailment classification count toward the numerator of the Recall score.
The Recall-Precision Trade-off
Optimizing a system for perfect Citation Recall can paradoxically lower Citation Precision. A model instructed to 'cite everything' may begin attaching citations to subjective statements, common knowledge, or syntactical filler, or it may cite a source that is topically related but does not actually support the specific claim. This is known as Attribution Drift. The engineering goal is to maximize both metrics simultaneously, a challenge addressed by advanced Retrieval-Augmented Attribution architectures.
Frequently Asked Questions
Explore the core concepts behind measuring and improving the verifiability of AI-generated text through explicit source attribution.
Citation Recall is a precision metric that measures the proportion of all factual claims in a generated text that are correctly supported by an explicit citation to a verifiable source. It is calculated by dividing the number of correctly cited factual claims by the total number of factual claims present in the output. A claim is considered 'correctly cited' only if the attached reference directly and accurately supports the specific assertion made. This metric is critical for evaluating Retrieval-Augmented Generation (RAG) systems, as it directly quantifies the system's ability to ground its outputs in provided evidence rather than relying on parametric knowledge, which is a primary cause of hallucination.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Citation Recall vs. Related Attribution Metrics
A comparative analysis of Citation Recall against other key metrics used to evaluate the quality and completeness of source attribution in AI-generated text.
| Metric | Citation Recall | Citation Precision | Attribution Fidelity |
|---|---|---|---|
Core Question Answered | Are all claims cited? | Are all citations correct? | Do citations reflect the source? |
Primary Focus | Coverage of factual claims | Relevance of provided citations | Accuracy of citation content |
Granularity | Claim-level | Citation-level | Passage-level |
Hallucination Type Detected | Missing citation | Irrelevant citation | Misrepresented citation |
Typical Score Range | 0.0 to 1.0 | 0.0 to 1.0 | 0.0 to 1.0 |
Evaluation Method | Human annotation or NLI | Human annotation | Human annotation or NLI |
Relationship to Grounding | Measures grounding coverage | Measures grounding relevance | Measures grounding accuracy |
Primary User | AI safety and evaluation teams | Search quality engineers | Fact-checking and integrity teams |
Related Terms
Citation Recall is one component of a broader citation quality framework. These related metrics and concepts provide a complete picture of how reliably an AI system attributes its claims.
Citation Precision
Measures the proportion of provided citations that are correct and relevant. While Citation Recall asks 'did we cite all claims?', Citation Precision asks 'are our citations actually right?' A system with high recall but low precision floods users with irrelevant or hallucinated references.
- Formula: (Number of correct citations) / (Total number of citations provided)
- Failure mode: Citing a source that doesn't contain the claimed fact
- Trade-off: Optimizing for recall alone often degrades precision
Attribution Fidelity
A deeper metric that evaluates whether a citation accurately represents the information in the referenced source, not just whether the source exists. A citation can be precise (pointing to a real document) but have low fidelity if it mischaracterizes what the source actually says.
- Evaluates: Semantic alignment between claim and source text
- Detection method: NLI models comparing generated claim to cited passage
- Critical for: Legal, medical, and financial applications where misrepresentation carries liability
Hallucination Rate
The proportion of generated factual claims that are entirely unsupported by any verifiable source. This is the inverse complement to Citation Recall—a high hallucination rate indicates the model is fabricating facts rather than grounding them in retrieved evidence.
- Relationship to Recall: Hallucination Rate ≈ 1 - Citation Recall (simplified)
- Detection: Requires human evaluation or automated fact-checking pipelines
- Mitigation: RAG architectures with strict attribution requirements reduce this metric
N-gram Provenance
A fine-grained attribution technique that traces specific word sequences in generated text back to exact source documents. Unlike document-level citation, n-gram provenance identifies which specific sentences or passages contributed to each claim.
- Granularity: Operates at the phrase level, not the document level
- Implementation: Uses overlap detection between generated text and retrieval corpus
- Use case: Debugging attribution failures and auditing model outputs for plagiarism
Retrieval-Augmented Verification
An architectural pattern where an external trusted knowledge source is queried in real-time to fact-check claims before they are presented to the user. This closes the loop on Citation Recall by actively verifying, not just passively citing.
- Workflow: Generate claim → Retrieve evidence → Verify alignment → Cite or suppress
- Key components: Fact-checking NLI model, authoritative knowledge base
- Outcome: Higher Citation Recall and Precision simultaneously
Confidence Calibration
Measures how well a model's internal probability of correctness aligns with its actual accuracy. A well-calibrated model knows when it's likely wrong and can refuse to answer or flag uncertainty—preventing low-confidence claims from entering the Citation Recall calculation.
- Metric: Expected Calibration Error (ECE)
- Benefit: Reduces the burden on citation systems by filtering uncertain outputs
- Implementation: Temperature scaling, conformal prediction

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us