AIAny
AI Agent2023
Icon for item

PaperQA2

Runs an agentic RAG loop over scientific papers: searches literature, gathers and re-ranks evidence chunks, then answers with in-text citations. Adds metadata-aware embeddings, retraction checks, and contradiction detection across full PDFs.

Introduction

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.

Information

  • Websitegithub.com
  • OrganizationsFutureHouse
  • AuthorsFuture-House
  • Published date2023/02/05

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.