JCT at SemEval-2026 Task 8: Resource-Efficient Multi-Turn RAG via Nano-LLM Rewriting and Hybrid Reranking
Summary
JCT's system submission for SemEval-2026 Task A (MTRAGEval) addresses multi-turn Retrieval-Augmented Generation (RAG) with a focus on resource efficiency. It proposes a pipeline that decouples query understanding from retrieval, utilizing a 1.5B parameter Nano-LLM (Qwen) for query rewriting. This is followed by parallel hybrid retrieval via Qdrant and Cross-Encoder reranking. The optimized system achieved an nDCG@5 score of 0.1991 on answerable queries during internal development, surpassing the official BM25 baseline. On the official blind test set, it scored 0.1744. While its absolute performance trails 20B parameter models, the work establishes a crucial baseline for extreme resource efficiency in conversational RAG. The team also provided an error analysis on domain shifts and retrieval funnels, alongside a qualitative analysis of "Underspecified" queries, highlighting generative query rewriting's vulnerabilities.
Key takeaway
For Machine Learning Engineers developing conversational RAG systems, this work demonstrates that resource efficiency is achievable without massive models. If your project has strict compute or memory constraints, consider implementing a decoupled pipeline using a Nano-LLM for query rewriting and hybrid retrieval. Be aware that generative rewriting can struggle with underspecified queries, necessitating robust error analysis and potentially alternative strategies for such cases.
Key insights
Resource-efficient multi-turn RAG can be achieved by decoupling query understanding and using a Nano-LLM for rewriting.
Principles
- Decouple query understanding from retrieval for efficiency.
- Nano-LLMs establish resource-efficient RAG baselines.
- Generative query rewriting has vulnerabilities.
Method
The pipeline involves a 1.5B Qwen Nano-LLM for query rewriting, followed by parallel hybrid retrieval (Qdrant) and Cross-Encoder reranking to address conversational query ambiguity.
In practice
- Utilize 1.5B parameter Nano-LLMs for query rewriting.
- Implement parallel hybrid retrieval with Qdrant.
- Analyze generative rewriting for "Underspecified" queries.
Topics
- Multi-turn RAG
- Nano-LLM
- Query Rewriting
- Hybrid Retrieval
- SemEval-2026
- Resource Efficiency
- Qwen
Best for: AI Engineer, Research Scientist, 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.