> Paper: H-RAG at SemEval-2026 Task 8: Hierarchical Parent-Child Retrieval for Multi-Turn RAG Conversations > Authors: Passant Elchafei, Hossam Emam, Mohamed Alansary, Monorama Swain, Markus Schedl > arXiv: 2605.00631 | 2026-04-30
The RAG System That Forgets Mid-Conversation
Imagine chatting with an AI assistant about a complex topic:
You: "Tell me about quantum computing" AI: "Quantum computing uses qubits..."
You: "What advantages does it have over classical computing?" AI: "Quantum computing, on specific problems..." (retrieves new documents, forgets earlier content)
You: "What are the specific applications?" AI: "Quantum computing can be applied to cryptography, drug discovery..." (retrieves yet again, disconnected from the previous turns)
Problem: independent retrieval at every turn leads to incoherent answers and lost context.
Conversation Amnesia in Multi-Turn RAG
Problems of traditional RAG in multi-turn conversations:
1. Independent retrieval
- Each turn retrieves based only on the current question
- Conversation history is ignored
- Answers may contradict earlier statements
- Retrieved documents have inconsistent granularity
- Some too broad, some too fine
- Cannot adapt to conversational needs
- Generated content claims to be grounded in retrieved evidence
- But actually introduces outside knowledge
- Dangerous in scenarios requiring strict evidence
- Accurate answers
- Faithful grounding in retrieved evidence
- Multi-turn consistency
- Parent: coarse-grained document/section
- Provides overall context
- Ensures multi-turn consistency
- Child: fine-grained paragraph/sentence
- Provides precise evidence
- Used for specific answers
- Child retrieval: find the fine-grained content most relevant to the current question
- Parent context reconstruction: map matched children back to their parent documents for broader context
- Joint generation: children supply precise evidence, parents supply coherent context
- Parent documents stay stable across the conversation
- Different turns cite the same knowledge source
- Avoids self-contradiction
- Fragmented context: each turn retrieves different documents; there is no shared knowledge foundation, so answers read like collages rather than coherent narratives.
- Single granularity: either too broad (whole documents) or too fine (single sentences), with no way to adjust.
- Dual-granularity coverage: children answer specific questions precisely; parents keep overall consistency; flexibly combined.
- Knowledge anchoring: parent documents act as anchors; all turns revolve around a shared knowledge base, preventing drift.
- Traceable evidence: children provide exact evidence; parents provide its context — satisfying faithful-grounding requirements.
2. Granularity mismatch
3. Unfaithful evidence
In MTRAGEval (a multi-turn RAG benchmark), Task C requires:
H-RAG: Hierarchical Parent-Child Retrieval
The paper proposes H-RAG (Hierarchical Parent-Child Retrieval):
Core idea: > Separate fine-grained child-level retrieval from coarse-grained parent-level context reconstruction.
Technical approach:
1. Hierarchical document structure
2. Hierarchical retrieval
3. Multi-turn consistency
Think of academic writing: you cite specific sentences (children) to support claims, but those sentences come from the same paper (parent) — keeping your argument coherent.
Why Hierarchy Beats Flat Retrieval
Problems with flat retrieval:
H-RAG's advantages:
A Feynman-Style Judgment: Understanding Requires Layers
When explaining physics, Feynman always worked at multiple levels:
> "If you can't explain something from simple to complex, you don't understand it. Good explanations need layers — the big picture first, then the details."
In multi-turn dialogue:
> "Good RAG also needs layers — first maintain the conversation's overall coherence (parent), then provide concrete evidence (child). Retrieval without hierarchy is like a textbook without chapters: all the information is there, but you can't navigate it."
H-RAG's philosophy: conversations are hierarchical, so retrieval should be hierarchical too.
Takeaways
If you are building a conversational RAG system, ask yourself:
1. "Does my multi-turn dialogue stay consistent?" 2. "Can retrieval granularity adapt to need?" 3. "Is there a 'parent' knowledge foundation anchoring the conversation?" 4. "Is generated content faithful to retrieved evidence?"
H-RAG reminds us: multi-turn RAG is not 'independent retrieval per turn,' but 'progressive exploration on a shared knowledge foundation.'
When AI can manage knowledge at multiple levels — seeing both the trees (children) and the forest (parents) — it can truly conduct coherent, consistent, and trustworthy multi-turn conversations.
In the world of RAG, hierarchy is not added complexity, but deepened understanding.
*Original analysis from the Zhichai AI Lab.*