HyperAIHyperAI

Command Palette

Search for a command to run...

AskChem: 화학 문헌 합성을 위한 주장 중심 인프라

Bing Yan Stefano Martiniani

초록

화학 문헌 합성은 여러 논문에 흩어져 있는 특정 연구 결과를 조합해야 하는 경우가 많지만, 기존 문헌 검색 시스템은 주로 순위가 매겨진 문서 목록을 반환한다. 그 결과, 과학자와 AI 에이전트는 관련 정보를 찾고, 그 출처를 확인하며, 여러 논문에 걸친 답변을 수동으로 구성해야 한다. 본 논문에서는 논문 간 화학 검색을 위한 주장 중심 인프라인 AskChem을 제시한다. AskChem은 검색 단위를 논문에서 출처 정보를 포함한 주장으로 전환한다. 즉, 각 논문은 원자적이고 유형이 지정된 주장으로 변환되며, 각 주장은 출처 DOI와 축어적 인용문 또는 명시적 증거 위치 정보로 근거가 제시된다. 이 공유된 주장 저장소 위에서 AskChem은 검색과 합성을 위한 상호 보완적인 구조를 제공한다. 계층적 검색과 탐색을 위한 안정화된 패싯 분류 체계, 관계를 통해 주장을 연결하는 증거 그래프, 색인된 논문을 과학적 원리 아래에 배치하는 탐색적 리빙 분류 체계가 그것이다. AskChem은 현재 147,000편의 논문에서 추출한 240만 개의 주장을 색인하고 있으며, 웹 인터페이스와 AI 에이전트를 위한 REST, SDK, MCP 접근 방식을 제공한다. AskChem-Bench에서 GPT-5.5 리더를 AskChem에 기반하도록 했을 때 해결 가능한 DOI 비율이 100%에 달해, 검색 없이 수행했을 때의 88.3%보다 높았으며, 테스트한 5개 시스템 중 가장 높은 인용 밀도를 기록했다. AskChem은 https://askchem.org에서 운영 중이다.

One-sentence Summary

Researchers at New York University present AskChem, a claim-centered infrastructure that converts chemistry papers into atomic, provenance-carrying claims, exposing a faceted taxonomy, evidence graph, and living taxonomy for cross-paper synthesis, and which, indexing 2.4M claims from 147K papers, boosts AI reader DOI resolvability to 100% and achieves the highest citation density among tested systems.

Key Contributions

  • A provenance-carrying claim representation segments chemistry papers into atomic, typed assertions grounded by a source DOI and a verbatim quote or evidence locator, deployed over 2.4M claims from 147K papers.
  • Complementary structures over the shared claim store include a stabilized faceted taxonomy for hierarchical retrieval and browsing, an evidence graph linking claims through typed relations, and an exploratory living taxonomy situating papers under scientific principles.
  • Human- and agent-facing interfaces are provided through a web UI, REST API, SDK, and MCP server, along with AskChem-Bench, where grounding a GPT-5.5 reader yields 100% resolvable DOIs and the highest citation density among five tested systems, versus 88.3% without retrieval.

Introduction

Chemists frequently need to synthesize evidence scattered across many papers, such as comparing catalyst performance metrics, but existing literature search tools return document-level results. This forces researchers to manually extract and verify individual claims, a process that is slow and error-prone. LLM-based assistants face the same limitation: document retrieval does not expose the underlying claims or their relationships, and models may fabricate citations when relying on parametric memory. The authors introduce AskChem, a system that reorients search around provenance-carrying scientific claims. By extracting atomic, typed assertions with source DOIs and verbatim quotes from 147K papers, AskChem enables direct retrieval of specific findings, cross-paper synthesis, and structured navigation through faceted taxonomies, evidence graphs, and a principle-centered hierarchy.

Dataset

