AIAny
Icon for item

AdaPlanBench: Evaluating Adaptive Planning in Large Language Model Agents under World and User Constraints

Dynamic interactive benchmark that tests whether LLM agents can adaptively plan and re-plan when world and user constraints are progressively revealed. Built on 307 household tasks with a multi-turn protocol that exposes hidden constraints only after plan violations, emphasizing iterative revision and constraint inference.

Introduction

Why this matters Large-language-agent benchmarks usually evaluate static planning or single-shot task success. AdaPlanBench flips that expectation: real-world constraints are often incomplete and revealed over interaction, so reliable agents must infer constraints from feedback and re-plan under accumulating, sometimes conflicting, requirements. The core insight is that evaluating adaptive planning requires a dynamic, violation-driven protocol rather than fixed prompts or one-off demonstrations.

Key Findings
  • Adaptive planning remains hard: across ten leading LLMs the best model reached only ~67.8% accuracy, showing substantial room for improvement in robust re-planning and constraint tracking — so what: current agent designs still fail frequently when constraints accumulate.
  • User constraints are especially challenging: performance drops more when user-preference constraints appear than with purely world-physical constraints — so what: agent alignment and preference modeling need stronger interactive inference mechanisms.
  • Degradation with accumulating constraints: accuracy decreases as more hidden constraints are revealed, indicating brittle plan composition and limited memory/constraint-tracking — so what: successful agents must maintain and reason over an evolving constraint set.
  • Failure modes point to weak physical grounding and ineffective revision strategies — so what: improvements likely require tighter environment grounding, explicit constraint bookkeeping, and better re-planning heuristics.
Who it's for and trade-offs

Great fit if you want to benchmark and stress-test LLM agents' interactive planning, constraint inference, and re-planning strategies in household-like tasks. It is useful for researchers developing agent frameworks, prompt-based planning systems, or modules for constraint management and user preference handling. Look elsewhere if you need evaluation of single-step instruction following, large-scale autonomous execution logging, or tasks outside embodied/household-style scenarios — AdaPlanBench is focused on multi-turn, constraint-driven planning rather than broad-scale execution or resource-heavy simulation.

How the benchmark works

AdaPlanBench provides 307 base household tasks and a scalable pipeline that programmatically augments each with two types of hidden constraints (world and user). At runtime agents propose plans; the protocol reveals a hidden constraint only when a proposed plan violates it, forcing iterative corrections. This design stresses (1) inferring unseen constraints from violation feedback, (2) tracking an accumulating constraint set across turns, and (3) efficiently re-planning to satisfy both physical and preference constraints. The authors include standardized metrics and analyses of common failure modes to guide follow-up work.

Information

  • Websitearxiv.org
  • AuthorsJiayu Liu, Cheng Qian, Zhenhailong Wang, Bingxuan Li, Jiateng Liu, Heng Wang, Jeonghwan Kim, Yumeng Wang, Xiusi Chen, Yi R. Fung
  • Published date2026/06/04

More Items

Autonomous multimodal GUI agent that executes natural-language interface tasks across mobile apps, web domains, and desktop OS. Expands environment coverage (170+ multilingual apps, 4,000+ web domains), uses function-grounded task generation and keypoint-based multi-model verification to produce reliable RL rewards for real-world deployment.

Studies looping shared transformer layers in Mixture-of-Experts models under matched budgets and proposes SMELT: loop the middle half twice while matching per-token FLOPs, non-embedding parameters, and KV cache. Shows 6.8–18.0% training-FLOPs savings on the compute-optimal frontier, stronger downstream gains on code and long-context tasks.

Turns sparse per-student records into individualized simulators that both reproduce a student’s responses and update them under tutor guidance using pooled LLM pretraining followed by per-student specialization; releases StudentSimEval and reference simulators across chess, L2 writing, and math.