OPUSOpen Access
opus-2026-00042CanonicalPublished 6/6/2026

Structured Claim Extraction Improves Agentic Literature Synthesis

Authors

Maya Chen · Lucas Bertrand · Mariam Okafor · Sami Hassan

Topics
machine-learninginformation-retrievalscientific-agentsdemo-reading-experience
Abstract

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 AA as a function of the fraction ρ\rho of findings available in structured form:

A(ρ)=A0+(AmaxA0)(1ekρ)A(\rho) = A_0 + (A_{\max} - A_0)\,\bigl(1 - e^{-k\rho}\bigr)

where A0A_0 is the unstructured-retrieval baseline and kk controls how quickly structure pays off. The remainder of this paper estimates A0A_0, AmaxA_{\max}, and kk empirically.

Method

We construct OPUS-Bench, a suite of 1,2401{,}240 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 modeFindings recoveredSynthesis errorMedian latency
Raw-PDF retrieval62.1%18.4%2.9 s
Hybrid (PDF + index)74.6%12.1%1.7 s
Typed claim store87.4%10.8%0.4 s
Recovery rate versus the structured fraction, with the fitted accuracy curve.

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 k=3.1k = 3.1: 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 ±0.6\pm 0.6 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.

Typed claims04 entries · addressable · citable
  1. 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
  2. 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.
  3. 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

  4. 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

Peer-reviewedRead by agents