Paper: 2607.27155 Authors: Jingbo Zhou, Yusai Zhao, Qi Bao, Jingjia Cao, Zhenghai Chen, Chang Gao, Kaiqi Guo, Muxin Guo, Mingxuan Li, Xinjiang Lu Categories: cs.AI, cs.CL, cs.HC

The Gap

Existing agent benchmarks — WebArena, OSWorld, GAIA, SWE-bench — have pushed hard on task complexity and environment realism. But they share a blind spot: none of them ask whether completing a task with an LLM agent is economically rational. They measure “did it work?” but not “was it worth it?” Meanwhile, real office work is multi-step, multi-application, and expensive — a single workflow might take a skilled worker hours. If we’re going to trust LLM agents with office labor, we need to know not just whether they can do it, but whether the quality justifies replacing (or augmenting) a human who costs $X per hour.

The path from gap to contribution:

LLM agent benchmarks measure task success in isolation
  |                       no cost grounding, short-horizon tasks
  v
Gap: Can agents handle REAL office workflows
     at acceptable quality-to-cost ratios?
  |
  v
Method: OmegaUse-OfficeVal
  - 100 tasks from practitioners (~2.32h avg human time)
  - Dual economic signals (labor time + price proxy)
  - Code-based verifiers from fine-grained rubrics
  |
  v
Evidence: Frontier LLMs evaluated against human baseline
  - LLMs are 10-100x cheaper and faster
  - But deliverable quality is far below human level
  |
  v
Conclusion: Cost advantage is real but premature;
            quality gap is the binding constraint

The Increment

One sentence: Before this paper, evaluating LLM agents on office tasks meant checking correctness in a vacuum; after this paper, we have a framework that attaches a dollar sign to both sides of the ledger — human labor cost vs. agent cost — so you can see exactly where the quality-to-cost tradeoff breaks.

Core Mechanism

The benchmark has three layers that work together. First, the task layer: 100 office-suite tasks sourced from real practitioner requests, then sanitized through a privacy-preserving adaptation process. These aren’t synthetic puzzles — they’re the kind of things a knowledge worker actually does (drafting documents, manipulating spreadsheets, preparing presentations). On average, each task takes a human about 2.32 hours.

Second, the economic annotation layer: every task carries two economic signals. One is human labor time (how long a skilled worker takes). The other is a task price proxy (a monetary estimate of the task’s market cost). These aren’t afterthoughts — they’re first-class metadata that enable value-weighted evaluation. A task that takes 4 hours and costs 200isweighteddifferentlyfromonethattakes20minutesandcosts200 is weighted differently from one that takes 20 minutes and costs 15.

Third, the evaluation layer: fine-grained rubrics define what a correct deliverable looks like for each task. From these rubrics, the authors build code-based verifiers — automated checkers that can assess agent outputs without human judgment calls. This is crucial for reproducibility and for scaling evaluation beyond a handful of tasks.

Practitioner task requests
        |
        v
Privacy-preserving adaptation
        |
        v
+---------------------------+
|  100 office-suite tasks   |<--- Economic signals
|  (avg 2.32h human time)   |     (labor time, price)
+---------------------------+
        |
        v
LLM agent attempts task
        |
        v
Output + Fine-grained rubric
        |
        v
Code-based verifier scores
        |
        v
Quality score + Cost comparison
(human cost vs agent inference cost)

Think of it like a tax audit for AI labor. Imagine your company currently hires a temp worker for each office task. The audit asks: for each line item on the invoice, (1) how much did the human cost, (2) how much would the AI cost, and (3) is the AI’s output actually usable? The “line items” are the 100 tasks. The “human cost” is the labor time and price proxy. The “AI cost” is inference compute. And the “usability” check is the code-based verifier — it’s the auditor who opens each deliverable and checks it against a rubric, not with vibes but with automated criteria. The punchline of the audit: the AI is astonishingly cheap per task, but a disturbing number of its deliverables would get sent back for rework.

