TL;DR
Using CascadeBench (27,243 transitions, 64 worlds), the paper shows fine-tuned models achieve 82-91 IoU in-distribution but collapse to ~40-41 under configuration shift.

论文原始摘要

World models enable agents to anticipate the effects of their actions by internalizing environment dynamics. In enterprise systems, however, these dynamics are often defined by tenant-specific business logic that varies across deployments and evolves over time, making models trained on historical transitions brittle under deployment shift. We ask a question the world-models literature has not addressed: when the rules can be read at inference time, does an agent still need to learn them? We argue, and demonstrate empirically, that in settings where transition dynamics are configurable and readable, runtime discovery complements offline training by grounding predictions in the active system instance. We propose enterprise discovery agents, which recover relevant transition dynamics at runtime by reading the system's configuration rather than relying solely on internalized representations. We introduce CascadeBench, a reasoning-focused benchmark for enterprise cascade prediction that adopts the evaluation methodology of World of Workflows on diverse synthetic environments, and use it together with deployment-shift evaluation to show that offline-trained world models can perform well in-distribution but degrade as dynamics change, whereas discovery-based agents are more robust under shift by grounding their predictions in the current instance. Our findings suggest that, in configurable enterprise environments, agents should not rely solely on fixed internalized dynamics, but should incorporate mechanisms for discovering relevant transition logic at runtime.

Paper Collector 中文速览

企业系统中运行时发现配置比学习动态更鲁棒

方法概述

设计企业发现代理,在推理时动态读取系统配置而非仅依赖离线训练;构建CascadeBench基准测试,采用World of Workflows评估方法论;在合成环境中对比离线训练世界模型与发现代理在部署偏移下的性能

核心贡献

提出企业发现代理,通过运行时读取系统配置而非依赖内部化表示来恢复动态,引入CascadeBench基准测试,证明在部署偏移下更鲁棒

原始来源与核验范围

核验仅覆盖论文正文中的主张、证据片段和参考文献关系。NGJOO 未独立运行作者代码、重做实验或验证真实部署效果;页面中的可复现性分数是文档完整度评估,不是复现实验结果。

42
已证实
0
证据不足
10
无法验证
N/A
可复现性
置信度
80%

核心问题

Should LLM agents in enterprise systems rely on learned world models or discover dynamics at runtime through interaction with the system?

核心方法

The authors introduce CascadeBench with 27,243 verified transition samples across 64 worlds spanning 6 industries. They compare three approaches: prompted baselines, learned world models fine-tuned on transition tuples, and enterprise discovery agents that retrieve configuration at inference time. Evaluation uses IoU metrics across three transition complexity tiers (schema-determined, rule-composed, execution-inferred).

方法组件

论点验证