The authors build the AskChem dataset around three interconnected components, all extracted from scientific papers and used as a live retrieval and exploration index.

  • Claims 2.4 million atomic, typed scientific assertions. Each claim is grounded by a source DOI and a verbatim quote, and includes structured fields (reactants, conditions, measurements, materials) plus an extraction confidence score. Every claim carries paper-level metadata (DOI, venue, year, citation count, disambiguated authors via OpenAlex).

  • Stabilized faceted taxonomy 307,000 populated taxonomy nodes organized into L1/L2/L3 paths. Five content views capture what a claim is about (reaction type, substance class, application, technique, mechanism topic), with additional views for claim type, extracted measurements, time, and source authors. The taxonomy is induced from paper text and then stabilized through canonical routing, synonym normalization, and fuzzy clustering of near-duplicate subcategories.

  • Evidence graph 171,342 typed, directed edges linking claims. Relation types include cites_as_evidence, supports, extends, contradicts, and derives_from, each with a confidence score and provenance. A manual verification of 148 edges (146 decidable) showed 97.9% edge-type precision.

Sources and extraction Claims come from 147,000 papers spanning 1925–2026. Two complementary pipelines populate the store: a high-throughput extractor processes abstracts at scale, while a deeper extractor reads full-text PDFs to capture claim types often absent from abstracts (hypotheses, limitations, surprising findings). All outputs are validated against a claim schema that enforces provenance fields, numeric ranges, and chemistry-specific fields, so 100% of the 2.4M claims are source-grounded.

Processing Extracted claims are stored in SQLite with FTS5 full-text search and a vector index. Taxonomy paths are induced automatically from recurring terminology across papers and then stabilized for production retrieval. Relation edges are generated by a dedicated extraction layer, with confidence scoring and provenance attached to each edge.

How the data is used The dataset serves as the operational index for the AskChem platform, not as a training split. Hybrid search combines lexical (FTS5), paper-level, taxonomy-node, and dense-vector recall using reciprocal rank fusion. Taxonomy facets let users group results and browse category hierarchies. The evidence graph acts as a relational layer: an API endpoint returns inbound and outbound evidence links for a claim, and the web interface induces a graph over top search hits so users can navigate from a finding to claims that support, extend, or contradict it.

Method

The authors design AskChem around a claim-centered representation, replacing full papers with atomic, typed scientific assertions as the primary retrieval unit. A Claim is grounded by a source DOI and a verbatim quote, and includes structured fields such as reactants, conditions, measurements, or materials, along with an extraction confidence score. This representation ensures that individual findings, rather than entire documents, become the objects that can be searched, grouped, linked, and verified.

As shown in the framework diagram:

The platform anchors several structures under the same claim identity. A Source records paper-level metadata, including DOI, venue, year, citation count, and authors disambiguated via OpenAlex. A TreeNode places a claim in one or more faceted taxonomy paths, while an Edge records a typed relation between two claims. Keeping these structures anchored to shared claim identifiers allows search, hierarchical browsing, and graph traversal to return the same provenance-bearing objects.

To populate the claim store, the authors employ two complementary extraction pipelines. A high-throughput extractor processes abstracts at scale, while a deeper extractor reads full-text PDFs to capture claim types often absent from abstracts, such as hypotheses, limitations, and surprising findings. Each extraction call returns structured JSON validated against the claim schema, ensuring required provenance fields and chemistry-specific constraints are met.

As illustrated by the corpus statistics:

These validation checks establish traceability. In the deployed index, all claims are source-grounded, carrying a claim type, a source DOI, and a verbatim quote. The interface returns these provenance-carrying claims directly to the user.

As demonstrated in the platform interface:

To support cross-paper search, the authors add a relation-extraction layer over the claim store. The extractor emits typed, directed edges between claims, including cites_as_evidence, supports, extends, contradicts, and derives_from, each with confidence scores and provenance. This graph serves as a relational layer over retrieval, allowing users to move from a finding to claims that support, extend, or contradict it.