Key Concepts

  • Economic grounding: Most benchmarks ask “did the agent succeed?” This paper asks “did the agent succeed *relative to what it would cost a human?” Concretely: if a task costs a human 100inlaborandtheLLMdoesitfor100 in labor and the LLM does it for 0.50 in compute but only delivers 60% quality, is that a good deal? Economic grounding means every task carries explicit cost metadata so you can make that calculation. Without it, you’re comparing agent performance against an imaginary yardstick.

  • Value-weighted evaluation: Not all office tasks matter equally. Formatting a slide deck is different from drafting a legal contract. Value-weighted evaluation means that when you compute an overall performance score, each task’s contribution is scaled by its economic weight. A task priced at 200inhumanlaborcountsmorethanonepricedat200 in human labor counts more than one priced at 10. This prevents the benchmark from being dominated by easy, low-stakes tasks that inflate average scores.

  • Code-based verifiers: Instead of asking humans to rate outputs (expensive, slow, inconsistent), the authors build automated checkers from rubrics. A rubric might say “the spreadsheet must contain a pivot table with columns X, Y, Z and values summing to W.” The verifier parses the output and checks each criterion programmatically. This makes evaluation reproducible, cheap, and deterministic — the same output always gets the same score.

Framework Shift

Before (mainstream approach):           After (this paper):
                                       
Task success in isolation              Task success in economic context
  |                                      |
  v                                      v
Accuracy / pass rate as metric         Quality per dollar as metric
  |                                      |
  v                                      v
"How often does it work?"              "Is it worth replacing a human?"
  |                                      |
  v                                      v
Short tasks, synthetic envs            Long-horizon tasks, real workflows
  |                                      |
  v                                      v
Human or LLM-as-judge scoring          Code-based verifiers from rubrics

From “can the agent do it?” to “should the agent do it?” — the core shift is treating LLM agent evaluation as an economic decision, not just a technical one.

Expert Assessment

Problem choice: This is a genuine gap. The field has been so focused on “can agents do X?” that we’ve collectively ignored “at what cost and quality?” The economic framing is overdue, especially as companies start deploying agents in production. Whether 100 tasks is enough to make the economics conclusions robust is debatable, but the conceptual contribution — attaching cost metadata to benchmarks — is valuable regardless of scale.

Method maturity: The economic grounding idea is a clever insight, not brute force. The dual-signal annotation (time + price) is well-designed. However, the paper is somewhat vague on how the “price proxy” is derived — is it based on freelance market rates, salary amortization, or something else? The code-based verifiers are the right approach for reproducibility, but the paper doesn’t deeply discuss failure modes of the verifiers themselves (what if an output is correct but doesn’t match the expected format?).

Experimental integrity: The human baseline is a strength — many agent benchmarks lack this. The finding that LLMs are cheap but low-quality is plausible and consistent with field experience. One concern: the paper doesn’t deeply discuss what “approaching human-level quality” would actually look like numerically. The gap is described qualitatively, but I’d want to see, for instance, what percentage of tasks each model’s output would be “acceptable without revision” by a real office worker. The 10-100x cost advantage claim is eye-catching but would benefit from sensitivity analysis on inference pricing.

Writing quality: The abstract and introduction are clear. The task construction section could be stronger — the privacy-preserving adaptation process deserves more detail, since the validity of the benchmark hinges on whether adapted tasks still look like real office work. The evaluation section reads well but the analysis of *why models fail (beyond “quality gap”) is thin. A failure taxonomy would elevate the paper significantly.

Verdict: weak accept — The economic grounding framework is a genuinely useful contribution that the field needs, but the benchmark’s scale (100 tasks) and some under-specified details (price proxy methodology, verifier edge cases) hold it back from a strong accept. Worth reading and building on.

Takeaways

The stealable idea here is economic grounding for any AI evaluation. If you’re benchmarking an AI system in any domain where humans currently do the work, attach a cost to each task. This immediately reframes the question from “is the AI good?” to “is the AI good *enough for the price?” This framing transfers to coding agents (vs. developer time), customer support bots (vs. agent salaries), medical AI (vs. specialist consults), and more.

The code-based verifier pattern is also worth stealing: define your rubric as machine-checkable criteria upfront, not as human vibes after the fact. This makes any evaluation pipeline cheaper and more reproducible.

Finally, the value-weighting idea is practical wisdom: if you’re evaluating AI on a portfolio of tasks, weight by business impact, not by count. A system that nails 90% of trivial tasks but fails on the 10% that matter most is not a 90% system.

