Most retrieval-augmented systems treat a research paper as just another text blob to chunk and embed. PaperQA2's bet is that scientific literature needs scientific plumbing: it tracks which paper a passage came from, fetches that paper's metadata, checks whether it has been retracted, and re-ranks evidence the way a careful reader would — summarizing each chunk in the context of the actual question before trusting it.
What Sets It Apart
- Agentic, not a fixed pipeline: an LLM agent calls search, gather-evidence, and answer tools in whatever order the question demands, iterating until it has enough support, so a vague query gets refined rather than answered badly.
- Retrieval with contextual summarization (RCS): instead of dumping top-k chunks into a prompt, it scores and re-summarizes each chunk against the query, which is what lets it cite precisely rather than hand-wave.
- Real bibliographic grounding: metadata comes from Semantic Scholar, Crossref, and Unpaywall, so citations carry counts and retraction flags and the model can decline to lean on a withdrawn paper.
- Beyond plain text: tables, figures, and equations inside PDFs are parsed instead of skipped.
Great Fit If
You are doing literature review, evidence synthesis, or fact-checking over a real corpus of papers and value traceable citations over speed. The accompanying 2024 paper reports it matches or exceeds subject-matter experts on synthesis tasks and surfaces ~2.34 contradictions per biology paper, 70% of which human experts validated.
Look elsewhere if you want a general chatbot or a lightweight RAG over arbitrary documents — the scientific metadata machinery, multiple external API calls, and per-chunk LLM summarization make it heavier and slower than a plain vector-search QA setup.