5ting at SemEval-2026 Task 8: Strong End-to-End Multi-Turn RAG via LLM-Based Reranking and Faithfulness Control
Summary
This paper presents 5ting, a system for multi-turn Retrieval-Augmented Generation (RAG) that combines BGE-M3 dense retrieval, FAISS indexing, LLM-based reranking, and evidence-constrained generation. The system achieves strong results on SemEval-2026 Task 8, with a retrieval nDCG@5 of 0.4719 and an end-to-end harmonic score of 0.5597.
View Cached Full Text
Cached at: 06/30/26, 05:27 AM
# 5ting at SemEval-2026 Task 8: Strong End-to-End Multi-Turn RAG via LLM-Based Reranking and Faithfulness Control
Source: [https://arxiv.org/html/2606.28737](https://arxiv.org/html/2606.28737)
Thien\-Qua T\. Nguyen1,2Chi Hoang1,2Nguyen Tran1,2 Tri Le1,2Khanh Truong1,2Chinh Trong Nguyen1,2 1University of Information Technology, Ho Chi Minh City, Vietnam 2Vietnam National University Ho Chi Minh City, Ho Chi Minh City, Vietnam \{quantt\.20, chihqqc\.20, nguyenttb\.20, triln\.20, khanhtpb\.20\}@grad\.uit\.edu\.vn chinhnt@uit\.edu\.vn
###### Abstract
We introduce 5ting, our system for theSemEval–2026Task 8 \(MTRAGEval\), which evaluates multi\-turn Retrieval\-Augmented Generation \(RAG\) systems\. Multi\-turn RAG involves context drift, underspecification, and hallucination risk\. Our system combines BGE\-M3 dense retrieval with FAISS indexing, dual\-query merged retrieval, and LLM\-based reranking, followed by role\-separated generation constrained to retrieved evidence\. The retriever achievednDCG@5=0\.4719nDCG@5=0\.4719in Task A, while the end\-to\-end system ranked in Task C with a harmonic score of0\.55970\.5597andRLF=0\.7692RL\_\{F\}=0\.7692\.
5ting at SemEval\-2026 Task 8: Strong End\-to\-End Multi\-Turn RAG via LLM\-Based Reranking and Faithfulness Control
Thien\-Qua T\. Nguyen1,2Chi Hoang1,2Nguyen Tran1,2Tri Le1,2Khanh Truong1,2Chinh Trong Nguyen1,21University of Information Technology, Ho Chi Minh City, Vietnam2Vietnam National University Ho Chi Minh City, Ho Chi Minh City, Vietnam\{quantt\.20, chihqqc\.20, nguyenttb\.20, triln\.20, khanhtpb\.20\}@grad\.uit\.edu\.vnchinhnt@uit\.edu\.vn
## 1Introduction
RAG grounds LLM outputs in external knowledge to improve factual accuracyGao et al\. \([2024](https://arxiv.org/html/2606.28737#bib.bib2)\)\. In multi\-turn settings, challenges such as context dependency, underspecification, and conversational drift complicate both retrieval and generationOwoicho et al\. \([2023](https://arxiv.org/html/2606.28737#bib.bib7)\)\. To systematically evaluate these phenomena,Rosenthal et al\. \([2026a](https://arxiv.org/html/2606.28737#bib.bib9)\)introduced MTRAG\-UN, targeting unanswerable, underspecified, and non\-standalone questions, and showing that even state\-of\-the\-art systems struggle in multi\-turn scenarios\.
SemEval\-2026 Task 8 \(MTRAGEval\)Rosenthal et al\. \([2026b](https://arxiv.org/html/2606.28737#bib.bib10)\)evaluates multi\-turn RAG across four domains: ClapNQ, FiQA, Cloud, and Govt\. The final query may depend on prior dialogue context and contain implicit or ambiguous references, increasing retrieval difficulty and hallucination risk during generation\.
We participate in Subtask A \(top\-10 passage retrieval\) and Subtask C \(grounded answer generation from top\-5 passages\)\. We present 5ting, a modular multi\-turn RAG system combining dense retrieval, FAISS indexing, LLM\-based reranking, and evidence\-constrained generation\. Rather than proposing a new retriever, we focus on reranking and prompt design\.
Our main contributions are as follows:
- •We design an LLM\-based reranking mechanism that refines dense retrieval results in multi\-turn settings\.
- •We introduce a faithfulness\-oriented prompting strategy that constrains generation to retrieved evidence\.
- •We provide empirical analysis demonstrating retrieval–generation synergy\.
The remainder of the paper is organized as follows: Section 2 discusses multi\-turn RAG challenges, Section 3 presents the system architecture, Section 4 describes the experimental setup, Section 5 reports results and ablations, and Sections 6–8 provide error analysis, limitations, and conclusions\.
## 2Task Definition and Challenges
The MTRAGEval benchmark evaluates retrieval and end\-to\-end RAG on 842 multi\-turn dialogues across four domains\. Subtask A retrieves top\-10 passages from a corpus of 78,170 documents and is evaluated usingnDCG@5nDCG@5\(primary\),nDCG@1,3,10nDCG@\{1,3,10\}, andRecall@1,3,5,10Recall@\{1,3,5,10\}\. Subtask C requires grounded answer generation from the top\-5 passages and is evaluated by the harmonic mean ofRBalgRB\_\{alg\}\(reference\-based algorithmic relevance\),RLFRL\_\{F\}\(RAGAS Faithfulness LLM Judge\), andRBllmRB\_\{llm\}\(LLM\-as\-judge relevance\)\.
Compared to single\-turn benchmarks, multi\-turn dialogue introduces additional challenges\. MTRAG\-UN explicitly catalogs these phenomena, motivating our system design\.
- •Context Dependency: Final queries often rely on prior turns and may be underspecified, requiring cross\-turn interpretation\.
- •Retrieval–Generation Alignment: Strong retrieval does not ensure faithful generation; outputs must be explicitly grounded in retrieved evidence\.
- •Hallucination Control: Models may introduce unsupported information, requiring explicit grounding constraints\.
- •Non\-Standalone and Unanswerable Cases: MTRAG\-UNRosenthal et al\. \([2026a](https://arxiv.org/html/2606.28737#bib.bib9)\)highlights ambiguous or evidence\-absent queries that challenge multi\-turn RAG systems\.
Multi\-turn RAG requires a tightly integrated pipeline: retrieval must balance surface\-level matching with contextual understanding, while generation must remain grounded in retrieved evidence\. Prior work shows that query rewriting and LLM\-based reranking improve conversational retrieval \(Vakulenko et al\. \([2021](https://arxiv.org/html/2606.28737#bib.bib12)\);Sun et al\. \([2023](https://arxiv.org/html/2606.28737#bib.bib11)\);Ma et al\. \([2023](https://arxiv.org/html/2606.28737#bib.bib6)\)\), and grounding generation in retrieved evidence reduces hallucination and improves faithfulnessGao et al\. \([2024](https://arxiv.org/html/2606.28737#bib.bib2)\)\.
We address these challenges through three components: dual\-query merged retrieval, LLM\-based reranking, and role\-separated prompting\. Together, they improve precisionLiu et al\. \([2024](https://arxiv.org/html/2606.28737#bib.bib5)\)and enforce faithful generation in multi\-turn settings\.
## 3System Overview
Figure 1:Overview of the proposed multi\-turn RAG pipeline\.Our system consists of two main pipelines: a retrieval pipeline \(Subtask A\) and a generation pipeline \(Subtask C\), where the latter consumes the top\-5 outputs from the former\. Figure[1](https://arxiv.org/html/2606.28737#S3.F1)illustrates the overall architecture of our approach\.
### 3\.1Query Rewriting
In multi\-turn dialogue, the final query is often underspecified—containing unresolved coreferences, ellipsis, or implicit dependencies on prior turns—making direct retrieval unreliable\. We use GPT\-4o\-mini with temperature set to 0\.3 to rewrite the last\-turn query into a self\-contained, context\-resolved form by incorporating the full conversation history \(Vakulenko et al\. \([2021](https://arxiv.org/html/2606.28737#bib.bib12)\);Ma et al\. \([2023](https://arxiv.org/html/2606.28737#bib.bib6)\)\)\. The rewritten query is then used for retrieval and reranking, ensuring downstream components operate on an unambiguous representation of the user’s information need\.
### 3\.2Query Vectorizing, Indexing and Retrieval
Query Vectorizing: We use BAAI/bge\-m3Chen et al\. \([2024](https://arxiv.org/html/2606.28737#bib.bib1)\)as our dense encoder, producing 1024\-dimensional L2\-normalized embeddings that support input sequences up to 8192 tokens\. Both the last\-turn and rewritten queries are encoded independently\. Large\-context dense encoders trained on diverse supervised data provide strong domain\-general representations and robust cross\-domain generalizationWang et al\. \([2024](https://arxiv.org/html/2606.28737#bib.bib13)\)\.
For indexing, we adopt FAISS IndexFlatIPJohnson et al\. \([2019](https://arxiv.org/html/2606.28737#bib.bib3)\), which performs inner\-product search over normalized vectors, equivalent to cosine similarity\. We construct one index per domain and store document identifiers and associated metadata for efficient lookup\. At query time, we encode the query using the same model and retrieve the top\-kkpassages ranked by similarity\.
Retrieval: At inference time, the last\-turn and rewritten queries independently search their respective domain indices, each retrieving the top\-10 passages\. Using FAISS enables efficient similarity search with minimal computational overhead\. The two retrieval streams run in parallel to increase recall coverage, providing a diverse candidate set before the merging and LLM\-based reranking stages\.
### 3\.3Dual\-Query Merging
We maintain two parallel retrieval streams: one using the last\-turn query \(surface\-level lexical match\) and one using the rewritten query \(contextual semantic match\)\. For each task, we perform two separate retrieval passes, one per query type, each returning the top\-10 candidate sets\. We then merge the two result sets\. For passages appearing in both sets, we keep the maximum similarity score and the merged set is sorted by score in descending order, yielding approximately 10–20 unique candidate passages\.
This dual\-query strategy addresses a fundamental tension in multi\-turn retrieval: the last\-turn query may match passages that contain the exact entities mentioned by the user, while the rewrite query may retrieve passages that are semantically relevant to the broader conversational context\. The merging of both captures the strengths of each\.
### 3\.4LLM\-Based Reranking
We apply a listwise reranking step using GPT\-4o\-mini with temperature is 0\.3 to refine the ranking of the merged candidates\. Specifically, we adopt a listwise strategy to optimize the ranking from a global perspective, allowing the model to jointly consider all candidate passages and produce a more coherent overall ordering, albeit at a higher computational cost than setwise reranking\. The reranker receives the rewrite query \(which captures conversational context\) and the text of all candidate passages and outputs a JSON\-structured ranking\.
The system prompt instructs the model: "You are a document re\-ranker\. Given a question and a set of document chunks, rank them by relevance\. Return a JSON object with the key ’order’ containing an array of IDs sorted from most to least relevant\."
Rationale for using the rewrite query for reranking: The rewrite query is a self\-contained representation of the user’s information needZhuang et al\. \([2024](https://arxiv.org/html/2606.28737#bib.bib14)\);Sun et al\. \([2023](https://arxiv.org/html/2606.28737#bib.bib11)\), making it more suitable for the LLM reranker, which does not have access to the conversation history and has been shown to substantially improve ranking precision in multi\-step retrieval pipelines \(Pradeep et al\. \([2023](https://arxiv.org/html/2606.28737#bib.bib8)\)\)\.
### 3\.5The LLM, Prompt Synthesis and Answer Generation
This module serves as the core reasoning interface within the RAG pipeline\. It integrates the retrieved evidence and the dialog context into a structured prompt that is then passed to the answer\-generation model\. The prompt design explicitly distinguishes between conversational context, which is used only to resolve intent, and retrieved passages, which serve as the sole factual source\.
For Subtask C, we take the top\-5 retrieved passages from our Subtask A output and generate an answer using GPT\-4o\-mini\. The prompt is structured with clear role separation:
- •Conversation History \(all turns except the last\): used only for understanding user intent and resolving references; explicitly stated to not be a source of factual information\.
- •Retrieved Passages: designated as the sole source of facts\.
- •Last\-Turn Question: the specific question to answer\.
This design reflects the principle that in a RAG system, the conversation history provides pragmatic context \(what the user is talking about, what has already been discussed, etc\) while the retrieved passages provide epistemic grounding \(the factual basis for the answer\)\. Evidence\-grounded prompting of this form has been shown to reduce hallucination and improve factual fidelity in RAG systems\.
## 4Experimental Setup
### 4\.1Data
MTRAGEval builds on the MTRAG datasetKatsis et al\. \([2025](https://arxiv.org/html/2606.28737#bib.bib4)\), comprising 110 conversations \(avg\. 7\.7 turns\) across four domains, yielding 842 evaluation tasks\. MTRAG\-UNRosenthal et al\. \([2026a](https://arxiv.org/html/2606.28737#bib.bib9)\)extends this with 666 additional tasks across six domains\. The corpus contains 78,170 documents and 366,479 passages \(512 tokens, 100\-token overlap\)\. Retrieval uses three query variants \(question, lastturn, rewrite\), and Subtask C follows the full RAG setting with generation from the top\-5 passages\.
### 4\.2Evaluation Metrics
All experiments were conducted using the official SemEval–2026 Task 8 evaluation framework\. Retrieval performance was evaluated usingnDCG@5nDCG@5along withnDCG@1,3,10nDCG@\{1,3,10\}andRecall@1,3,5,10Recall@\{1,3,5,10\}for Task A\. End\-to\-end performance for Task C was measured using the harmonic mean ofRBalgRB\_\{\\text\{alg\}\},RLFRL\_\{F\}, andRBllmRB\_\{\\text\{llm\}\}\.
We follow the official evaluation protocol and exclude underspecified examples as required for reporting final scores\.
### 4\.3LLM Model and Configuration
We use the publicly available GPT\-4o\-mini model without task\-specific fine\-tuning for query rewriting, reranking, and answer generation, configuring only the decoding hyperparameters for generation with nucleus sampling \(top\-p=0\.9\\text\{top\-p\}=0\.9\) and a low temperature \(T=0\.1T=0\.1\) to promote stable and faithful generation\. Thetop−ptop\-pconstraint limits decoding to high\-probability tokens, while the low temperature sharpens the distribution to encourage near\-deterministic outputs\. This setup enhances consistency and factual grounding, making it suitable for retrieval\-augmented generation, where minimizing hallucination is critical\. For reranking, we use listwise prompting over the full merged candidate set and do not apply a sliding\-window mechanism\.
## 5Results and Analysis
### 5\.1Official Test Results
Subtask A: OurnDCG@5nDCG@5reaches 98\.4% of the ELSER baseline \(gap = 0\.0076\) as shown in Table[1](https://arxiv.org/html/2606.28737#S5.T1), despite using a general\-purpose dense encoder versus a task\-specific learned sparse retriever used during benchmark creation\. The dev\-to\-test increase from 0\.439 to 0\.4719 in nDCG@5 occurred without any changes to the pipeline settings\. We attribute the difference to dataset\-specific variation in domain composition and query difficulty, together with the sensitivity of nDCG@5 to top\-ranked passages\.
Subtask C: Our system surpasses all organizer baselines by \+4\.3% and achieves 95% of the top score \(Table[5](https://arxiv.org/html/2606.28737#S5.T5)\), demonstrating that a well\-engineered prompt can outperform larger reasoning\-capable models\. The highRLFRL\_\{F\}\(0\.7692\) confirms strong lexical faithfulness attributable to our grounding instructions\.
SystemTypenDCG@5R@5BM25Lexical0\.220\.25BGE\-base 1\.5Dense0\.340\.37Ours w/o rerankerDense0\.3730\.37ELSERSparse0\.480\.52Ours \+ rerankerDense\+LLM0\.4390\.44Our \(test phase\)Dense\+LLM0\.4719–Table 1:Retrieval performance comparison on the dev set \(Query Rewrite, 4\-domain average\)\. Baseline values are from the official MT RAG Benchmark\.Subtask AClapNQCloudFiQAGovtnDCG@50\.51120\.40190\.38720\.4569Recall@50\.53270\.42370\.39190\.5027Table 2:Per\-domain retrieval performance of our system on the four MTRAG \(dev set, rewrite \+ rerank\)\.Query TypenDCG@5\(Base\)nDCG@5\(\+Reranker\)Δ\\Deltarel\(%\)questions0\.20660\.2192\+6\.1lastturn0\.34540\.4029\+16\.6rewrite0\.37320\.4393\+17\.7Table 3:Ablation study on the effect of LLM reranking \(dev set, 4\-domain average\)\.ConfigurationnDCG@1nDCG@5R@10BGE\-M3 dense0\.25640\.34540\.4641\+ Query rewrite0\.35900\.37320\.5312\+ LLM reranking0\.45460\.43930\.5588Table 4:Cumulative ablation results \(dev set, 4\-domain average\)\.Notably, the performance gap between Subtask A and Subtask C reveals a consistent rank asymmetry, where moderate retrieval quality is amplified at the generation stage\. This suggests a structural property of multi\-turn RAG systems: downstream reranking and grounded generation emphasize high\-precision evidence, making top\-ranked context more critical than overall recall\. As a result, effective generation\-side faithfulness control can partially compensate for retrieval limitations\.
Table[2](https://arxiv.org/html/2606.28737#S5.T2)shows clear domain\-specific variation\. ClapNQ achieves the best performance \(nDCG@5=0\.5112nDCG@5=0\.5112\), indicating strong alignment with dense semantic retrieval, while FiQA is the most challenging \(nDCG@5=0\.3872nDCG@5=0\.3872\), likely due to domain\-specific terminology and higher query ambiguity\. Cloud and Govt exhibit intermediate results\.
The relatively small gap betweennDCG@5nDCG@5andRecall@5Recall@5across domains suggests that reranking mainly improves the ordering of relevant passages rather than recall\. Overall, these results confirm that domain characteristics, particularly in FiQA, remain a key bottleneck for retrieval performance\.
PhaseModelSizeRB\_llmRL\_FRB\_algCombineddevLlama 3\.1 Instruct8B0\.540\.530\.340\.45Llama 3\.1 Instruct70B0\.590\.640\.390\.52Llama 3\.1 Instruct405B0\.630\.650\.390\.53Mixtral 8×\\times22B141B0\.610\.560\.350\.48Command\-R\+104B0\.590\.660\.380\.51Qwen 2\.572B0\.650\.640\.370\.52GPT\-4o\-mini–0\.640\.640\.370\.52GPT\-4o–0\.660\.650\.380\.53Ours–0\.670\.770\.380\.55testqwen\-30b\-a3b\-thinking30B–––0\.5366Ours–0\.67840\.76920\.38670\.5597Table 5:Generation baselines and our system under the full RAG setting on the dev and test phases\. Bold indicates the best score within each phase\.Failure TypeCountExampleCoreference not resolved12 \(40%\)“What about the second option?” — the model cannot determine which “option” is referencedTopic shift7 \(23%\)The conversation shifts domains within the same sessionLong\-range dependency5 \(17%\)The information need depends on context from 3\+ turns agoRare terminology4 \(13%\)Domain\-specific jargon not well represented in embeddingAnnotation ambiguity2 \(7%\)Multiple valid passages could answer the queryTable 6:Error analysis by failure type\.
### 5\.2Baseline Comparison
Our base retriever already outperforms BGE\-base 1\.5 by \+9\.8% \(Table[1](https://arxiv.org/html/2606.28737#S5.T1)\), validating the BGE\-M3 upgrade\. With reranking, we reach 91\.5% of ELSER’snDCG@5nDCG@5\. OurnDCG@1nDCG@1\(0\.455\) nearly matches ELSER \(0\.46\), showing the reranker’s effectiveness at top\-1 precision\.
In Table[5](https://arxiv.org/html/2606.28737#S5.T5), ourRLFRL\_\{F\}\(0\.7692\) exceeds the best baselineRLFRL\_\{F\}\(GPT\-4o: 0\.66\) by \+16\.5%, demonstrating that prompt design contributes more to lexical faithfulness than model scale\. OurRBllmRB\_\{llm\}\(0\.6784\) matches GPT\-4o’s \(0\.68\), indicating comparable answer quality despite a smaller model\.
Two factors explain the result:
- •Precision over recall in context: We feed only top\-5 reranked passages\. The LLM reranker’s \+17\.7%nDCG@5nDCG@5improvement \(Table[3](https://arxiv.org/html/2606.28737#S5.T3)\) ensures the top passage is highly relevant, giving the generator concentrated evidence rather than noisy context\.
- •Anti\-hallucination Prompting: We separate dialogue history \(intent\) from retrieved passages \(facts\) to prevent the model from misinterpreting prior turns as factual evidence, a common failure mode in multi\-turn RAG\.
The harmonic mean penalizes metric imbalance, favoring systems with consistent performance\. Our relatively balanced scores yield a stronger combined result\. The main bottleneck isRBalgRB\_\{alg\}\(0\.3867\), which reflects reference alignment\. Improving retrieval recall would likely increase reference\-aligned content and boost this component\.
### 5\.3Ablation: Effect of LLM Reranking
The reranker and query rewriting are complementary: the reranker’s gain is largest on rewrite \(\+17\.7%\) as shown in Table[3](https://arxiv.org/html/2606.28737#S5.T3), indicating that it refines ordering after query rewriting improves recall, demonstrating the reranker’s effectiveness at promoting the most relevant passage\.
### 5\.4Component Contribution
Table[4](https://arxiv.org/html/2606.28737#S5.T4)highlights the effectiveness and complementarity of the two components\. Query rewriting primarily improves recall \(\+14\.5%R@10R@10\) and early precision \(\+40\.0%nDCG@1nDCG@1\), expanding semantic coverage for multi\-turn queries\. LLM reranking then substantially refines ranking quality, contributing the largest gain atnDCG@5nDCG@5\(\+17\.7%\) and delivering 2\.3× the standalone improvement of rewriting\. Overall, the full pipeline achieves a \+27\.2% relativenDCG@5nDCG@5improvement, demonstrating the strong precision–recall synergy of the proposed approach\.
## 6Error Analysis
We analyze representative failure cases to characterize system limitations and manually examined 30 retrieval failures \(cases whereRecall@10Recall@10< 0\.25\) on the dev set, shown in Table[6](https://arxiv.org/html/2606.28737#S5.T6)\. Coreference dominance highlights dependence on upstream query rewriting quality\. These failure modes align closely with the open challenges catalogued in MTRAG\-UNRosenthal et al\. \([2026a](https://arxiv.org/html/2606.28737#bib.bib9)\), which finds that unanswerable, underspecified, and non\-standalone questions remain particularly difficult for current RAG systems, confirming the generality of our error patterns\. For generation, low\-scoring cases stem from insufficient retrieval context, over\-extraction, and occasional language mismatch\.
For Subtask C, we examined cases where the LLM\-as\-judge score was below 0\.3 \(lowest quartile\)\. Common issues include:
- •Insufficient context: When retrieval fails \(low recall\), the generator either produces generic answers or acknowledges inability to answer\.
- •Over\-extraction: For some queries, the model copies large portions of retrieved passages instead of synthesizing concise answers\.
## 7Limitations
Our system depends on commercial LLM APIs for both reranking and generation, which limits full reproducibility\. The reranking step adds latency \(1–2 seconds per query\) that may be prohibitive for real\-time applications\. Our error analysis is based on a manual sample and may not generalize to all failure modes\. Additionally, we did not explore fine\-tuning the embedding model on the target task data, which could potentially improve retrieval performance\. We also did not evaluate hybrid retrieval with BGE\-M3 or open\-source rerankers such as RankZephyr, both of which remain promising directions for future work\.
## 8Conclusion
We presented Team 5ting’s system for SemEval\-2026 Task 8, ranking 14/38 in Subtask A and 3/29 in Subtask C\. Our results show that LLM\-based reranking is the most impactful component, improvingnDCG@5nDCG@5by \+17\.7%\. A general\-purpose dense retriever with reranking achieves 98\.4% of the ELSER baseline, demonstrating strong efficiency without specialized sparse models\. More importantly, the Task A/C rank asymmetry suggests that generation\-side grounding can compensate for moderate retrieval performance, highlighting the central role of faithfulness control in multi\-turn RAG\. Additionally, error analysis highlights challenges in context alignment and evidence aggregation, motivating future work on hybrid retrieval, open\-source rerankers, and embedding fine\-tuning\.
## References
- Chen et al\. \(2024\)Jianlv Chen, Shitao Xiao, Peitian Zhang, Kun Luo, Defu Lian, and Zheng Liu\. 2024\.[BGE M3\-embedding: Multi\-linguality, multi\-functionality, multi\-granularity text embeddings through self\-knowledge distillation](https://arxiv.org/abs/2402.03216)\.In*Findings of the Association for Computational Linguistics: ACL 2024*\.
- Gao et al\. \(2024\)Yunfan Gao, Yun Xiong, Xinyu Gao, Kangxiang Jia, Jinliu Pan, Yuxi Bi, Yi Dai, Jiawei Sun, Meng Wang, and Haofen Wang\. 2024\.[Retrieval\-augmented generation for large language models: A survey](https://arxiv.org/abs/2312.10997)\.*Preprint*, arXiv:2312\.10997\.
- Johnson et al\. \(2019\)Jeff Johnson, Matthijs Douze, and Hervé Jégou\. 2019\.Billion\-scale similarity search with GPUs\.*IEEE Transactions on Big Data*, 7\(3\):535–547\.
- Katsis et al\. \(2025\)Yannis Katsis, Sara Rosenthal, Kshitij Fadnis, Chulaka Gunasekara, Young\-Suk Lee, Lucian Popa, Vraj Shah, Huaiyu Zhu, Danish Contractor, and Marina Danilevsky\. 2025\.[mtrag: A multi\-turn conversational benchmark for evaluating retrieval\-augmented generation systems](https://doi.org/10.1162/TACL.a.19)\.*Transactions of the Association for Computational Linguistics*, 13:784–808\.
- Liu et al\. \(2024\)Zihan Liu, Wei Ping, Rajarshi Roy, Peng Xu, Chankyu Lee, Mohammad Shoeybi, and Bryan Catanzaro\. 2024\.[ChatQA: Surpassing GPT\-4 on conversational QA and RAG](https://arxiv.org/abs/2401.10225)\.In*Advances in Neural Information Processing Systems \(NeurIPS\)*, volume 37\.
- Ma et al\. \(2023\)Xueguang Ma, Xinyu Zhang, Ronak Pradeep, and Jimmy Lin\. 2023\.[Zero\-shot listwise document reranking with a large language model](https://arxiv.org/abs/2305.02156)\.*Preprint*, arXiv:2305\.02156\.
- Owoicho et al\. \(2023\)Paul Owoicho, Ivan Sekulić, Mohammad Aliannejadi, Jeffrey Dalton, and Fabio Crestani\. 2023\.Exploiting simulated user feedback for conversational search: Ranking, rewriting, and beyond\.In*Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval*, pages 632–642\. ACM\.
- Pradeep et al\. \(2023\)Ronak Pradeep, Sahel Sharifymoghaddam, and Jimmy Lin\. 2023\.[Rankzephyr: Effective and robust zero\-shot listwise reranking is a breeze\!](https://arxiv.org/abs/2312.02724)*Preprint*, arXiv:2312\.02724\.
- Rosenthal et al\. \(2026a\)Sara Rosenthal, Yannis Katsis, Vraj Shah, Lihong He, Lucian Popa, and Marina Danilevsky\. 2026a\.[MTRAG\-UN: A benchmark for open challenges in multi\-turn RAG conversations](https://arxiv.org/abs/2602.23184)\.*Preprint*, arXiv:2602\.23184\.
- Rosenthal et al\. \(2026b\)Sara Rosenthal, Vraj Shah, Yannis Katsis, and Marina Danilevsky\. 2026b\.SemEval\-2026 task 8: MTRAGEval: Evaluating multi\-turn RAG conversations\.In*Proceedings of the 20th International Workshop on Semantic Evaluation \(SemEval\-2026\)*, San Diego, California\. Association for Computational Linguistics\.
- Sun et al\. \(2023\)Weiwei Sun, Lingyong Yan, Xinyu Ma, Shuaiqiang Wang, Pengjie Ren, Zhumin Chen, Dawei Yin, and Zhaochun Ren\. 2023\.[Is ChatGPT good at search? investigating large language models as re\-ranking agents](https://arxiv.org/abs/2304.09542)\.In*Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing \(EMNLP\)*\. Association for Computational Linguistics\.
- Vakulenko et al\. \(2021\)Svitlana Vakulenko, Shayne Longpre, Zhucheng Tu, and Raviteja Anantha\. 2021\.Question rewriting for conversational question answering\.In*Proceedings of the 14th ACM International Conference on Web Search and Data Mining \(WSDM\)*, pages 355–363\. ACM\.
- Wang et al\. \(2024\)Liang Wang, Nan Yang, Xiaolong Huang, Linjun Yang, Rangan Majumder, and Furu Wei\. 2024\.[Improving text embeddings with large language models](https://doi.org/10.18653/v1/2024.acl-long.642)\.In*Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\)*, pages 11897–11916, Bangkok, Thailand\. Association for Computational Linguistics\.
- Zhuang et al\. \(2024\)Shengyao Zhuang, Honglei Zhuang, Bevan Koopman, and Guido Zuccon\. 2024\.[A setwise approach for effective and highly efficient zero\-shot ranking with large language models](https://doi.org/10.1145/3626772.3657813)\.In*Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval*\. ACM\.
## Appendix ASystem Prompt for Answer Generation \(Subsection 3\.5\)
To ensure transparency and reproducibility, we provide the full system prompt used in the generation stage \(Subtask C\)\. This prompt operationalizes our role\-separated prompting strategy described in Section 3\.6 and explicitly enforces evidence\-grounded generation\.
The design clearly distinguishes three functional roles: \(1\) conversation history for contextual interpretation only, \(2\) retrieved passages as the sole factual authority, and \(3\) the last\-turn question as the target query\. The prompt also contains strict anti\-hallucination instructions that prohibit the model from introducing unsupported information\.
System prompt\(an example used for Subtask C\)
"""You are a precise and faithful question\-answering assistant operating within a Retrieval\-Augmented Generation \(RAG\) pipeline\. Your sole task is to answer the user’s final question using ONLY the factual information present in the Retrieved Passages provided below\.
ROLE DEFINITIONS — READ CAREFULLY BEFORE ANSWERING
\[ROLE 1 — CONVERSATION HISTORY: For context resolution ONLY\]
The conversation history is provided exclusively to help you:
- •Identify what topic the conversation concerns\.
- •Resolve coreferences and pronouns \(e\.g\., “it”, “that option”, “the previous method”\)\.
- •Identify what has already been discussed or clarified in prior turns\.
CRITICAL:The conversation history is NOT a source of factual information\. Do NOT extract, infer, or cite any facts from it\. Treat it as pragmatic context only\.
\[ROLE 2 — RETRIEVED PASSAGES: The SOLE source of facts\]
The retrieved passages below represent the only authoritative factual basis for your answer\. Every factual claim in your response MUST be directly supported by at least one of these passages\. If the passages do not contain sufficient information to answer the question, you must state that explicitly\.
\[ROLE 3 — LAST\-TURN QUESTION: The specific question to answer\]
Answer the question directly, concisely, and faithfully, grounded in the retrieved passages\.
CONVERSATION HISTORY \(intent and reference resolution only — NOT a factual source\)
User:What kind of equipment are members of the California Conservation Corps likely to learn how to use?
Agent:Members of the California Conservation Corps \(CCC\) are likely to …
User:I also want to know if California Conservation Corps provides any uniforms when I join\.
Agent:Yes, when you join the California Conservation Corps \(CCC\), you will receive a uniform\. The CCC uniform not only makes you look good, but also protects you\. It is included as part of your membership\. The uniform includes a soft cap, shirt, pants, hard hat, steel\-toe boots, and gloves\.
LAST\-TURN QUESTION
User:thank you\. What does CCC’s Core Training program is for? What course are offered during the training?
RETRIEVED PASSAGES \(the sole factual basis for your answer\)
text1:CCC Core Training \| California Conservation Corps Core Training includes the following courses: COMET: All applicants must complete …
text2:Training and Career Pathways \| California Conservation Corps When it’s time to put the training into practice, the work they are …
text3:CCC Core Training \| California Conservation Corps CCC Core Training \| California Conservation Corps …
text4:Life in the Corps \| California Conservation Corps In the CCC, crews will travel up to an hour or so to reach a project site …
text5:Training and Career Pathways \| California Conservation Corps Training and Career Pathways \| California Conservation …
ANSWER GENERATION GUIDELINES
1. 1\.Ground every factual claim EXCLUSIVELY in the Retrieved Passages\. Do not use parametric world knowledge\.
2. 2\.If the passages are insufficient to answer the question, respond: “Based on the available retrieved information, I cannot provide a complete answer to this question\.”
3. 3\.Do NOT speculate, hallucinate, or introduce any information absent from the passages\.
4. 4\.Use the Conversation History only to resolve coreferences and clarify the question’s intent\.
5. 5\.Synthesize information across passages coherently rather than quoting them verbatim\.
6. 6\.Be concise and direct\. Avoid unnecessary preamble or meta\-commentary\.
7. 7\.If the question is underspecified or ambiguous, acknowledge the ambiguity briefly before answering\."""Similar Articles
RaguTeam at SemEval-2026 Task 8: Meno and Friends in a Judge-Orchestrated LLM Ensemble for Faithful Multi-Turn Response Generation
This paper presents the winning system for SemEval-2026 Task 8's generation subtask, using a heterogeneous ensemble of seven LLMs with dual prompting strategies and a GPT-4o-mini judge to select the best response. The system achieved first place with a conditioned harmonic mean of 0.7827, outperforming all baselines and demonstrating the value of model diversity.
Caraman at SemEval-2026 Task 8: Three-Stage Multi-Turn Retrieval with Query Rewriting, Hybrid Search, and Cross-Encoder Reranking
This paper describes a system for SemEval-2026 Task 8 that uses a three-stage pipeline involving query rewriting with a fine-tuned Qwen model, hybrid retrieval, and cross-encoder reranking to improve multi-turn retrieval performance.
MM-BizRAG: Rethinking Multimodal Retrieval-Augmented Generation for General Purpose Enterprise Q&A
MM-BizRAG is a multimodal retrieval-augmented generation system for enterprise Q&A that uses document structure-aware splitting and layout-aware parsing to outperform vision-centric baselines by up to 32% on heterogeneous enterprise documents. The paper also introduces FastRAGEval, a cost-efficient LLM-based evaluation metric with stronger human alignment than RAGChecker.
Fast and Faithful: Real-Time Verification for Long-Document Retrieval-Augmented Generation Systems
This paper presents a real-time verification system for retrieval-augmented generation that processes long documents up to 32K tokens, using adaptive inference strategies to balance latency and verification coverage. It provides practical guidance for building reliable RAG systems.
DebiasRAG: A Tuning-Free Path to Fair Generation in Large Language Models through Retrieval-Augmented Generation
DebiasRAG proposes a tuning-free, query-specific debiasing framework using retrieval-augmented generation to reduce social biases in LLMs without degrading their original capabilities.