论文: 2607.27155 作者: Jingbo Zhou, Yusai Zhao, Qi Bao, Jingjia Cao, Zhenghai Chen, Chang Gao, Kaiqi Guo, Muxin Guo, Mingxuan Li, Xinjiang Lu 分类: cs.AI, cs.CL, cs.HC

缺口

现有的智能体基准——WebArena、OSWorld、GAIA、SWE-bench——在任务复杂度和环境真实性上不断推进。 但它们有一个共同盲点:没有一个基准在问”用 LLM 智能体完成任务,经济上是否划算?” 它们衡量的是”做成了没有”,而不是”值不值得做”。 现实中的办公室工作是多步骤、跨应用的,一个流程可能耗费熟练工人数小时。 如果我们打算把办公室劳动交给 LLM 智能体,光知道它”能不能做”远远不够, 还需要知道它的产出质量是否对得起它省下的那一份人工成本。

从缺口到贡献的逻辑路径:

现有基准只看任务成功率,不考虑成本
  |               任务短,场景合成,无经济标尺
  v
缺口:智能体能否以可接受的性价比
     完成真实办公室工作流?
  |
  v
方法:OmegaUse-OfficeVal
  - 100 个来自从业者的任务(平均 2.32 人工小时)
  - 每任务配双经济信号(劳动时间 + 价格代理)
  - 细粒度评分标准 → 代码化自动验证器
  |
  v
证据:前沿 LLM + 人类基线对照
  - LLM 成本低 10-100 倍,速度快 10-100 倍
  - 但交付质量远低于人类水平
  |
  v
结论:成本优势真实存在但为时过早;
     质量差距才是真正的瓶颈

增量

一句话: 这篇论文之前,评估 LLM 智能体是脱离成本谈正确率; 这篇论文之后,我们有了一个框架,把人类劳动成本和智能体推理成本放在同一张账单上比较—— 让”质量-成本”权衡变得可计算。

核心机制

基准由三层结构组成。

第一层是任务层:100 项办公套件任务,全部来源于真实从业者的工作需求, 经隐私保护流程脱敏改编后保留了任务结构。 这些不是合成谜题,而是知识工作者日常做的事—— 起草文档、操作电子表格、准备演示文稿。 平均每项任务需要人类花费 2.32 小时。

第二层是经济标注层:每项任务附带两个经济信号。 一个是人工时间(熟练工人需要多久),一个是价格代理(任务的市场成本估算)。 这些不是事后附加的标签,而是一等公民级别的元数据。 一项耗时 4 小时、市场价 200 美元的任务,与一项耗时 20 分钟、15 美元的任务, 在评估中的权重完全不同。

第三层是评估层:每项任务有细粒度的评分标准,定义”合格交付物”长什么样。 作者据此构建了代码化验证器——自动检查智能体输出是否满足各项标准, 无需人工主观判断。这对可复现性和规模化评估至关重要。

从业者的真实任务需求
        |
        v
隐私保护改编流程
        |
        v
+----------------------------+
|  100 项办公任务             |<--- 经济信号
|  (平均 2.32 人工小时)      |    (劳动时间、价格代理)
+----------------------------+
        |
        v
LLM 智能体尝试执行任务
        |
        v
输出 + 细粒度评分标准
        |
        v
代码化验证器打分
        |
        v
质量分 + 成本对比
(人类成本 vs 智能体推理成本)

用一个审计的比喻来理解:想象你是一家公司的财务审计师, 要审查公司把办公室工作外包给 AI 是否划算。 每一项办公任务就是一笔报销单—— 你要核对:这笔单子如果雇人做要花多少钱? 让 AI 做花了多少算力费? AI 交出来的东西能不能直接用,还是得让人返工? 100 项任务就是 100 张报销单。 人工时间和价格代理是”雇人做”的成本。 推理费用是”让 AI 做”的成本。 代码化验证器就是那个逐项检查交付物的审计员—— 不是凭感觉打分,而是对照清单逐条核查。 审计的结论很扎眼:AI 每单确实便宜得惊人, 但相当比例的交付物会被退回去要求重做。

