跳到正文
Jones Ray

ScholarPulse 日报 2026-06-13

2026-06-13 学术简报:2 篇。SIMMER基准测试在家庭环境中揭示LLM规划中潜在故障率高达56%,且反事实推理可降低72%潜在故障和75%不可逆案例。

今日速览

序号标题来源论文日期主题推荐等级
1SIMMER: Benchmarking Latent Failures in LLM Executable Planning with a World ModelarXiv2026-06-12RAG中
2StreamMemBench: Streaming Evaluation of Agent Memory for Future-Oriented AssistancearXiv2026-06-12AI-Agent高

重点论文与技术动态

1. SIMMER: Benchmarking Latent Failures in LLM Executable Planning with a World Model

一句话结论

SIMMER基准测试在家庭环境中揭示LLM规划中潜在故障率高达56%,且反事实推理可降低72%潜在故障和75%不可逆案例。

核心内容

方法与数据

价值判断

摘要 Large language models (LLMs) are increasingly deployed as planners for autonomous agents in household environments. While existing benchmarks evaluate whether LLM-generated plans execute successfully, they overlook a critical type of failure: latent failures. Unlike immediate failures that trigger instant feedback at execution time and enable timely correction, latent failures do not immediately halt plan execution but silently compromise goal achievement. In severe cases, they cause irreversible harm. To address this gap, we introduce SIMMER, a benchmark for evaluating latent failures in LLM planning through a human-curated symbolic world model grounded in the kitchen domain. SIMMER defines a world model comprising 77 actions, 262 unique objects, and approximately 46,800 possible interactions that are semantically realistic, derived from real-world cooking scripts. It then leverages a state machine executor that validates plans against the world model and detects immediate precondition violations, latent hazards, and irreversible failures. Experiments across six LLMs show that even frontier models achieve at most 17% error-free plans. Moreover, up to 56% of plans contain latent failures, the majority of which lead to irreversible consequences. We further demonstrate that explicit state reasoning via counterfactual foresight simulation can reduce latent failures by up to 72% and irreversible cases by up to 75%, suggesting a promising direction for more robust LLM planners.

2. StreamMemBench: Streaming Evaluation of Agent Memory for Future-Oriented Assistance

一句话结论

当前代理记忆系统在利用观察证据和将反馈转化为可靠后续行为方面表现不佳,即使证据被存储或反馈被局部整合。

核心内容

方法与数据

价值判断

摘要 A central role of personal-agent memory is to turn stored information and prior interactions into future-oriented assistance. In daily use, useful cues come from what the agent observes and how the user interacts with the agent, and the agent must carry them forward from the current request to similar future tasks. Existing memory benchmarks usually test dialogue recall or task improvement in isolation, leaving the trajectory from streaming observations to later assistance largely untested. We introduce StreamMemBench, a streaming benchmark that constructs a two-step task sequence around each evidence anchor from EgoLife egocentric streams. The initial task tests evidence use, while the follow-up task tests whether feedback and interaction experience are reused. Four metrics diagnose evidence recall, initial evidence use, feedback incorporation, and follow-up reuse. Experiments with eight memory systems across two backbones show that current systems often fail to use observed evidence or turn feedback into reliable follow-up behavior, even when evidence is stored or feedback is incorporated locally. StreamMemBench is publicly available at https://github.com/landian60/StreamMemBench.