Ranking Free RAG: Replacing Re-ranking with Selection in RAG for Sensitive Domains
Abstract
Lay Summary
Retrieval-augmented generation, or RAG, helps language models answer questions by first retrieving relevant information from external documents. Many companies now use RAG to build AI systems for law, medicine, finance, education, and enterprise search. But most RAG pipelines still depend on hidden ranking mechanisms that decide which pieces of evidence are passed to the model and which are discarded. These rankings are often difficult to inspect, can discard important evidence before the model ever sees it, and may succumb to data poisoning when misleading or adversarial content is ranked highly. METEORA addresses this problem by replacing blind ranking with rationale-driven evidence selection. Rather than simply choosing the highest-scoring chunks, METEORA evaluates whether each piece of retrieved evidence is useful for answering the query and asks for a reason why. This makes retrieval more transparent: the system does not just select evidence, it explains the basis for selecting it. The result is a more interpretable and efficient RAG pipeline. METEORA can reduce unnecessary context, preserve stronger evidence, and make the retrieval stage easier to audit. This is especially important in high-stakes settings, where users need to know not only what an AI system answered but also which evidence shaped that answer. By moving from score-based ranking to reasoned evidence selection, METEORA reframes a core problem in RAG: better retrieval is not only about finding more documents but about choosing the right evidence for the right reason.