跳到主内容
@wquguru
精选75DAIR.AI(RSS)论文研究

本周 AI 论文精选:LLM 评测、技能提升与上下文管理

🥇Top AI Papers of the Week

原文
发到 X

1. Judges as a Lifecycle

1. 法官作为生命周期

Most teams validate an LLM judge once, ship it, and never look at it again. Netflix runs judges over hundreds of thousands of show-level recommendation explanations per week, served to millions of members on mobile, and this writeup describes what it takes to keep one honest at that volume.

大多数团队验证一次LLM法官,发布后便不再关注。Netflix每周对数十万条节目级推荐解释运行法官,服务于数百万移动端会员,本文描述了在此规模下保持其诚实所需的工作。

  • Four phases instead of one artifact: Birth defines multiple evaluation criteria and builds curated benchmarks with human labels and rationales. Training refines the rubric. Deployment puts the judge to work. Monitoring watches for drift and triggers re-tuning behind a review gate.
  • Rubric tuning carries the learning signal: Reasoning-Aligned Rubric Tuning uses a meta-judge over the judge’s reasoning output as the learning signal, so mismatches between judge and human get traced back to specific rubric language rather than patched with more prompt text.
  • One judge, two roles: The same judge gates quality and drives reflective generation, appending its rationale to the generator prompt so failed explanations get revised instead of dropped.
  • Why it matters: A five-week A/B test over tens of millions of members shifted viewing toward previously unwatched content and increased successful browse-to-play sessions against a no-explanation control, with no quality-related takedowns. This is the rare LLM-judge writeup with production consequences attached.
  • 四个阶段而非单一产物:诞生阶段定义多个评估标准,并构建带有人工标签和理由的精选基准。训练阶段细化评分标准。部署阶段让法官投入工作。监控阶段观察漂移,并在审查门后触发重新调优。
  • 评分标准调优承载学习信号:推理对齐评分标准调优使用元法官对法官的推理输出作为学习信号,因此法官与人类之间的不匹配被追溯到具体的评分标准措辞,而非通过添加更多提示文本来修补。
  • 一个法官,两个角色:同一个法官既把关质量又驱动反思性生成,将其推理附加到生成器提示中,使失败的说明得到修订而非丢弃。
  • 为何重要:一项为期五周、覆盖数千万会员的A/B测试,与无说明对照组相比,将观看行为转向未观看过的内容,并增加了成功的浏览到播放会话,且无质量相关的下架。这是罕见的带有生产后果的LLM法官文章。

Paper | Tweet

论文 | 推文

2. Skill Lift

2. 技能提升

Enterprise teams reviewing shared skill libraries almost always gate on a scanner that checks structure, style, and security. NVIDIA measured whether that gate predicts anything about how a skill actually performs, and the answer is close to no.

企业团队审查共享技能库时,几乎总是依赖检查结构、风格和安全的扫描器。NVIDIA衡量了该门控是否能预测技能实际表现,答案几乎是否定的。

  • The review gate is nearly uncorrelated with quality: Across 145 real skills from internal and public catalogs, structural scan scores correlate with LLM-judge quality at a Spearman rho of 0.14. Passing the scanner tells you the skill is well formatted, nothing more.
  • Measure the delta, not the document: ACES proposes Skill Lift. Run the same task twice under the same model, sandbox, workspace, and scorer, once with the skill loaded and once without, then measure the difference in what the agent completed.
  • Results compare across harnesses: 947 paired cases from 58 production skills were scored across four harnesses, with trajectories normalized into a shared Agent Trajectory Interchange Format so a skill’s lift in Claude Code can be read against its lift in Cursor.
  • Why it matters: The largest process-metric gains show up in skill execution, behavior check, and skill efficiency, which points at what skills are actually for. If you run a review process today, this gives you the paired-run design to replace it with something that measures outcomes.
  • 审查门与质量几乎不相关:在来自内部和公共目录的145个真实技能中,结构扫描分数与LLM法官质量的相关性为Spearman rho 0.14。通过扫描器告诉你技能格式良好,仅此而已。
  • 衡量增量,而非文档:ACES提出技能提升。在同一模型、沙箱、工作区和评分器下,运行同一任务两次,一次加载技能,一次不加载,然后测量代理完成内容的差异。
  • 结果跨框架比较:来自58个生产技能的947个配对案例在四个框架中评分,轨迹被标准化为共享的代理轨迹交换格式,因此Claude Code中技能的提升可以与Cursor中的提升进行对比。
  • 为何重要:最大的流程指标提升出现在技能执行、行为检查和技能效率上,这指出了技能的实际用途。如果你今天运行一个审查流程,这为你提供了配对运行设计,以替换为衡量结果的方式。

Paper | Tweet

论文 | 推文

3. Context Management as Code

3. 上下文管理即代码

Every memory system asks you to design a schema up front, then rewrite it when the agent starts doing something you did not anticipate. Scroll, from Alibaba, removes the schema entirely and hands context construction to the model as a programming problem.

每个记忆系统都要求你预先设计一个模式,然后在代理开始做你未预料到的事情时重写它。来自阿里巴巴的Scroll完全移除了模式,将上下文构建交给模型作为一个编程问题来处理。

  • State lives outside the prompt: Each session is backed by an append-only event log and a sandboxed, persistent Python kernel. Tool outputs, retrieved history, and derived state bind to typed variables across model calls instead of being serialized into the prompt every turn.
  • Only printed projections cross the boundary: Model-written code searches and transforms that state, and just the explicitly printed output enters the working view. The event log keeps lossless ground truth, so nothing gets committed to a compressed form before you know what will matter.
  • Eviction stays recoverable: When the working view nears its budget, stale spans are evicted but remain retrievable. An eviction index keeps compact landmarks tied to exact event-log addresses, so the agent navigates back to a region instead of searching the whole log.
  • Why it matters: With Qwen3.8-Max it reaches 94.8% on LongMemEval_S, 73.1% on BEAM_10M (5.1 points over the best published memory system), and 86.7% on LOCA_256K. Because context management runs as code, it inherits every future improvement in model coding ability.
  • 状态存在于提示之外:每个会话由一个仅追加的事件日志和一个沙盒化的持久Python内核支持。工具输出、检索到的历史和派生状态在模型调用之间绑定到类型化变量,而不是每轮都序列化到提示中。
  • 只有打印的投影跨越边界:模型编写的代码搜索和转换该状态,只有明确打印的输出进入工作视图。事件日志保留无损的真相,因此在你了解什么重要之前,不会有任何内容被提交到压缩形式。
  • 驱逐保持可恢复:当工作视图接近其预算时,过时的片段被驱逐但仍可检索。驱逐索引将紧凑的地标与精确的事件日志地址关联,因此代理可以导航回某个区域,而不是搜索整个日志。
  • 为何重要:使用Qwen3.8-Max,它在LongMemEval_S上达到94.8%,在BEAM_10M上达到73.1%(比最佳已发布记忆系统高出5.1个百分点),在LOCA_256K上达到86.7%。因为上下文管理以代码形式运行,它继承了模型编码能力的每一次未来改进。

Paper | Tweet

论文 | 推文

4. JIT-Agent

4. JIT-Agent

Harnesses are hand-built and then frozen, which means one design has to serve deep research, product generation, and long-horizon coding equally well. JIT-Agent is a model whose output is a harness, synthesized per task.

工具集是手工构建然后冻结的,这意味着一个设计必须同样好地服务于深度研究、产品生成和长周期编码。JIT-Agent是一个输出为工具集的模型,按任务综合生成。

  • A fixed protocol, a variable harness: The harness is formalized as a composable artifact under a four-module protocol covering memory, planning, action protocol, and tool orchestration. JIT-Agent instantiates those modules for the task at hand rather than picking from a menu of presets.
  • Repair happens mid-run: Harnesses get patched during execution, and the system self-evolves by distilling performance signals from an expanding archive of prior configurations, so recurring task shapes converge on better starting designs. Nothing about the backbone changes, only the scaffolding wrapped around it.
  • Backbones move a long way: With JIT-Agent attached, DeepSeek-V4-Flash surpasses GPT-5.6 on DeepSearchQA (+9.1) and OdysseyBench (+4.3), and GLM-5.2 gains up to +20.2 points. The generated harnesses are performance-competitive with mature runtimes like OpenCode and Claude Code.
  • Why it matters: Generated harnesses are still an underexplored direction, and the appendix is worth the read on its own for the named designs that emerge (Palimpsest, Trapdoor, Origami, Gearbox). Those are legible patterns you can steal by hand even if you never run the generator.
  • 固定协议,可变工具集:工具集被形式化为一个可组合的工件,在涵盖记忆、规划、行动协议和工具编排的四模块协议下。JIT-Agent为手头的任务实例化这些模块,而不是从预设菜单中选择。
  • 修复在运行中发生:执行期间,工具链会被打补丁,系统通过从不断扩展的先前配置档案中提炼性能信号来自我进化,因此重复出现的任务形态会收敛到更好的起始设计。主干没有任何变化,只有包裹其外的脚手架在变。
  • 主干进步显著:接入JIT-Agent后,DeepSeek-V4-Flash在DeepSearchQA(+9.1)和OdysseyBench(+4.3)上超越GPT-5.6,GLM-5.2提升高达+20.2分。生成的工具链在性能上与成熟的运行时(如OpenCode和Claude Code)不相上下。
  • 重要性:生成的工具链仍是一个未被充分探索的方向,附录本身值得一读,其中出现了命名设计(Palimpsest、Trapdoor、Origami、Gearbox)。这些是清晰可辨的模式,即使你从不运行生成器,也可以手动借鉴。

