Tencent and Zhejiang University's REAL Lab have open-sourced IterSynth (arXiv: 2609.29444, GitHub: Tencent/IterSynth), a groundbreaking paradigm for deep-search AI agents. Breaking free from the rigid single-agent ReAct framework where planning, evidence retrieval, and synthesis are tightly coupled—which typically causes severe context saturation and attention degradation—IterSynth alternates between a specialized Planner and a Synthesizer governed by an evolving summary state. Powered by Role-Decoupled Policy Optimization (RDPO), IterSynth-8B hits an average score of 50.7 across long-horizon benchmarks like BrowseComp and Xbench-DS, outperforming all prior <=8B search agents by +4.2%.

Key Takeaways

  • ✓Decouples single-policy ReAct agent architectures into specialized Planner and Synthesizer roles.
  • ✓Maintains an evolving summary state that slashes token context noise from multi-hop web scraping by 70%.
  • ✓Introduces Role-Decoupled Policy Optimization (RDPO) combining terminal rewards with fine-grained rubric evaluations.
  • ✓IterSynth-8B achieves a record 50.7 score on BrowseComp and Xbench-DS, lifting zero-shot reasoning on proprietary models.
  • ✓Complete PyTorch training harness, benchmarks, and checkpoints open-sourced on GitHub under Tencent.
🔬

In-Depth Technical Analysis

Core Background & Industry Pain Points Deep search requires LLM agents to decompose open-ended queries, gather scattered evidence, and produce grounded syntheses. Prevailing ReAct designs conflate planning, tool invocation, and summarization into a single policy, while unbounded raw HTML accumulation saturates context windows and corrupts reasoning attention with irrelevant boilerplate. ### Architecture Highlights & Internals Tencent and ZJU introduce IterSynth, an alternating dual-role paradigm: a Planner identifies information gaps and directs retrieval actions, while a Synthesizer distills newly observed evidence into an evolving summary state. Rather than accumulating monolithic page dumps, the evolving summary acts as a compact persistent state, slashing token bloat by 70%. Role-Decoupled Policy Optimization (RDPO) computes role-specific advantages by blending terminal task rewards with intermediate rubric scoring. ### Authoritative Benchmarks & Measured Scores Evaluated on BrowseComp, Xbench-DS, and multi-hop corpora, IterSynth-8B registers an average score of 50.7 (+4.2% over existing <=8B agents). Used as a model-agnostic prompting framework, it lifts grounded accuracy on proprietary models by 18.6% over standard ReAct while reducing factual hallucination by 53.4%. ### Developer Hands-on Guide Developers can clone https://github.com/Tencent/IterSynth, plug in standard search APIs (Bing, Google, Tavily), and load pre-trained checkpoints from Hugging Face.