Structured Claim Extraction Improves Agentic Literature Synthesis
Maya Chen · Lucas Bertrand · Mariam Okafor · Sami Hassan
Large language agents that synthesize the scientific literature are bottlenecked by document retrieval over unstructured PDFs. We show that exposing peer-reviewed findings as typed, addressable claims — each with its evidence and citations stored as data — raises end-to-end synthesis accuracy from 62.1% to 87.4% and cuts factual error by 41% relative to document-level retrieval.
Introduction
Scientific agents increasingly answer questions by reading the primary literature directly. In practice they retrieve whole documents — PDFs or HTML — and re-extract the relevant finding at query time. This is wasteful and lossy: the same sentence is re-parsed thousands of times, and the structure a human reviewer already imposed on the work is thrown away.
We argue the unit of synthesis should not be the document but the claim: a single, typed, addressable assertion together with its supporting evidence and its outward citations. A claim is small enough to verify, stable enough to cite, and structured enough to query. We model the expected synthesis accuracy as a function of the fraction of findings available in structured form:
where is the unstructured-retrieval baseline and controls how quickly structure pays off. The remainder of this paper estimates , , and empirically.
Method
We construct OPUS-Bench, a suite of verified claims drawn from
peer-reviewed work across genomics, neuroscience, and materials science. Each
claim is typed (contribution, result, method, or limitation) and linked
to its evidence by section, figure, table, or equation. Agents answer synthesis
queries either over raw PDFs or over the typed claim store; see the
evaluation protocol for the full rubric.
| Access mode | Findings recovered | Synthesis error | Median latency |
|---|---|---|---|
| Raw-PDF retrieval | 62.1% | 18.4% | 2.9 s |
| Hybrid (PDF + index) | 74.6% | 12.1% | 1.7 s |
| Typed claim store | 87.4% | 10.8% | 0.4 s |
Results
- Typed access recovers 87.4% of ground-truth claims, against a raw-PDF baseline of 62.1% (Table 1).
- Structured access cuts synthesis error by 41% relative to document-level retrieval, with the largest gains on multi-hop questions.
- The fitted curve gives : most of the benefit arrives once roughly half of the relevant findings are available as claims.
Agents spend far less effort locating evidence, as the per-query call
resolveClaim(id) replaces a full-text scan. Three independent runs agreed to
within points of recovery.
A claim that is addressable, citable, and verifiable on its own changes what an agent can do with the literature — it can reason over findings instead of re-reading papers.
Limitations
Verification coverage degrades for claims that depend on external data not present in the manuscript: roughly one claim in nine in OPUS-Bench could not be checked against in-text evidence alone. Extending verification to linked datasets and code artifacts is left to future work.
- Contributionopus-2026-00042/c1verified · 0.94
Exposing peer-reviewed findings as typed, addressable claims raises end-to-end agentic synthesis accuracy from 62.1% to 87.4%.
Table 1Fig. 3
- Bertrand et al. (2025). Typed records for scientific retrieval. JMLR 26(4). · 10.5555/typed.2025.0142
- Resultopus-2026-00042/c2verified · 0.88
Structured claim access reduces factual synthesis error by 41% relative to document-level retrieval.
§ Results
- Okafor & Hassan (2024). Error attribution in literature synthesis. Proc. NeurIPS.
- Methodopus-2026-00042/c3verified · 0.91
Claims are extracted with a two-stage typed schema and independently verified against their cited in-text evidence by a separate agent.
Eq. 1§ Method
- Limitationopus-2026-00042/c4unsupported · 0.40
Verification coverage degrades for claims that depend on external data or code not present in the manuscript (about 11% of OPUS-Bench).
§ Limitations