已证实 (90%) We formalize enterprise dynamics as deployment-specific and evolving transition functions defined by system configuration.
已证实 (90%) We introduce CascadeBench, a benchmark for evaluating robustness under configuration and deployment shift across varying levels of transition complexity.
已证实 (85%) We propose enterprise discovery agents, which recover dynamics at runtime through interaction with the system, improving robustness under shift.
已证实 (90%) We define enterprise discovery agents as agents that actively recover transition logic by interacting with the system (e.g. by querying state, inspecting workflow definitions, or issuing targeted probe actions).
The definition is explicitly provided in p_3, and the implementation in Appendix G (p_75-89) demonstrates how this is realized through the snow_query tool that queries business rules, record states, choice values, and SLA definitions.
已证实 (90%) We distinguish three levels of transition complexity: Tier 1 schema-determined effects, Tier 2 rule-composed cascades, and Tier 3 execution-inferred behavior.
The three tiers are clearly defined in p_17 with concrete examples provided in Table 5 (p_54-61). Tier-stratified results are reported throughout the paper and in Appendix C.
已证实 (95%) We define a world as W = (E, T), where E specifies the environment (organizational structure, configuration database, business rules, initial records, etc.) and T is the transition function induced by E on the platform.
The formal definition W = (E, T) is explicitly provided in p_18 with clear specification of what E contains and what T represents.
已证实 (85%) Worlds are generated from a catalog of 1,596 business rule patterns spanning 6 industries and 11 operational domains, with each world instantiating a unique subset. A dependency-ordered construction pipeline expands ~27,000 LLM-generated base scenarios into ~802,000 validated initial states.
Specific numbers are provided in p_19: 1,596 business rule patterns, 6 industries, 11 operational domains, ~27,000 LLM-generated base scenarios, ~802,000 validated initial states. The construction pipeline is detailed in Appendix E.
已证实 (85%) The resulting corpus contains 27,243 verified transition samples spanning 64 worlds across 6 industries (financial services, government, healthcare, manufacturing, retail, technology) and 3 organizational sizes (small, midmarket, enterprise).
Specific numbers are provided in p_20: 27,243 verified transition samples, 64 worlds, 6 industries (financial services, government, healthcare, manufacturing, retail, technology), 3 organizational sizes.
已证实 (85%) CascadeBench is built on synthetic schemas that do not appear in real platform deployments, so models cannot rely on memorized table structures.
Stated in p_22 and the mechanism is explained in p_68: reserved namespace prefixes used by ServiceNow's product modules are excluded so schemas cannot overlap with platform tables seen during pretraining.
已证实 (90%) CascadeBench makes the relevant context available for each example-table schemas, business rules, and seed records-so we can control how much context the model receives.
Stated in p_22 as a key design feature. The evaluation settings in p_34 (w/ BR and w/o BR) demonstrate this controllability in practice.
已证实 (85%) Audit-log ground truth is restricted to content fields, removing engine-internal metadata that does not reflect business logic, such as system identifiers, timestamps, and bookkeeping fields.
Stated in p_22 and the filtering process is described in p_71: internal metadata fields are filtered out, retaining only semantically meaningful content changes.
已证实 (80%) When business rules are not provided, prompted models perform poorly on CascadeBench, with both frontier and base open-weight models in the 9-16 IoU(T+F) range. This is substantially lower than the 21-23 range observed for base models on WoW.
Specific IoU ranges are provided in p_36, referencing Table 1: 9-16 IoU(T+F) for CascadeBench w/o BR vs 21-23 for WoW. This is self-reported experimental data.
已证实 (80%) SFT on the transition tuples improves the no-BR setting, yielding modest gains on CascadeBench w/o BR (~2-3 IoU points) and larger gains on WoW (~10 points).
Specific improvement numbers are provided in p_36: ~2-3 IoU points on CascadeBench w/o BR and ~10 points on WoW. This is self-reported experimental data.
已证实 (80%) In-distribution test IoU rises to 91.6 for Gemma-4-31B and 82.0 for Qwen-3.6-27B, far above their base counterparts. However, this advantage largely collapses on CascadeBench, where models face synthetic schemas and configurations not seen during training: both models fall to roughly 40-41 IoU.
Specific IoU numbers are provided in p_37, referencing Figure 3: 91.6 for Gemma-4-31B and 82.0 for Qwen-3.6-27B in-distribution, dropping to 40-41 on CascadeBench. This is self-reported experimental data.
已证实 (80%) Discovery improves over the matched prompted baseline for every model and horizon we evaluate, including at k=1, where Opus 4.6 rises from 0.40 to 0.45 and Sonnet 4.6 from 0.32 to 0.44.
Specific IoU improvements are provided in p_39, referencing Figure 4: Opus 4.6 rises from 0.40 to 0.45, Sonnet 4.6 from 0.32 to 0.44 at k=1. This is self-reported experimental data.
已证实 (80%) For the non-finetuned frontier models, the static no-BR baseline is consistently low around 10 IoU, while the discovery agent recovers a large fraction of the oracle signal, reaching the mid-20s to low-30s without any training on the target instance.
Specific IoU ranges are provided in p_41, referencing Table 2: ~10 IoU for no-BR baseline vs mid-20s to low-30s for discovery agent. This is self-reported experimental data.
已证实 (80%) Prompting without rules handles Tier 1 schema effects reasonably well, reaching roughly 0.56-0.58 IoU, but nearly collapses on Tier 2 cascades and Tier 3 conflicts because rule context is missing.
Specific IoU numbers are provided in p_42, referencing Figure 5: 0.56-0.58 for Tier 1, with near-collapse on Tier 2 and Tier 3. This is self-reported experimental data.
已证实 (80%) Runtime discovery recovers most of this gap: across Claude Opus 4.6, Claude Sonnet 4.6, GPT-5, and Gemini 3 Pro, it stays near the oracle on Tier 1 and Tier 2 while outperforming the prompted baseline.
Stated in p_42 with reference to Figure 5, showing discovery stays near oracle on Tier 1 and Tier 2 while outperforming prompted baseline. This is self-reported experimental data.
已证实 (80%) Discovery Agents outperform matched prompted baselines across rollout horizons. Performance generally decreases as k grows for both methods, as longer horizons require predicting deeper cascades and create more opportunities for error accumulation.
Stated in p_44 with reference to Figure 4, showing discovery agents outperform matched prompted baselines across rollout horizons with performance decreasing as k grows. This is self-reported experimental data.
已证实 (75%) Business rules carry the dynamics that CascadeBench measures: the benchmark probes rule-grounded reasoning rather than what models already know from pretraining.
This is an interpretation supported by the experimental comparison between w/ BR and w/o BR conditions. The large performance gap when rules are provided vs not provided demonstrates that rules carry the dynamics being measured.

... 共 52 个论点

可复现性评估

较低可复现性 (0%)

缺失的复现细节

局限与证据边界

本分析由 PDF 阅读助手 自动生成,仅供参考,不构成学术评审意见。验证结论和可复现性评估基于论文文本自动分析,可能存在偏差。原始论文请参阅 arXiv

分析时间:2026-05-17T07:17:24+00:00 · 数据来源:Paper Collector