The authors induce a faceted taxonomy to organize claims by what they concern. Rather than imposing a fully predefined chemistry ontology, AskChem induces category paths while digesting papers and extracting claims. These paths reveal recurring terminology across reactions, substances, applications, techniques, and mechanisms. The induced paths are stabilized through canonical top-level routing, synonym normalization, and fuzzy clustering of near-duplicate subcategories, resulting in a persistent set of L1/L2/L3 paths suitable for production retrieval.

The taxonomy defines multiple operational views over the same claim store. Each claim can be assigned a path in populated views, such as coupling/cross_coupling/suzuki under by_reaction_type. Five content views capture what a claim is about: reaction type, substance class, application, technique, and mechanism topic. Additional views organize claim type, extracted measurements, time, and source authors.

As shown in the decomposition of claims across views:

These facets act as different navigational lenses over the same provenance-carrying claims. The stabilized taxonomy is used as an operational index. Hybrid search combines FTS5 claim-text retrieval, paper-level recall, taxonomy-node recall, and dense-vector recall using reciprocal rank fusion. Returned claims retain their associated view paths, allowing clients to group results or expand related categories.

Complementing the faceted taxonomy, the authors introduce a principle-centered living taxonomy that asks which broader scientific idea governs a paper's contribution. It organizes paper-grounded leaves under principles, theories, models, mechanisms, and phenomena.

As illustrated by the principle-centered organization:

The tree includes an abstention mechanism that proposes new branches when no existing node is suitable. The authors treat this structure as an exploratory overview of the indexed corpus rather than a fully validated scientific ontology.

Experiment

The evaluation validates AskChem's source grounding, structure reliability, retrieval quality, and scalability. All claims are traceable to verbatim evidence, and the evidence graph shows high edge-type precision. Claim-centered retrieval eliminates DOI hallucination and yields the best citation density and relevance, outperforming a reader without retrieval and other systems, while operating at corpus scale. AskChem is distinguished from existing databases and assistants by its faceted, provenance-carrying claim store usable by both humans and agents.

Grounding a GPT-5.5 reader in AskChem eliminates DOI hallucination, yielding 100% verified citations and the highest citation density, paper relevance, and share of recent high-impact work among all tested systems. The retrieval-free baseline frequently fabricates references and scores lowest on relevance and recency. Edison Scientific’s agentic system leads in grounded specificity and on-topic rate, highlighting a trade-off between citation verifiability and the depth of quantitative detail. AskChem achieves perfect DOI resolvability, with every cited reference verified via CrossRef, whereas the unaugmented reader resolves only 88.3% of DOIs. The AskChem-grounded reader cites nearly twice as many verified DOIs per answer as the LLM-only baseline and more than double the density of Paperclip and NotebookLM, while also surfacing a much larger fraction of recent high-impact literature.

The evaluation compares a GPT-5.5 reader grounded in the AskChem system against a retrieval-free baseline and an agentic system from Edison Scientific, along with other tools like Paperclip and NotebookLM. Grounding the reader in AskChem eliminates DOI hallucination, yielding fully verified citations, the highest citation density, and superior relevance and recency, while the baseline frequently fabricates references. The agentic system achieves the best grounded specificity and on-topic rate, revealing a trade-off between citation verifiability and depth of quantitative detail. Overall, AskChem achieves perfect DOI resolvability and cites substantially more verified recent high-impact literature than all other systems.


AI로 AI 구축

아이디어에서 출시까지 — 무료 AI 코코딩, 즉시 사용 가능한 환경, 최적의 GPU 가격으로 AI 개발을 가속화하세요.

AI 협업 코딩
바로 사용 가능한 GPU
최적의 가격

HyperAI Newsletters

최신 정보 구독하기
한국 시간 매주 월요일 오전 9시 에 이번 주의 최신 업데이트를 메일로 발송합니다
이메일 서비스 제공: MailChimp