Paper | Tweet

论文 | 推文

Message from the Editor

编辑寄语

We just released Introduction to Exo, a hands-on DAIR Academy lab on the open-source agent harness built for recursive self-improvement. Across 6 labs, you drive the real exo CLI in a live terminal, give an agent a shell, read its raw event log, and fork a conversation to travel back in time. Free for a limited time.

我们刚刚发布了《Exo入门》,这是一个DAIR Academy的实践实验室,专注于为递归自我改进而构建的开源代理工具链。通过6个实验,你将在实时终端中驱动真实的exo CLI,给代理一个shell,读取其原始事件日志,并分叉对话以回到过去。限时免费。

Get Started

开始使用

5. Prime Agent

5. Prime Agent

Prime Intellect released an open-source harness built for long-horizon work, and what persists between runs sets it apart. Most harnesses reset everything except the files on disk, which caps how much a system can compound.

Prime Intellect发布了一个为长周期任务构建的开源工具链,其独特之处在于运行之间持久化的内容。大多数工具链除了磁盘上的文件外,重置一切,这限制了系统能够累积的程度。

  • The model programs its own context: A persistent IPython REPL lets the model process its context programmatically instead of reading a flat transcript, so filtering, aggregating, and re-deriving state become code the model writes rather than tokens it re-reads.
  • A Continual Harness carries the rest: Histories, memories, skills, prompts, and subagent specifications persist across trajectories. Improvements accumulate across runs instead of being rebuilt from scratch each time the agent starts.
  • The jump on ARC-AGI-3 is large: Holding the model class fixed, RHAE Best@1 moves from 30% to 95.5%. It also matches or beats native harnesses on long-context coding, GPU kernel generation, and autonomous nanoGPT speedruns.
  • Why it matters: This is a working reference implementation of the compounding-harness idea rather than a paper describing one, and it is open source. If you have been reading about self-improving harnesses and wanted something to run, start here. The state hierarchy diagram alone is a useful map of what belongs in the prompt and what belongs in managed storage.
  • 模型编程自己的上下文:一个持久的IPython REPL让模型以编程方式处理其上下文,而不是读取平面转录,因此过滤、聚合和重新推导状态成为模型编写的代码,而不是重新读取的令牌。
  • 持续工具链承载其余部分:历史、记忆、技能、提示和子代理规范在轨迹之间持久化。改进跨运行累积,而不是每次代理启动时从头重建。
  • 在ARC-AGI-3上的提升巨大:保持模型类别固定,RHAE Best@1从30%跃升至95.5%。在长上下文编码、GPU内核生成和自主nanoGPT速通方面,它也匹配或超越了原生工具链。
  • 为何重要:这是一个关于复合式工具链思想的实际参考实现,而非描述该思想的论文,并且它是开源的。如果你一直在阅读关于自我改进工具链的内容,并想找点东西来运行,从这里开始。状态层级图本身就是一张有用的地图,展示了哪些内容应放在提示词中,哪些应放在受管存储中。

Paper | Tweet

论文 | 推文

6. What Compaction Destroys

6. 压缩会破坏什么

If you keep safety rules or coding standards in an AGENTS.md or a CLAUDE.md, this one is worth your time. Researchers measured what context compaction actually destroys across 20 production agent configurations, and safety rules are among the first casualties.

如果你在AGENTS.md或CLAUDE.md中保留了安全规则或编码标准,这篇值得你花时间阅读。研究人员测量了上下文压缩在20个生产代理配置中实际破坏了什么,而安全规则是最先受损的之一。

  • Everything gets summarized at the same rate: A safety rule and an episodic log compete for the same tokens, and when the budget overflows both get compressed equally. Only the rule needs exact wording to stay enforceable, and nothing in the pipeline knows that.
  • 所有内容都以相同的速率被总结:一条安全规则和一段事件日志竞争相同的令牌,当预算溢出时,两者都会被同等压缩。只有规则需要精确的措辞才能保持可执行性,而流程中没有任何部分知道这一点。

更进一步:量化金融体系

看懂新闻只是起点——沿量化金融路径,把它变成能交付的工程能力

进入量化体系 →

相似阅读

另一事件,读法相近