SmartFAQs.ai
Back to Learn
Intermediate

Query Expansion

Query Expansion is a pre-retrieval technique in RAG pipelines where an LLM reformulates a single user query into multiple variations or semantically enriched versions to improve retrieval recall. While it significantly increases the likelihood of finding relevant context, it introduces an architectural trade-off of increased latency and the risk of retrieving irrelevant 'noise' that can degrade the final generation.

Definition

Query Expansion is a pre-retrieval technique in RAG pipelines where an LLM reformulates a single user query into multiple variations or semantically enriched versions to improve retrieval recall. While it significantly increases the likelihood of finding relevant context, it introduces an architectural trade-off of increased latency and the risk of retrieving irrelevant 'noise' that can degrade the final generation.

Disambiguation

It focuses on broadening the search surface area during the retrieval phase, rather than refining the prompt for the final answer generation.

Visual Metaphor

"Switching from a narrow laser pointer to a wide-beam floodlight to find an object in a dark room."

Key Tools
LangChain (MultiQueryRetriever)LlamaIndex (QueryTransform)DSPyOpenAI (for rewriting tasks)BM25 (often used in hybrid expansion)
Related Connections

Conceptual Overview

Query Expansion is a pre-retrieval technique in RAG pipelines where an LLM reformulates a single user query into multiple variations or semantically enriched versions to improve retrieval recall. While it significantly increases the likelihood of finding relevant context, it introduces an architectural trade-off of increased latency and the risk of retrieving irrelevant 'noise' that can degrade the final generation.

Disambiguation

It focuses on broadening the search surface area during the retrieval phase, rather than refining the prompt for the final answer generation.

Visual Analog

Switching from a narrow laser pointer to a wide-beam floodlight to find an object in a dark room.

Related Articles