arrow_backBack to research feed
otherPublished: July 30, 2026

AskChem: Claim-Centered Infrastructure for Chemistry Literature Synthesis

By Bing Yan, Gregory Wolfe, Stefano Martiniani, Kyunghyun Cho

Research TL;DR

"Retrieval over atomic, provenance-carrying claims (2.4M claims / 147K papers) enables cross-paper chemistry synthesis, raising resolvable DOIs from 88.3% to 100%."

Abstract

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.

Technical Analysis & Implementation

Overview§

AskChem redefines the atomic unit of chemistry literature search from paper-level retrieval to individual claims. Each paper is decomposed into a set of typed, atomic statements, each grounded by a source DOI and a verbatim quote or explicit evidence locator. This allows both humans and AI agents to directly retrieve precise findings and trace provenance without reading full PDFs.

Claim Extraction and Typing§

The claim extraction pipeline likely uses an LLM to produce atomic claims from full text. For each sentence, the model extracts:

  • the claim text (subject, predicate, object, conditions)
  • a type (e.g. synthesis procedure, property, mechanism, characterization)
  • the evidence span (verbatim quote) and its location.

The typed claims are embedded with a dense retriever. Let $\mathbf{e}_c$ be the embedding of claim $c$ and $\mathbf{e}_q$ the embedding of query $q$. Relevance is computed as:

$$\text{score}(q,c) = \alpha \cdot \cos(\mathbf{e}_q,\mathbf{e}_c) + (1-\alpha) \cdot \text{BM25}(q,c)$$

where $\alpha$ balances semantic and lexical matching.

Complementary Structures§

AskChem organizes claims into three linked structures: 1. Stabilized faceted taxonomy – manually curated facets (reaction type, functional group, properties) for hierarchical browsing and filtering. 2. Evidence graph – entities and relations between claims, enabling path-based reasoning across papers. 3. Living taxonomy – an exploratory structure that situates papers under scientific principles and is updated as new literature is added.

These structures are all stored in a shared claim store, enabling a single query to span all access points.

Implementation and Access§

The system exposes a REST API, Python SDK, and an MCP (Model Context Protocol) endpoint for AI agents. A sample query via the SDK:

import askchem

client = askchem.AskChem()
results = client.search(
    query="yield of Suzuki coupling with palladium acetate",
    facets={"reaction_type": "cross-coupling"},
    claim_types=["synthesis_claim"],
    top_k=10
)
for r in results:
    print(r.text, r.doi, r.verbatim)

Evaluation and Impact§

On AskChem-Bench, grounding a GPT-5.5 reader with AskChem achieves 100% resolvable DOIs versus 88.3% without retrieval, and the highest citation density among five baselines. This demonstrates that claim-level retrieval reduces hallucination and improves verifiability in chemistry literature synthesis.

Takeaway§

By making claims first-class citizens, AskChem turns literature search from find documents to find evidence, significantly lowering the cost of assembling cross-paper scientific answers.

SHARE RESEARCH: