Paper: 2606.30616 Authors: Lei Bai, Zongsheng Cao, Yang Chen, Zhiyao Cui, Shangheng Du, Yue Fan, Shiyang Feng, Zijie Guo, Haonan He, Liang He Categories: cs.CL
The Gap
The field has reached a frustrating inflection point: trillion-parameter models like Kimi-K2.6 and DeepSeek-V4-pro deliver impressive agent performance, but at astronomical compute costs that lock out most research labs. Meanwhile, smaller models struggle with long-horizon tasks—those requiring 10+ sequential steps of reasoning, tool use, and verification. The implicit assumption has been that raw scale is the primary lever for agent capability.
Prior approaches tried to compensate through better prompting, tool selection, or narrow domain fine-tuning. But these hit a ceiling: short-context models can’t maintain coherent reasoning over complex multi-step trajectories; single-domain specialists can’t generalize across heterogeneous task types (coding, science, web browsing, molecular analysis); and naively scaling SFT data doesn’t transfer knowledge efficiently between domains.
This paper identifies a different scaling axis entirely: horizon scaling. Instead of making the model bigger, make the training richer—longer trajectories and broader domain coverage. The logic flows cleanly:
Problem
|
v
Large models expensive + Small models fail on
complex multi-step agent tasks
|
v
Assumption
|
v
"Horizon" (trajectory length + domain breadth)
might substitute for parameter count
|
v
Method
|
+--------------+---------------+
| | |
v v v
Build 45K-token Train domain Distill multiple
trajectory infra teacher models teachers into one
| | |
+--------------+---------------+
|
v
Evidence
|
v
35B MoE matches 1T models on SEAL-0,
IFBench, HiPhO, FrontierScience-Olympiad,
MolBench-Bind; competitive on SciCode, HLE
|
v
Conclusion
|
v
Horizon scaling is a viable alternative
path to frontier agent performance
The Increment
One sentence: Before this paper, reaching trillion-parameter agent performance required trillion parameters; after this paper, a 35B model can match that performance by training on 45K-token trajectories across six domains using multi-teacher distillation.
Core Mechanism
The method has three stages, each building on the previous one like floors of a building.
Stage 1: Full-Domain SFT (Foundation). They start with a base MoE model and fine-tune it on agentic trajectories spanning six heterogeneous domains: code generation, scientific reasoning, web browsing, math/physics olympiads, molecular binding analysis, and frontier science questions. These trajectories average 45K tokens—dramatically longer than typical SFT data—because the authors built a “long-horizon knowledge-action infrastructure” that chains together external knowledge retrieval, action execution, observation parsing, and verifier feedback into coherent multi-step episodes.
Stage 2: Domain Teacher Training (Specialization). They train separate “teacher” models for each of the six domains. Each teacher becomes an expert in its domain’s specific patterns—how to structure code debugging sessions, how to chain physics reasoning steps, how to navigate web pages for information gathering. These teachers are trained on the same long-horizon infrastructure but on domain-specific data.
Stage 3: Multi-Teacher Distillation (Unification). Here’s the clever part. Instead of just picking the best teacher, they use all six teachers simultaneously to generate on-policy responses from the student model. A “domain router” determines which teacher’s output to weight more heavily for each token. They add a “salient vocabulary alignment” mechanism that focuses distillation loss on domain-specific vocabulary (e.g., Python keywords for code, chemical formulas for molecular tasks), making knowledge transfer more efficient. The result: one deployable 35B student that absorbed expertise from six specialized teachers.
Stage 1: Full-Domain SFT
=========================
[Base MoE 35B] <-- SFT <-- [45K-token trajectories]
across 6 domains
|
v
[Agentic Foundation Model]
Stage 2: Domain Teacher Training
=================================
[Foundation] --> Train --> [Teacher: Code]
[Foundation] --> Train --> [Teacher: Science]
[Foundation] --> Train --> [Teacher: Browse]
[Foundation] --> Train --> [Teacher: Math-Olympiad]
[Foundation] --> Train --> [Teacher: Molecular]
[Foundation] --> Train --> [Teacher: Frontier-Sci]
Stage 3: Multi-Teacher Distillation
====================================
[Student Model 35B]
|
| on-policy generation
v
+----+----+----+----+----+----+
|T-Code|T-Sci|T-Bro|T-Math|T-Mol|T-Fro|
+----+----+----+----+----+----+
|
| domain-routed soft targets
v
[Salient Vocab Alignment]
|
v
[Unified 35B Agent Model: Agents-A1]
Structural metaphor: The teaching hospital. Think of Agents-A1 as a medical resident at a teaching hospital. The hospital (infrastructure) provides long, complex patient cases—45K tokens worth of examination, diagnosis, treatment, and follow-up (trajectories). In Stage 1, the resident rotates through all departments (full-domain SFT), getting basic exposure to everything. In Stage 2, each department’s chief physician (domain teacher) has deep specialized expertise—the radiologist reads thousands of scans, the surgeon performs hundreds of procedures. In Stage 3, the resident doesn’t just shadow one attending; they present each case to all specialists simultaneously, with a smart scheduler (domain router) that says “for this cardiac case, weight the cardiologist’s feedback heavily.” The “salient vocabulary alignment” is like the resident learning to pay special attention when the cardiologist says “troponin” or the radiologist says “opacity”—focusing knowledge transfer on the terms that actually matter for each specialty. The graduating resident (Agents-A1) can now handle cases across all six departments from a single, unified knowledge base—without needing the computational overhead of consulting six separate specialists.
Key Concepts
-
Agent Horizon: This is the paper’s central framing device. Traditional model scaling asks “how many parameters?” This paper asks “how far ahead can the agent think and act?” A short-horizon task might be “summarize this document” (one step). A long-horizon task is “browse multiple papers, extract relevant methods, write code to reproduce an experiment, debug it, and verify results” (20+ steps with external tool interactions). The average trajectory in their training data is 45K tokens—roughly 30-50 steps of reasoning and action. Think of it like the difference between a chess player who can see 2 moves ahead versus 15 moves ahead. The paper argues that training on these long trajectories is a fundamentally different capability than having more parameters.
-
Multi-Teacher Domain-Routed Distillation: In standard knowledge distillation, one teacher transfers knowledge to one student. Here, there are six teachers, each expert in one domain. The “domain router” is a learned component that, for each input token, determines how much to weight each teacher’s output distribution. This is like having six tutors, and a meta-tutor who says “for this math problem, listen to the math tutor 70% and the science tutor 30%.” The “on-policy” part is crucial: the student generates its own responses first, then the teachers provide corrections—this prevents the student from just memorizing teacher outputs and instead teaches it to correct its own mistakes.
-
Salient Vocabulary Alignment: Standard distillation minimizes KL divergence across the entire vocabulary (all possible next tokens). But different domains have different “important words.” For coding tasks, “def”, “class”, “return” are critical; for chemistry, “benzene”, “carboxyl” matter. This technique weights the distillation loss more heavily on these domain-salient tokens, so the student focuses its learning budget on what actually distinguishes experts from novices in each field. It’s like telling a language student “don’t worry about getting every word right—focus on the vocabulary that native speakers actually care about.”
Framework Shift
Before (mainstream approach): After (this paper):
More parameters Longer trajectories
| |
v v
Bigger model Richer training signal
| |
v v
Better agent performance Better agent performance
| |
v v
[Expensive] [35B matches 1T]
From “scale the model” to “scale the horizon,” the core shift is treating trajectory length and domain breadth as the primary levers for agent capability rather than parameter count.
Expert Assessment
Problem choice: This is a real and important gap. The field genuinely needs to understand whether trillion-parameter scales are necessary for frontier agent tasks, or whether smarter training can substitute. The paper sits at a productive intersection of scaling laws research, knowledge distillation, and agentic AI. However, the framing sometimes conflates “long-horizon” (trajectory length) with “broad-domain” (heterogeneous capabilities)—these are conceptually distinct axes, and the paper could be clearer about which contributes more to the final performance.
Method maturity: The multi-teacher distillation with domain routing is clever but not revolutionary—it’s a natural extension of existing mixture-of-experts and distillation ideas. The “salient vocabulary alignment” is a nice engineering contribution. The real innovation is the infrastructure: building a system that can generate coherent 45K-token agentic trajectories with proper verification is non-trivial and represents genuine systems work. Simpler approaches were tried (naive SFT, single-teacher distillation) and shown to be worse, which is good practice.
Experimental integrity: The baselines are headline models (Kimi-K2.6, DeepSeek-V4-pro), which is both a strength (showing practical competitiveness) and a weakness (these are proprietary models with unknown training details, so the comparison is somewhat apples-to-oranges). The benchmarks span a good range of agent tasks. However, the paper doesn’t adequately address: (1) What’s the compute cost of their three-stage training vs. simply training a smaller dense model with more data? (2) Ablations isolating “horizon length” from “domain breadth” would strengthen the core claim. (3) The 45K average trajectory length is impressive, but what’s the distribution? How many trajectories are actually long vs. padded?
Writing quality: The paper reads like a technical report—informative but not elegant. Section 3 (Method) would benefit from a cleaner narrative arc: right now it jumps between infrastructure details and training procedures. A dedicated “Limitations” section is conspicuously absent. The related work could be more concise. The figures are functional but not illuminating.
Verdict: weak accept — The core idea (horizon scaling as alternative to parameter scaling) is important and the results are compelling, but the paper oversells “horizon” as a unified concept when it’s really two things (trajectory length + domain breadth) stitched together, and the experimental design doesn’t fully isolate the claimed contribution.
Takeaways
Three concrete ideas to steal:
-
Long-horizon trajectory infrastructure: If you’re building agent systems, invest in infrastructure that chains multi-step actions with verification feedback. The 45K-token trajectory approach is more transferable than the model itself—you could apply this to any base model.
-
Domain-routed multi-teacher distillation: When you need one model to handle multiple specialized domains, train separate domain experts first, then distill with a learned router. This is cleaner than trying to do multi-task training from scratch.
-
Salient vocabulary alignment: When doing knowledge distillation for specialized domains, weight the loss on domain-critical tokens rather than uniform over the vocabulary. This is a simple technique that should be standard practice.
论文: 2606.30616 作者: Lei Bai, Zongsheng Cao, Yang Chen, Zhiyao Cui, Shangheng Du, Yue Fan, Shiyang Feng, Zijie Guo, Haonan He, Liang He 分类: cs.CL
缺口
领域已经到了一个令人沮丧的拐点:Kimi-K2.6、DeepSeek-V4-pro 这样的万亿参数模型在智能体任务上表现惊人,但计算成本高得离谱,把大多数研究团队都拒之门外。 与此同时,较小的模型在长视野任务上力不从心——那些需要10步以上顺序推理、工具调用和验证的复杂任务。 业内一直默认的前提是:原始规模是提升智能体能力的主要杠杆。
此前的尝试包括更好的提示词、工具选择、或窄领域的微调。 但这些方法撞上了天花板:短上下文模型无法在复杂的多步骤轨迹中保持连贯推理; 单一领域的专家无法泛化到异构任务类型(编程、科学、网页浏览、分子分析); 而简单地扩展SFT数据并不能高效地在领域间迁移知识。
本文识别出了一个完全不同的扩展轴:视野扩展。 与其让模型更大,不如让训练更丰富——更长的轨迹和更广的领域覆盖。 逻辑链条如下:
问题
|
v
大模型昂贵 + 小模型在复杂多步骤
智能体任务上表现不佳
|
v
假设
|
v
"视野"(轨迹长度 + 领域广度)可能
替代参数量的作用
|
v
方法
|
+------------+------------+
| | |
v v v
构建45K标记 训练领域 将多个教师
轨迹基础设施 教师模型 蒸馏为一个
| | |
+------------+------------+
|
v
证据
|
v
35B MoE在SEAL-0、IFBench、HiPhO、
FrontierScience-Olympiad、MolBench-Bind上
匹配1T模型;在SciCode、HLE上竞争力十足
|
v
结论
|
v
视野扩展是通往前沿智能体性能的
一条可行替代路径
增量
一句话: 这篇论文之前,达到万亿参数智能体性能需要万亿参数; 这篇论文之后,一个35B模型通过在六个领域上用45K标记轨迹训练、再经过多教师蒸馏,就能匹配这一性能。
核心机制
方法分为三个阶段,像建筑的三层楼一样逐层搭建。
第一阶段:全域SFT(地基)。 从一个基础MoE模型出发,在覆盖六个异构领域的智能体轨迹上进行微调: 代码生成、科学推理、网页浏览、数学/物理奥赛、分子结合分析、前沿科学问题。 这些轨迹平均长达45K标记——远超典型SFT数据的长度。 作者构建了一套”长视野知识-行动基础设施”, 将外部知识检索、动作执行、观察解析和验证器反馈串联成连贯的多步骤episode。
第二阶段:领域教师训练(专精化)。 为六个领域各训练一个独立的”教师”模型。 每个教师精通自己领域的特定模式——如何组织代码调试会话、如何串联物理推理步骤、如何在网页中导航获取信息。 这些教师在同样的长视野基础设施上训练,但使用领域特定数据。
第三阶段:多教师蒸馏(统一化)。 这是最巧妙的部分。 他们不是只选最好的教师,而是让六个教师同时对学生模型的在策略响应进行评估。 一个”领域路由器”决定每个标记上对哪个教师的输出给予更高权重。 他们加入了”显著词汇对齐”机制, 将蒸馏损失聚焦在领域特定词汇上(如编程中的Python关键字、分子任务中的化学式), 使知识迁移更高效。 最终结果:一个可部署的35B学生模型,吸收了六个专家教师的知识。
第一阶段:全域SFT
==================
[基础MoE 35B] <-- SFT <-- [45K标记轨迹]
覆盖6个领域
|
v
[智能体基础模型]
第二阶段:领域教师训练
======================
[基础模型] --> 训练 --> [教师:代码]
[基础模型] --> 训练 --> [教师:科学]
[基础模型] --> 训练 --> [教师:浏览]
[基础模型] --> 训练 --> [教师:数竞]
[基础模型] --> 训练 --> [教师:分子]
[基础模型] --> 训练 --> [教师:前沿]
第三阶段:多教师蒸馏
====================
[学生模型 35B]
|
| 在策略生成
v
+----+----+----+----+----+----+
|T-代码|T-科学|T-浏览|T-数竞|T-分子|T-前沿|
+----+----+----+----+----+----+
|
| 领域路由的软目标
v
[显著词汇对齐]
|
v
[统一的35B智能体模型:Agents-A1]
核喻:教学医院。 把Agents-A1想象成一家教学医院的住院医师。 医院(基础设施)提供冗长复杂的病例——45K标记的检查、诊断、治疗和随访(轨迹)。 第一阶段,住院医师在所有科室轮转(全域SFT),对每个领域都有基本接触。 第二阶段,每个科室的主任医师(领域教师)都拥有深厚的专精知识—— 放射科医生阅片数千张,外科医生完成数百台手术。 第三阶段,住院医师不是只跟着一位主治医师查房, 而是把每个病例同时呈报给所有专科医生, 由一位聪明的调度员(领域路由器)说”这个心脏病例,给心脏科医生70%的权重”。 “显著词汇对齐”就像住院医师学会特别注意心脏科医生说的”肌钙蛋白”或放射科医生说的”混浊影”—— 把学习注意力集中在每个专科真正重要的术语上。 毕业的住院医师(Agents-A1)现在可以从单一的统一知识库出发, 处理所有六个科室的病例——而不需要会诊六位独立专家的计算开销。
关键概念
-
智能体视野(Agent Horizon): 这是本文的核心框架概念。 传统模型扩展问”有多少参数?“本文问”智能体能看多远、走多远?” 短视野任务可能是”总结这篇文档”(一步)。 长视野任务是”浏览多篇论文、提取相关方法、写代码复现实验、调试、验证结果”(20多步伴随外部工具交互)。 他们训练数据中的平均轨迹长度为45K标记——大约30-50步推理和行动。 就像一个能看2步棋的棋手和一个能看15步棋的棋手之间的差别。 本文主张,在这些长轨迹上训练是一种与拥有更多参数根本不同的能力。
-
多教师领域路由蒸馏: 在标准知识蒸馏中,一个教师向一个学生传递知识。 这里有六个教师,各是一个领域的专家。 “领域路由器”是一个可学习的组件,对每个输入标记决定对每个教师的输出分布赋予多少权重。 就像有六位家教,还有一位元家教说”这道数学题,听数学家教70%,听科学家教30%”。 “在策略”部分至关重要:学生先自己生成回答,然后教师提供纠正—— 这防止学生只是死记教师的输出,而是教会它纠正自己的错误。
-
显著词汇对齐: 标准蒸馏在整个词汇表(所有可能的下一个标记)上最小化KL散度。 但不同领域有不同的”重要词汇”。 对编程任务,“def”、“class”、“return”是关键的;对化学,“苯”、“羧基”很重要。 这项技术在这些领域显著标记上给予更高的蒸馏损失权重, 使学生把学习预算集中在真正区分各领域专家和新手的地方。 就像告诉一个语言学生”不用担心每个词都对——聚焦在母语者真正在意的词汇上”。
框架转变
之前(主流方法): 之后(本文方法):
更多参数 更长的轨迹
| |
v v
更大的模型 更丰富的训练信号
| |
v v
更好的智能体性能 更好的智能体性能
| |
v v
[昂贵] [35B匹配1T]
从”扩展模型”到”扩展视野”,核心转变是将轨迹长度和领域广度视为智能体能力的主要杠杆,而非参数量。
专家评审
选题眼光: 这是一个真实且重要的缺口。 领域确实需要理解:万亿参数规模对于前沿智能体任务是否必要,还是更聪明的训练可以替代。 论文处在扩展定律研究、知识蒸馏和智能体AI的交汇点上,位置很好。 不过,论文的表述有时把”长视野”(轨迹长度)和”宽领域”(异构能力)混为一谈—— 这两个在概念上是不同的轴,论文应该更清楚地说明哪个对最终性能贡献更大。
方法成熟度: 多教师领域路由蒸馏很巧妙但并非革命性——它是现有专家混合和蒸馏思想的自然延伸。 “显著词汇对齐”是一个不错的工程贡献。 真正的创新在于基础设施:构建一个能生成连贯45K标记智能体轨迹并带有适当验证的系统, 这是非平凡的系统工程。 简单方法(朴素SFT、单教师蒸馏)都被尝试过并证明效果更差,这是好的实践。
实验诚意: 基线模型是头部模型(Kimi-K2.6、DeepSeek-V4-pro), 这既是优点(展示了实际竞争力)也是缺点(这些是训练细节未知的专有模型,比较有些苹果对橘子)。 基准测试覆盖了不错的智能体任务范围。 但论文没有充分回答:(1) 三阶段训练的计算成本是多少,vs. 直接用更多数据训练一个较小的稠密模型? (2) 把”视野长度”和”领域广度”分离的消融实验会加强核心论点。 (3) 45K平均轨迹长度很亮眼,但分布如何?有多少轨迹真的长,有多少是填充的?
写作功力: 论文读起来像技术报告——信息量够但不够优雅。 第3节(方法)需要更清晰的叙事弧线:现在在基础设施细节和训练流程之间跳跃。 缺少一个专门的”局限性”章节。 相关工作可以更精炼。 图表功能性够但启发性不足。
判决: 弱接收 — 核心想法(视野扩展作为参数扩展的替代方案)很重要,结果也很有说服力, 但论文把”视野”作为一个统一概念来推销,实际上它是两个东西(轨迹长度+领域广度)拼接在一起的, 而且实验设计没有充分隔离所声称的贡献。
要点总结
三个可以”偷”走的具体想法:
-
长视野轨迹基础设施: 如果你在构建智能体系统,投资于能串联多步骤动作并带有验证反馈的基础设施。 45K标记轨迹的方法比模型本身更具可迁移性——你可以把它应用到任何基础模型上。
-
领域路由多教师蒸馏: 当你需要一个模型处理多个专精领域时, 先训练独立的领域专家,然后用一个学习到的路由器进行蒸馏。 这比从头开始做多任务训练更干净。
-
显著词汇对齐: 当对专精领域做知识蒸馏时, 在领域关键标记上加权损失,而不是在词汇表上均匀分配。 这是一个应该成为标准实践的简单技术。