reranking
Also called: re-ranking, reranker, cross-encoder reranking
Reranking is a second-stage step in AI search and retrieval systems that reorders an initial set of retrieved candidates by true relevance to the query, usually with a cross-encoder model that scores each query-document pair before the top results are passed to the LLM.
Two-stage retrieval
First-stage retrieval (keyword or vector search) is built for speed. It scans millions of passages and returns a rough shortlist, but it judges each document shallowly, either on keyword overlap or on a single compressed vector, so nuance gets lost. Reranking is the precision pass over that shortlist. A cross-encoder reads the query and one candidate together in the same input, runs a full inference step, and returns a relevance score. Because it looks at the pair jointly instead of comparing two pre-computed vectors, it catches meaning that first-stage retrieval misses.
The tradeoff is cost. A reranker runs one model pass per candidate, so it is far slower than a vector lookup. That is why systems retrieve many candidates cheaply (say the top 100), then rerank only that set down to the handful an LLM will actually read. Nogueira and Cho demonstrated the pattern in 2019, using BERT to rerank BM25 results and beating the previous state of the art on MS MARCO by 27% relative in MRR@10.
A typical call returns scored indexes:
rerank(query, documents) -> [{index: 3, score: 0.94}, {index: 7, score: 0.88}, ...]
Those scores decide which passages survive. Anything that does not make the reranked cut never reaches the answer, no matter how well it matched on keywords. In practice, reranking is where relevance actually gets judged, one query-document pair at a time.
How it affects your traffic
In AI search (AI Overviews, ChatGPT, Perplexity), reranking is the gate between being retrieved and being cited. Your page can match the query and still get dropped at the rerank step if the specific passage does not answer the question when read next to it. Winning here means writing self-contained, question-tight passages that score high on relevance, not pages padded with the right keywords. That passage-level discipline is the core of our AI SEO work.
Get AI SEO that moves the needle
We turn terms like this into ranked pages and qualified pipeline. Start with a free Initial SEO Strategy.