NewGraphRAG now in early beta

Glossary

Reranking

Also known as: Re-ranking, Cross-encoder reranking

Definition

After the fast but coarse similarity search in the vector index, the top-N candidates are passed to a reranker — typically a cross-encoder or a smaller LLM that scores each question/passage pair individually. The result is a re-ordered list that prioritizes the chunks most aligned with the question. Reranking improves answer quality at the cost of latency and compute, which is why it is typically applied only to a small candidate set.

How Swiss Knowledge Hub uses this term

Swiss Knowledge Hub combines vector retrieval with reranking so that even for ambiguous questions (for example legal phrasing or references to standards), the genuinely relevant passages are prioritized.

Related terms

Sources

  1. Pinecone — Rerankers explainedhttps://www.pinecone.io/learn/series/rag/rerankers/

Last updated: April 22, 2026