5ting at SemEval-2026 Task 8: Strong End-to-End Multi-Turn RAG via LLM-Based Reranking and Faithfulness Control
Summary
A modular multi-turn Retrieval-Augmented Generation (RAG) system, presented at SemEval-2026 Task 8, addresses hallucination, context drift, and underspecification in LLM outputs. This system integrates dual-query merged retrieval with LLM-based reranking, which enhanced nDCG@5 by 17.7% by delivering high-precision evidence. A core innovation is a role-separated prompting strategy that strictly controls hallucination during generation. This strategy explicitly separates conversation history, used only for intent and coreference resolution, from retrieved passages, which are enforced as the exclusive source of factual grounding. By preventing the language model from misinterpreting prior dialogue turns as factual evidence, the system secured the 3rd rank out of 29 participants in the SemEval-2026 Task 8 end-to-end evaluation. Its faithfulness-oriented design achieved a ROUGE-L F1 score of 0.7692, outperforming larger baselines and confirming the effectiveness of explicit grounding constraints in ensuring lexical faithfulness and reducing hallucinations.
Key takeaway
For Machine Learning Engineers building multi-turn RAG systems, you should consider implementing a role-separated prompting strategy to combat hallucination and context drift. This approach, which isolates conversation history from factual grounding sources, significantly improves output faithfulness, as demonstrated by a ROUGE-L F1 score of 0.7692. Integrating LLM-based reranking for retrieval also boosts evidence precision, potentially improving your system's nDCG@5 by over 17%.
Key insights
A multi-turn RAG system uses role-separated prompting and LLM-based reranking to significantly reduce hallucination and improve factual grounding.
Principles
- Explicitly separate dialogue history from factual grounding sources.
- LLM-based reranking improves retrieval precision.
- Grounding constraints enhance lexical faithfulness.
Method
The system employs dual-query merged retrieval, LLM-based reranking, and a role-separated prompting strategy. This strategy isolates conversation history for intent resolution from retrieved passages for factual grounding.
In practice
- Implement dual-query retrieval for RAG.
- Use LLM-based reranking for evidence precision.
- Apply role-separated prompting for hallucination control.
Topics
- Retrieval-Augmented Generation
- LLM Reranking
- Hallucination Control
- Multi-Turn Dialogue
- Semantic Evaluation
- Prompt Engineering
Best for: Research Scientist, AI Architect, AI Engineer, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.