JA EN
LearnPaper Deep-Dives
·★ MEMBER·PAPER·8 min read

Paper Deep Dive: AskChem — Changing the Unit of Search from Papers to Provenance-Carrying Claims

An NYU-led systems paper that swaps the retrieval unit of chemistry literature search from papers to claims grounded by a DOI and a verbatim quote. We walk through the 2.4M-claim index, evidence graph, and hybrid search design, the evaluation that took DOI resolution from 88.3% to 100%, and the paper's honest limitations.

ModalitytextTaskarchitecture

AskChem: Claim-Centered Infrastructure for Chemistry Literature Synthesis

Primary source — what this article is built on

undefined2026-07-30undefined2026-08-12same month

AskChem: Claim-Centered Infrastructure for Chemistry Literature SynthesisBing Yan, Gregory Wolfe, Stefano Martiniani et al. · 2026-07-30 · v1arXiv:2607.28618Paper page·PDF
undefined

Chemistry literature synthesis often requires assembling specific findings scattered across many publications, yet existing literature-search systems primarily return ranked document lists. As a result, scientists and AI agents need to locate relevant information, verify their provenance, and assemble cross-paper answers manually. We present AskChem, a claim-centered infrastructure for cross-paper chemistry search. AskChem changes the unit of retrieval from the paper to the provenance-carrying claim: each paper is converted into atomic, typed claims, each grounded by a source DOI and a verbatim quote or an explicit evidence locator. Over this shared claim store, AskChem exposes complementary structures for search and synthesis: a stabilized faceted taxonomy for hierarchical retrieval and browsing, an evidence graph linking claims through relations, and an exploratory living taxonomy that situates indexed papers under scientific principles. AskChem currently indexes 2.4M claims from 147K papers and provides a web interface, as well as REST, SDK, and MCP access for AI agents. On AskChem-Bench, grounding a GPT-5.5 reader in AskChem yields 100% resolvable DOIs, compared with 88.3% without retrieval, and the highest citation density among five tested systems. AskChem is live at https://askchem.org.


The problem this paper solves

"What electrocatalysts have been reported for CO2 reduction to CO, and at what Faradaic efficiency?" — the answer to a question like this doesn't live in any single paper. Small assertions about catalysts, reaction conditions, measurements, and mechanisms are scattered across dozens of publications (§1). Yet existing literature search returns a ranked list of documents and nothing more. A human has to open each paper, find the relevant passage, verify the numbers, and assemble the answer by hand.

This inconvenience became a real hazard once LLM agents started doing literature surveys. The paper points out that agents inherit the limitations of their retrieval tools — and when asked to answer from parametric memory instead, an LLM may fabricate plausible-looking citations (§1).

The answer from the NYU group (with Kyunghyun Cho among the authors) is simple: change the unit of retrieval from the paper to the provenance-carrying claim. AskChem currently indexes 2.4 million claims from 147K papers and is live not only as a web interface but also via REST, SDK, and MCP for AI agents (§1, Abstract).

A metaphor: the library that hands you books vs. the one that hands you index cards

A conventional search engine is a library whose answer is "it's somewhere in one of the books on this shelf" — and then hands you the pile. Reading is your job.

AskChem is a library where the librarian has already read every book and written one index card per fact, each card noting not just the assertion but exactly which book and which sentence it came from. Ask a question and you get a stack of cards, not books — and any suspicious card can be traced back to the original line instantly. Searching and verifying become the same motion.

What exactly is a "claim"?

In the paper's definition, a claim is an atomic (indivisible), typed scientific assertion, always grounded by a source DOI and a verbatim quote — or, where no contiguous quote exists, an explicit evidence locator (§1, §2). It also carries structured fields such as reactants, conditions, and measurements, plus an extraction confidence score (§2).

Here is a real record from the index (abbreviated, from Appendix B):

{"claim_type": "reaction",
 "source_doi": "10.1002/anie.201914977",
 "reaction_type": "electrocatalytic CO2 reduction (to CO)",
 "reactants": [{"name": "CO2", "role": "substrate"},
               {"name": "Ni SA-N2-C", "role": "catalyst"}],
 "outcomes": {"selectivity": "CO Faradaic efficiency 98%"},
 "verbatim_quote": "the Ni SA-N2-C catalyst ... achieves very high
   CO Faradaic efficiency (98%) and turnover frequency (1622 h-1),"}

Right next to the number "98% efficiency" sits the original sentence it was taken from — that is the backbone of the whole system. Under the same claim identity hang the paper metadata (Source), the claim's positions in the taxonomy (TreeNode), and its relations to other claims (Edge), so search, hierarchical browsing, and graph traversal all return the same provenance-bearing objects (§2). The implementation is refreshingly unglamorous: SQLite with FTS5 full-text search plus a vector index, served through FastAPI (§2).

Retrieval runs on two legs: "do the words match?" and "is the meaning close?" The foundation of the second leg is nothing more than the vector dot product we covered in the linear algebra article.

FIG 1Semantic search rests on the dot product. Rotate the two vectors and watch the value (similarity) grow as their directions align — this is how the dense-vector leg of AskChem's hybrid search gathers candidates

How claims get made

Extraction runs as two complementary pipelines (§3). A high-throughput extractor processes abstracts at scale, while a deeper extractor reads full-text PDFs and captures claim types that rarely appear in abstracts — hypotheses, limitations, surprising findings. Per Appendix B, the former uses GPT-5-mini and the latter Gemini 3.1 Pro with native PDF input via Vertex AI batch; every output must pass JSON schema validation (required provenance fields, numeric ranges, chemistry-specific fields).

The paper is honest about what this validation means. In the current index, 100% of the 2.4M claims carry a claim type, a source DOI, and a verbatim quote — but the authors state plainly that this establishes traceability, not proof that every extraction semantically interprets its source correctly (§3, §7 RQ1).

Cross-paper synthesis also needs to know whether findings agree with each other. AskChem adds typed, directed edges between claims — `supports`, `contradicts`, `extends`, `derives_from`, and `cites_as_evidence` — currently 171,342 of them (§3). For quality, a domain-expert author manually audited a stratified sample of

What's behind this

§

Members-only from here

371 walkthroughs, 26 textbook chapters, 48 student units and 6 close readings — all included for $4.99/mo, with three new explainers every day. Cancel any time; access runs to the end of the period.

Already a member? Sign in to keep reading

References

  1. Bing Yan, Gregory Wolfe, Stefano Martiniani, Kyunghyun Cho. (2026-07-30) AskChem: Claim-Centered Infrastructure for Chemistry Literature Synthesis. arXiv:2607.28618Paper page·PDF

This article is written from the source paper above. Where they differ, the original is authoritative.

Comments

Sign in to comment