Chaining the Evidence: Robust Reinforcement Learning for Deep Search Agents with Citation-Aware Rubric Rewards
-
[2026/03/14] Our RL training and evaluation code have been fully open-sourced.
-
[2026/03/12] Our SFT models and C-GRPO models have been fully open-sourced on Hugging Face.
-
[2026/01/11] Our SFT trajectories and RL QA pairs with rubrics have been fully open-sourced on Hugging Face.
-
[2026/01/11] Released the CaRR framework, implemented as a remote reward model server β now fully available in
./deepsearch_rm_with_rubrics. -
Model and training code are currently being organized β coming soon!
Existing Reinforcement Learning (RL) approaches for deep search agents primarily rely on binary outcome rewards (i.e., whether the final answer is correct). However, pure outcome rewards fail to capture the comprehensiveness and factuality of agentsβ reasoning process, often leading to undesirable behaviors such as:
-
Shortcut exploitation: Agents may find the answer using only partial information, ignoring complex constraints.
-
Hallucinations: Agents may arrive at the correct answer via fortunate huallucinations.
Optimizing toward these flawed trajectories will result in agents with diminished robustness and suboptimal performance
To address these, we propose Citation-aware Rubric Rewards (CaRR) and Citation-aware Group Relative Policy Optimization (C-GRPO) to encourage deep search agents to conduct comprehensive, evidence-grounded reasoning.
CaRR is a fine-grained reward framework for deep search agents that emphasizes reasoning comprehensiveness, factual grounding, and evidence connectivity. It decomposes complex, multi-hop questions into atomic, verifiable rubrics. A trajectory satisfies a rubric only if:
-
Entity Identification: It explicitly identifies all hidden entities involved.
-
Citation Grounding: The statement is fully supported by the cited web contents.
-
Evidence Connectivity: The supported rubrics forms an evidence chain that connects to the final predicted answer.
C-GRPO extends Group Relative Policy Optimization (GRPO) by assigning an additional weighted citation-aware rubric reward to trajectories that have found the correct final answer. This encourages the model to improve accuracy and reasoning quality simultaneous, thereby promoting more robust policy learning.
Our RL experiments use Qwen3-4B-Thinking-2507 and Qwen3-30B-A3B-Thinking-2507 as backbone models, and use DeepDive as the training data.
Evaluation results on four challenging deep search benchmarks show that C-GRPO consistently outperforms standard outcome-based GRPO, and demonstrates superior test-time scaling capacity, effectively utilizing longer context budgets to improve performance:
C-GRPO agents also generalize well to open-ended deep research tasks:
Recommended image (from slime/docker/version.txt):
docker pull slimerl/slime:nightly-dev-20260311abash scripts/setup/prepare_env.shEdit .env and fill at least the following fields:
- Workspace paths:
CARR_ROOT,SLIME_ROOT - Tool Server:
SERP_API_KEY,JINA_API_KEY,TOOL_SERVER_PORT - Training RM:
DEEPSEEK_API_KEY,DEEPSEEK_BASE_URL,RM_TRAIN_PORT - Evaluation RM:
OPENAI_API_KEY,OPENAI_BASE_URL,RM_EVAL_PORT - Data encryption/decryption:
EVAL_DATA_PASSWORD - Optional proxy:
HTTP_PROXY,HTTPS_PROXY
bash scripts/setup/start_tool_server.shScript configuration:
- Reads:
SERP_API_KEY,JINA_API_KEY,TOOL_SERVER_PORT - Optional:
HTTP_PROXY(automatically applied when non-empty) - Working directory:
${CARR_ROOT}/tool_server
Recommended health check after startup:
curl -sS http://127.0.0.1:${TOOL_SERVER_PORT:-7230}/ \
-X POST \
-H 'Content-Type: application/json' \
-d '{"session_id":"health","name":"start_session","arguments":{},"remote_env_info":null}'bash scripts/setup/start_rm_deepseek.shScript configuration:
- Reads:
RM_TRAIN_PORT,DEEPSEEK_BASE_URL,DEEPSEEK_API_KEY - Model:
deepseek-chat - Working directory:
${CARR_ROOT}/deepsearch_rm_with_rubrics
bash scripts/setup/evaluation_start_rm_gpt5.shScript configuration:
- Reads:
RM_EVAL_PORT,OPENAI_BASE_URL,OPENAI_API_KEY - Model:
gpt-5-chat-2025-08-07 - Working directory:
${CARR_ROOT}/deepsearch_rm_with_rubrics
Dataset locations:
- Encrypted files:
data/eval/*.jsonl.enc - Decrypted files:
data/eval_decrypted/*.jsonl
Before training or evaluation, decrypt datasets:
bash scripts/setup/decrypt_eval_data.shScript configuration:
decrypt_eval_data.sh: readsEVAL_DATA_PASSWORD, decryptsdata/eval/*.encintodata/eval_decrypted/*.jsonl
bash scripts/setup/convert_4b.shScript configuration:
- Reads:
SLIME_ROOT(defaults to${CARR_ROOT}/slimeif unset) - Runs conversion command directly in
slime/tools/convert_hf_to_torch_dist.py
bash scripts/setup/convert_30b.shScript configuration:
- Reads:
SLIME_ROOT - Runs conversion command directly in
slime/tools/convert_hf_to_torch_dist.py
bash scripts/training/training_run_4b-C-GRPO-rubric0.3.shScript configuration:
- Reads:
SLIME_ROOT - Run
bash scripts/setup/decrypt_eval_data.shonce before training/evaluation - Evaluation data source during training:
data/eval_decrypted/(filenames without-browser-oss)
bash scripts/training/training_run_30b-C-GRPO-rubric0.3.shScript configuration:
- Reads:
SLIME_ROOT - Run
bash scripts/setup/decrypt_eval_data.shonce before training/evaluation - Evaluation data source during training:
data/eval_decrypted/(filenames without-browser-oss)
bash scripts/eval/evaluation_run_4b.shScript configuration:
- Reads:
SLIME_ROOT - Reads
data/eval_decrypted/*.jsonl(decrypt once in setup stage)
bash scripts/eval/evaluation_run_30b.shScript configuration:
- Reads:
SLIME_ROOT - Reads
data/eval_decrypted/*.jsonl(decrypt once in setup stage)
prepare_env.shstart_tool_server.shstart_rm_deepseek.shevaluation_start_rm_gpt5.shdecrypt_eval_data.sh(inscripts/setup/)convert_4b.sh(inscripts/setup/)convert_30b.sh(inscripts/setup/)training_run_4b-C-GRPO-rubric0.3.sh/training_run_30b-C-GRPO-rubric0.3.shevaluation_run_4b.sh/evaluation_run_30b.sh
- Built on top of Qwen3-4B-Thinking-2507 and Qwen3-30B-A3B-Thinking-2507 base models
- Uses DeepDive as the training datsets.
- Uses Slime framework for RL training
- Powered by Serper and Jina APIs for web access
If you find our work useful, please consider citing:
@misc{lu2025deepdiveadvancingdeepsearch,
title={Chaining the Evidence: Robust Reinforcement Learning for Deep Search Agents with Citation-Aware Rubric Rewards},
author={Jiajie Zhang and Xin Lv and Ling Feng and Lei Hou and Juanzi Li},
year={2025},
eprint={2601.06021},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2601.06021},
}



