How to use from
Docker Model Runner
docker model run hf.co/osunlp/QUEST-30B-RL
Quick Links

QUEST-30B-RL

QUEST 30B full model after mid-training → SFT → RL (Qwen3-30B-A3B base, dense). Trained following the same three-stage recipe as the 35B model, evaluated against Tongyi-DR and OpenResearcher at the same scale.

Benchmark results

Benchmark Metric Score
BrowseComp avg@3 37.0
Mind2Web 2 avg@3 28.6
HLE avg@3 24.6
DeepResearch Bench avg@3 45.3
BrowseComp-Plus avg@3 48.2
WideSearch Item F1 avg@4 54.2
GAIA avg@3 69.0
LiveResearchBench avg@3 74.1

QUEST Family

Type Resources
35B checkpoints RL, MT+SFT, MT, SFT
30B checkpoints RL, MT+SFT, SFT
Smaller checkpoints 9B, 4B, 2B
Training data RL data, SFT objective data, SFT open-ended data, Mid-training data

Model selection note: if you only need to evaluate objective tasks and do not need open-ended task evaluation, we recommend the MT+SFT checkpoints because they perform better on reasoning-heavy objective benchmarks. For a more comprehensive evaluation across both objective and open-ended tasks, we recommend the RL checkpoints.

Quick start

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "osunlp/QUEST-30B-RL"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id, device_map="auto", torch_dtype="auto",
)

Apply the model's chat template with tokenizer.apply_chat_template(...) before passing prompts.

License

Released under the Apache License 2.0.

Citation

If our paper or related resources prove valuable to your research, we kindly ask for a citation.

@misc{xie2026quest,
  title={QUEST: Training Frontier Deep Research Agents with Fully Synthetic Tasks},
  author={Xie, Jian and Lin, Tianhe and Wang, Zilu and Ning, Yuting and Yao, Yuekun and Xue, Tianci and Zhang, Zhehao and Li, Zhongyang and Zhang, Kai and Wu, Yufan and Chen, Shijie and Gou, Boyu and Han, Mingzhe and Wang, Yifei and Lee, Vint and Wei, Xinpeng and Wang, Xiangjun and Su, Yu and Sun, Huan},
  journal={arXiv preprint arXiv:2605.24218},
  year={2026}
}
Downloads last month
80
Safetensors
Model size
31B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including osunlp/QUEST-30B-RL

Paper for osunlp/QUEST-30B-RL