Knowledge Retrieval and RAG

Does question type determine the right retrieval strategy?

Explores whether different non-factoid question types require distinct retrieval and decomposition approaches. Matters because standard RAG fails when applied uniformly to debate, comparison, and experience questions despite being effective for factoid queries.

Note · 2026-02-22 · sourced from RAG
RAG How should researchers navigate LLM reasoning research?

Standard RAG treats all queries as factoid: retrieve relevant documents, extract the answer. This is appropriate when there is a definitive answer. It is inappropriate for non-factoid questions (NFQs) that lack definitive answers and require synthesizing multiple perspectives, balancing competing viewpoints, or integrating personal experience.

Typed-RAG classifies NFQs into five types:

The key insight: question type determines whether aspects are contrasting (high contrast, opposing directions — debate, comparison) or related (lower contrast, aligned direction — experience, reason/instruction). Contrasting aspects require distinct retrieval per aspect. Related aspects allow shared retrieval with per-aspect filtering.

Without type classification, RAG systems apply the same strategy to all queries. Evidence-based questions succeed because they fit standard RAG. The other types fail — not because retrieval is poor but because the generation architecture does not match the question structure.

Researchy Questions adds that real-world non-factoid questions involve "unknown unknowns" — the questioner doesn't know what information is missing. Characteristic formats include relationship questions ("how does X affect Y"), causal questions ("why does X happen"), comparative questions (pros/cons), and analytical questions ("to what extent does X lead to Y"). A good non-factoid question "can lead to interesting and in-depth analysis" with a "clear and refutable thesis, supported by evidence and analysis." The 8-dimension scoring rubric (ambiguity, incompleteness, assumptions, multi-facetedness, knowledge-intensity, subjectivity, reasoning-intensity, harmfulness) can inform question type classification beyond simple topic categories. Source: Arxiv/Agentic Research.


Source: RAG

Related concepts in this collection

Concept map
14 direct connections · 136 in 2-hop network ·dense cluster

Click a node to walk · click center to open · click Open full network for a force-directed map

your link semantically near linked from elsewhere
Original note title

non-factoid question answering requires question type classification because type determines retrieval and decomposition strategy