Tongyi DeepResearch: Pioneering the Era of Open-Source AI Researchers

Tongyi DeepResearch Technical Report

2025-01-01
Tongyi DeepResearch Team, Baixuan Li, Bo Zhang, Dingchu Zhang, Fei Huang, Guangyu Li, Guoxin Chen, Huifeng Yin, Jialong Wu, Jingren Zhou, Kuan Li, Liangcai Su, Litu Ou, Liwen Zhang, Pengjun Xie, Rui Ye, Wenbiao Yin, Xinmiao Yu, Xinyu Wang, Xixi Wu, Xuanzhong Chen, Yida Zhao, Zhen Zhang, Zhengwei Tao, Zhongwang Zhang, Zile Qiao, Chenxi Wang, Donglei Yu, Gang Fu, Haiyang Shen, Jiayin Yang, Jun Lin, Junkai Zhang, Kui Zeng, Li Yang, Hailong Yin, Maojia Song, Ming Yan, Minpeng Liao, Peng Xia, Qian Xiao, Rui Min, Ruixue Ding, Runnan Fang, Shaowei Chen, Shen Huang, Shihang Wang, Shihao Cai, Weizhou Shen, Xiaobin Wang, Xin Guan, Xinyu Geng, Yingcheng Shi, Yuning Wu, Zhuo Chen, Zijian Li, Yong Jiang
Summary
Problem
Method
Results
Takeaways
Abstract

Tongyi DeepResearch is an agentic large language model (30.5B total, 3.3B activated) designed for long-horizon information-seeking tasks. Using an end-to-end training framework of agentic mid-training and reinforcement learning, it achieves SOTA performance on benchmarks like Humanity’s Last Exam and BrowseComp, outperforming OpenAI o3 and DeepSeek-V3.1.

TL;DR

Alibaba's Tongyi Lab has released Tongyi DeepResearch, an agentic MoE model (30.5B total/3.3B active parameters) that sets a new SOTA for autonomous online research. By moving beyond traditional SFT+RL and introducing Agentic Mid-training and Markovian Context Management, this model solves the "context suffocation" problem and performs multi-step discovery at a PhD level.

The "Agentic Gap" in Foundation Models

Most LLMs today are "accidental agents." They are trained on static web text and then asked to perform dynamic research via prompting. This creates two major bottlenecks:

  1. Inductive Bias Conflict: Pre-training on plain text doesn't teach a model how to handle environment feedback (Observations).
  2. Context Suffocation: In long-horizon tasks (30+ steps), the attention window becomes filled with irrelevant search results, causing the model to lose track of its original goal.

Methodology: The End-to-End Agentic Pipeline

Tongyi DeepResearch introduces a three-tier design to bridge these gaps:

1. Agentic Mid-training (The Bridge)

Unlike traditional pipelines that go straight from Pre-training to SFT, the authors insert a Mid-training phase. This involves training the model on large-scale synthetic agent trajectories. This "Agentic CPT" (Continual Pre-training) embeds the ability to plan and reflect directly into the model's weights.

2. Markovian Context Management

To handle 100+ tool interactions without breaking the 128K context window, the model uses a dynamic workspace reconstruction. instead of feeding the entire history, it provides:

  • The original Question.
  • (Condensed Memory): An evolving report that summarizes past findings.
  • The latest Observation.

Model Architecture and Training Pipeline

3. Automated PhD-Level Data Synthesis

The team solved the data scarcity problem by using LLMs to generate "Super-human" questions. They use set theory and "Uncertainty Injection" to create complex, multi-hop queries that would take a human researcher hours to answer.

Experiments: Efficiency Meets Power

Tongyi DeepResearch was tested against the giants: OpenAI o3, DeepSeek-V3.1, and Gemini Deep Research.

BenchmarkTongyi DeepResearchOpenAI o3DeepSeek-V3.1
Humanity's Last Exam32.924.929.8
FRAMES90.684.083.7
BrowseComp43.449.730.0

Experimental Results Comparison

The model's Heavy Mode utilizes test-time scaling—launching parallel agents and synthesizing their findings—which boosted scores on BrowseComp-ZH to 58.1%, demonstrating that more "interaction turns" are as valuable as "thinking tokens."

Critical Insight: The "Wind Tunnel" Effect

The authors highlight a crucial finding: Reinforcement Learning (RL) performance depends more on environment stability than the algorithm itself. They built a "Simulated Wiki" environment (an offline RAG sandbox) to act as a "wind tunnel" for testing RL strategies before deploying them to the noisy, real-world internet.

Conclusion and Future Outlook

Tongyi DeepResearch proves that 3B active parameters are enough to outperform 100B+ parameter models if the agentic training is done correctly. By open-sourcing the model and the data synthesis framework, Alibaba is democratizing the ability to build "AI Researchers."

The next frontier? Moving from domain-specific research agents to General-purpose Foundation Agents that can operate across any UI or toolset with minimal supervision.

Find Similar Papers

Try Our Examples

  • Search for recent studies on "Agentic Mid-training" or "Continual Pre-training for Agents" to see if other labs are adopting this bridge between pre-training and RL.
  • Which paper first introduced the "Markovian state reconstruction" or "Context Management" for long-horizon LLM agents, and how does Tongyi's implementation differ from the original?
  • Find research exploring "Interaction Test-time Scaling" (scaling environment turns) vs "Reasoning Test-time Scaling" (scaling CoT tokens) in autonomous agents.
Contents
Tongyi DeepResearch: Pioneering the Era of Open-Source AI Researchers
1. TL;DR
2. The "Agentic Gap" in Foundation Models
3. Methodology: The End-to-End Agentic Pipeline
3.1. 1. Agentic Mid-training (The Bridge)
3.2. 2. Markovian Context Management
3.3. 3. Automated PhD-Level Data Synthesis
4. Experiments: Efficiency Meets Power
5. Critical Insight: The "Wind Tunnel" Effect
6. Conclusion and Future Outlook