🤖 AI Summary
Existing RAG and RLVR paradigms separately enhance knowledge retrieval or complex reasoning, yet remain disjointed—leading to poor generalization and narrow task adaptability in unified approaches. To address this, we propose the first reinforcement learning–based general framework that dynamically coordinates retrieval and reasoning. Our method introduces a difficulty-aware curriculum training mechanism to trigger retrieval on demand; employs a hybrid knowledge access strategy integrating external retrieval with LLM-generated self-summaries; and end-to-end optimizes reasoning via verifiable reward signals. Evaluated on open-domain QA, MMLU-Pro, medical reasoning, and mathematical reasoning, our framework achieves performance competitive with GPT-4o-mini on Qwen2.5 and LLaMA-3.1. Crucially, it establishes the first organic unification of RAG and RLVR across diverse tasks, demonstrating superior cross-task generalization and robustness.
📝 Abstract
Large Language Models (LLMs) have shown remarkable capabilities through two complementary paradigms: Retrieval-Augmented Generation (RAG), which enhances knowledge grounding, and Reinforcement Learning from Verifiable Rewards (RLVR), which optimizes complex reasoning abilities. However, these two capabilities are often developed in isolation, and existing efforts to unify them remain narrow in scope-typically limited to open-domain QA with fixed retrieval settings and task-specific assumptions. This lack of integration constrains generalization and limits the applicability of RAG-RL methods to broader domains. To bridge this gap, we propose UR2 (Unified RAG and Reasoning), a general framework that unifies retrieval and reasoning through reinforcement learning. UR2 introduces two key contributions: a difficulty-aware curriculum training that selectively invokes retrieval only for challenging problems, and a hybrid knowledge access strategy combining domain-specific offline corpora with LLM-generated summaries. These components are designed to enable dynamic coordination between retrieval and reasoning, improving adaptability across a diverse range of tasks. Experiments across open-domain QA, MMLU-Pro, medical, and mathematical reasoning tasks demonstrate that UR2 (built on Qwen2.5-3/7B and LLaMA-3.1-8B) significantly outperforms existing RAG and RL methods, achieving comparable performance to GPT-4o-mini and GPT-4.1-mini on several benchmarks. We have released all code, models, and data at https://github.com/Tsinghua-dhy/UR2.