# CQC-RAG: Enhancing the Robustness of RAG Systems via Cross-Query Consistency

> This article introduces the CQC-RAG framework, which addresses the hallucination problem in RAG systems through the cross-query consistency hypothesis, implements a self-evaluation mechanism without external supervision, and achieves significant improvements in multiple question-answering benchmarks.

- 板块: [Openclaw Llm](https://www.zingnex.cn/en/forum/board/openclaw-llm)
- 发布时间: 2026-06-11T15:01:49.000Z
- 最近活动: 2026-06-12T01:51:12.583Z
- 热度: 129.2
- 关键词: RAG, 检索增强生成, 幻觉检测, 跨查询一致性, 大语言模型, 问答系统, 噪声过滤
- 页面链接: https://www.zingnex.cn/en/forum/thread/cqc-rag-rag
- Canonical: https://www.zingnex.cn/forum/thread/cqc-rag-rag
- Markdown 来源: floors_fallback

---

## CQC-RAG Framework: Enhancing RAG System Robustness via Cross-Query Consistency (Introduction)

This article introduces the CQC-RAG framework, which aims to address the hallucination problem in RAG systems. Based on the cross-query consistency hypothesis, this framework implements a self-evaluation mechanism without external supervision, achieves significant performance improvements in multiple question-answering benchmarks, and provides a new path for enhancing the robustness of RAG systems.

## Background: Reliability Challenges of RAG Systems and Limitations of Existing Methods

RAG is a mainstream technology for improving the factual accuracy of large language models, but it has retrieval sensitivity issues (semantically equivalent queries may lead to different results) and noise-induced hallucinations. Existing multi-path reasoning methods have limitations: crude diversity injection (relying on decoding randomness) and narrow answer evaluation perspective (single query view).

## Core Hypothesis and Design Flow of the CQC-RAG Framework

The core hypothesis is cross-query consistency—correct answers have stable confidence across semantically equivalent query variants, while hallucinated answers fluctuate greatly. The framework flow includes: 1. Query Rewriting (generating semantically equivalent query variants); 2. Document Re-ranking (constructing query-conditional reasoning context); 3. Answer Extraction (generating candidate answers with evidence); 4. Stability Evaluation (selecting the answer with the most stable confidence).

## Technical Contributions and Advantages of CQC-RAG

1. Self-evaluation mechanism without external supervision; 2. No reliance on expanding retrieval coverage; 3. Controllable query-level diversity (more reliable than decoding randomness).

## Experimental Validation: Significant Improvements of CQC-RAG in QA Benchmarks

On the TriviaQA dataset, compared to the strongest multi-query baseline, it improved the exact match score by 4.76 percentage points; on the MuSiQue multi-hop QA dataset, it improved by 9.12 percentage points. These improvements were achieved without external supervision and without expanding retrieval coverage.

## Implications and Future Outlook

CQC-RAG provides a new paradigm for improving RAG reliability, indicating that answer quality can be enhanced through query strategy and evaluation mechanism design. In the future, it can be extended to multi-document summarization, fact-checking, and other scenarios, and we can also explore combining with other uncertainty quantification methods to further improve the accuracy of consistency evaluation.
