Quick answer

Consensus searches a database of peer-reviewed papers, pulls the relevant ones, and has an AI summarize what they actually found — it doesn't generate answers from memory.

Ask ChatGPT "does creatine help with muscle growth" and it will give you a confident-sounding answer pulled from whatever it absorbed during training. Ask Consensus the same question and it goes and finds actual studies, then tells you what they concluded, with citations you can click through to.

That difference comes down to one technique: retrieval-augmented generation, or RAG. It sounds technical. It isn't, once you see it broken into steps.

What RAG actually means

A plain language model answers from what it learned during training, which is frozen at some point in the past and full of gaps. RAG adds a step before the answer is written: search a specific, trusted database first, retrieve the most relevant documents, then hand those documents to the language model and say "answer using only this."

The model isn't reciting facts from memory anymore. It's reading real source material and reporting back, closer to how a research assistant works than how a trivia contestant works.

How Consensus applies this to research papers

  • It maintains an index of tens of millions of peer-reviewed papers, mostly pulled from academic databases like Semantic Scholar.
  • When you ask a question, it searches that index for papers whose abstracts and findings are actually relevant — not just keyword matches.
  • It extracts the specific claims and findings from those papers, things like "this study found X had no significant effect on Y."
  • An AI model then synthesizes those extracted findings into a short, readable summary, with each claim linked back to its source paper.

That last step is the part users actually see, but it's the smallest part of the pipeline. Most of the engineering is in building a search index that can find the right ten papers out of millions, and in extracting clean, accurate claims from dense academic writing.

Why this matters more for research than for general search

General web search has to deal with blogs, marketing pages, and forum posts of wildly varying quality. Academic search has the opposite problem: the sources are mostly trustworthy, but the language is dense, the sample sizes vary, and one study rarely settles anything. A good RAG system for research needs to represent nuance — showing you that five studies found an effect and two didn't, rather than picking a side.

Does this mean the AI can't be wrong?

No. RAG reduces one specific failure mode — the model inventing facts from thin air — but it doesn't eliminate error. The retrieval step can pull the wrong papers. The extraction step can misread a nuanced finding as a simple yes or no. And RAG can't fix a genuinely bad or underpowered study; it just reports what that study says faithfully.

The citations are the whole point. If a tool built on RAG gives you an answer with no clickable source, you've lost the one advantage the method exists to provide.

The practical habit worth building: treat the summary as a starting map, not a verdict. Click through to at least the top couple of sources before you repeat a claim to anyone else.

Bottom line

Consensus works because it makes the AI show its receipts before it talks. That's a much better default for research than a model guessing from memory — but it's still a summary of other people's work, not a substitute for reading it.