关键概念

  • 经济锚定: 大多数基准问的是”智能体成功了吗?“这篇论文问的是”智能体成功了吗,*相对于人类成本而言?“具体来说:如果一项任务人工成本 100 美元,LLM 用 0.5 美元的算力完成了,但质量只有人类的 60%,这笔账算不算划算?经济锚定就是让每项任务都携带显式的成本元数据,让你能算出这笔账。没有它,你其实是在拿智能体跟一个想象中的标尺比。

  • 价值加权评估: 不是所有办公室任务都同等重要。格式化一份幻灯片和起草一份法律合同,份量完全不同。价值加权评估意味着计算总分时,每项任务的贡献按其经济权重缩放。人工成本 200 美元的任务比 10 美元的任务权重更高。这防止了基准被大量简单的低风险任务拉高平均分。

  • 代码化验证器: 不用人来评分(贵、慢、不一致),作者从评分标准中构建自动检查器。比如评分标准说”表格必须包含 X、Y、Z 三列的数据透视表,数值之和为 W”,验证器就解析输出,逐项检查。这让评估可复现、低成本、确定性——同一份输出永远得到同样的分数。

框架转变

之前(主流方法):                  之后(本文方法):

脱离成本看任务成功率               在经济上下文中看任务成功率
  |                                 |
  v                                 v
准确率 / 通过率                    每美元质量比
  |                                 |
  v                                 v
"它多常能做成?"                   "用它替代人工值不值?"
  |                                 |
  v                                 v
短任务、合成环境                   长周期任务、真实工作流
  |                                 |
  v                                 v
人工评分或 LLM 充当裁判            代码化验证器,标准来自评分细则

从”智能体能不能做”到”智能体该不该做”—— 核心转变是把 LLM 智能体评估从技术问题重新定义为经济决策问题。

专家评审

选题眼光: 这是一个真实的缺口。整个领域一直聚焦于”智能体能做 X 吗?”, 集体忽略了”成本多少?质量如何?“这个问题。 经济锚定的视角早就该有了,尤其在企业开始把智能体部署到生产环境的当下。 100 项任务的规模是否足以支撑稳健的经济结论有待商榷, 但”给基准附加成本元数据”这个概念贡献本身就有价值,不依赖于规模。

方法成熟度: 经济锚定是巧劲,不是蛮力。 双信号标注(时间 + 价格)设计得不错。 但论文对”价格代理”的推导方法说得比较含糊—— 是基于自由职业市场的报价?还是薪资摊销?还是别的什么? 代码化验证器的方向是对的,但论文没有深入讨论验证器本身的失败模式—— 比如一份输出内容正确但格式不符合预期格式的情况怎么处理?

实验诚意: 有人类基线是一个优点,很多智能体基准没有这个。 LLM 便宜但质量低的结论可信,与业界经验一致。 一个疑虑:论文对”接近人类质量”到底是什么样的数值描述不够清晰。 差距是定性描述的,但我希望能看到,比如每种模型的输出有多大比例 “无需修改即可被真实办公室工作者接受”。 10-100 倍成本优势的说法很抓眼球,但最好加上推理价格的敏感性分析。

写作功力: 摘要和引言写得清晰。 任务构建部分可以更强——隐私保护改编流程值得更多笔墨, 因为基准的有效性取决于改编后的任务是否仍像真实办公工作。 评估部分读起来流畅,但对模型”为什么失败”的分析偏薄(除了”质量差距”)。 如果加一个失败分类法,整篇论文会提升一个档次。

判决: 弱接收 — 经济锚定框架是领域真正需要的有用贡献, 但基准规模(100 项任务)和若干细节不够明确(价格代理方法、验证器边界情况)限制了它的上限。 值得读,值得在其上继续构建。

要点总结

最值得”偷”走的核心思想是给任何 AI 评估附加经济锚定。 如果你在任何领域做 AI 基准测试,而那个领域目前是人类在干活—— 给每项任务贴一个成本标签。 这会立刻把问题从”AI 好不好”重新框定为”AI 够不够好,对得起这个价格吗?”。 这个框架可以迁移到代码生成智能体(对比开发者时间)、 客服机器人(对比客服薪资)、医疗 AI(对比专家会诊费)等等。

代码化验证器的模式也值得借鉴:把评分标准定义为机器可检查的条件, 而不是事后靠人打印象分。这能让任何评估管线更便宜、更可复现。

最后,价值加权是实用智慧:如果你在评估 AI 对一组任务的表现, 按业务影响力加权,而不是按任务数量平均。 一个在 90% 的琐碎任务上表现出色、但在真正重要的 10% 上翻车的系统, 不是一个 90 分的系统。