HyperAIHyperAI

Command Palette

Search for a command to run...

한 달 전
에이전트
LLM

PlanBench-XL: 대규모 도구 생태계에서 LLM 도구 사용 Agents의 장기 계획 평가

초록

LLM agents는 점점 더 대규모 도구 생태계에서 운영되며, 실제 세계의 작업은 관련 도구 발견, 암묵적 하위 목표 추론, 그리고 장기적인 관점에서 동적 환경에 적응하는 것을 요구한다. 그러나 기존 벤치마크는 검색이 제한된 도구 가시성 환경에서의 계획 수립을 거의 평가하지 않는다. 이러한 격차를 해소하기 위해, 본 연구는 1,665개의 도구를 대상으로 327개의 소매 업무를 포함하는 상호작용형 벤치마크인 PlanBench-XL을 제안한다. 이는 agents가 최종 목표에 도달하기 위한 후속 호출을 위한 중간 증거를 도출하기 위해 사용 가능한 도구를 반복적으로 검색하고 호출할 수 있는지 평가한다. PlanBench-XL은 누락, 고장 또는 오작동을 유발하는 도구 기능을 통해 실제 세계의 예측 불가능성을 시뮬레이션하는 선택적 차단 메커니즘을 추가로 제공한다. 이를 통해 agents는 차단된 경로를 감지하고 런타임에 적응해야 한다. 10개 주요 LLM에 대한 실험 결과는 대규모 도구 계획이 여전히 과제로 남아있음을 보여준다. 차단이 없는 환경에서 GPT-5.4는 51.90%의 정확도를 달성하지만, 가장 심각한 차단 조건 하에서는 11.36%로 급감한다. 추가 분석 결과, agents는 명시적 오류 신호가 없는 실패 상황에서 특히 취약하며, 복구를 위해 더 긴 대체 도구 사용 경로가 필요할 경우에도 취약성이 두드러진다. 이러한 결과는 PlanBench-XL을 agents의 계획 실패를 진단하는 테스트베드로 확립하며, 대규모 불완전한 도구 환경에서 장기적인 작업에 대해 견고한 적응형 계획 수립이 필요함을 강조한다.

One-sentence Summary

PlanBench-XL evaluates long-horizon planning for LLM tool-use agents across 327 retail tasks and 1,665 tools by introducing an optional blocking mechanism that simulates real-world unpredictability through missing, failing, or distracting functions, revealing that GPT-5.4's accuracy drops from 51.90% in block-free settings to 11.36% under severe blocking and underscoring agent vulnerability to silent failures and complex recovery paths.

Key Contributions

  • This paper introduces PlanBench-XL, a scalable benchmark framework that automatically generates 327 grounded retail tasks across 1,665 tools to evaluate iterative tool retrieval and intermediate evidence discovery. The framework addresses retrieval-limited tool visibility by providing an automated pipeline for constructing multi-step tool-use trajectories.
  • A dynamic interaction environment simulates real-world unpredictability through an optional blocking mechanism that injects missing, failing, or distracting tool functions during execution. This design forces agents to detect disrupted paths and adapt their planning strategies in real time.
  • Comprehensive evaluations of ten frontier language models demonstrate that massive-tool planning remains challenging, with top models experiencing accuracy drops from 51.90% to 11.36% under severe blocking conditions. Further analysis reveals that current agents struggle particularly when failures lack explicit error signals or require extended alternative tool-use paths for recovery.

Introduction

Large language model agents increasingly rely on external tools to solve complex, long-horizon tasks in real-world environments like enterprise systems and web platforms. Because context windows restrict full tool visibility, agents must iteratively retrieve and invoke tools to uncover intermediate information, making adaptive planning essential for practical deployment. Prior benchmarks, however, typically assume fixed and fully visible toolsets with clean descriptions and explicit goals, largely ignoring the retrieval noise, missing or failing functions, and dynamic path disruptions that define actual tool ecosystems. To bridge this gap, the authors introduce PlanBench-XL, an interactive benchmark featuring 327 multi-step retail tasks across 1,665 tools that forces agents to navigate partial visibility and recover from simulated tool failures. By evaluating ten leading models, they demonstrate that current agents struggle significantly with massive-tool planning under unreliable conditions, establishing a new testbed for developing robust, adaptive agentic systems.

Dataset

Dataset Composition and Sources

  • The authors introduce PlanBench-XL, a synthetically generated benchmark focused on the retail domain to evaluate long-horizon planning and tool exploration in massive tool-use environments.
  • The dataset is constructed using a scalable pipeline driven by generation and filtering language models, with GPT-5.2 employed for filtering tasks to ensure quality control.
  • The environment relies on a self-defined set of domain-specific datatypes that represent distinct retail information, serving as the foundation for tool schemas and backend records.

Key Details for Each Subset

  • Executable Tools: The tool library contains 185 tools derived from combinatorial pairs of input and output datatypes. Input schemas range from 1 to 5 datatypes, while output schemas contain exactly 1 datatype.
  • Noisy Tools: The authors augment the library with 925 noisy tools, creating five variants per executable tool to simulate realistic retrieval imperfections. These variants cover categories including deprecated, condition-limited, stale, unreliable, and non-authoritative behaviors.
  • Queries: Tasks are generated by specifying initial and target datatype sets, computing valid tool sequences, and verbalizing the tasks with concrete entities instantiated from the backend database.
  • Filtering Rules: Tools are filtered to enforce deterministic dependencies, ensure information access requires actual tool execution, maintain domain realism, and guarantee non-trivial information gain. Queries are retained only when the shortest solution path requires at least five distinct tool calls and all declared inputs are necessary for the solution.

Data Usage and Processing

  • Evaluation Modes: The benchmark supports a default mode with retrieval noise and a block mode that disrupts useful paths to assess agent recovery and re-planning capabilities.
  • Backend Construction: A backend database is instantiated with non-trivial values to force tool invocation, as outputs cannot be inferred from common sense or the query text alone.
  • Ground Truth: Process-level ground truth is derived via a backward search algorithm to identify inclusion-minimal tool sets and legal execution orders that transform initial datatypes into target datatypes.
  • Retrieval Strategy: Tools are exposed through a custom retriever that supports bi-directional exploration, matching queries to tools based on datatype structures rather than surface-level text descriptions.

Metadata and Additional Processing

  • Internal Metadata: The dataset includes metadata tracking input and output datatypes for dependency validation, progress-call annotation, and evaluation diagnostics.
  • Agent-Schema: The information provided to models consists of function names, descriptions, parameters, and strictness constraints, with datatype annotations hidden as internal metadata to prevent direct graph recovery.
  • Naming Convention: Tool names follow an alias-based template with optional version suffixes to mimic real-world inconsistencies and discourage simple name matching.
  • Failure Annotations: Trajectories are annotated to categorize failures into no traction, irrecoverable drift, weak recovery, and format errors based on whether tool calls produce useful intermediate evidence.

Experiment

The PlanBench-XL benchmark evaluates frontier and open-source LLMs on long-horizon adaptive planning within massive tool ecosystems, using baseline assessments, retrieval-time blocking, enforced exploration, and path-length variations to validate core capabilities, robustness to corrupted tools, adaptive recovery potential, and complexity tolerance. Results indicate that while broad exploration and precise execution strongly drive success, current models consistently struggle to adapt when tools are silently corrupted or recovery paths lengthen, with additional test-time compute yielding only marginal gains. Qualitative analysis reveals that performance bottlenecks primarily stem from trajectory drift and flawed tool-selection rather than retrieval limitations, underscoring the need for agents to reliably detect unreliable feedback and dynamically re-plan under partial observability.

The evaluation reveals a pronounced performance divide between frontier models and smaller open-source variants, with larger architectures consistently demonstrating superior task completion and execution precision. While broader exploration of available tool datatypes generally correlates with higher success rates, excessive retrieval activity does not guarantee effective progress, as some models waste interaction turns on uninformative searches. Furthermore, maintaining basic tool-use reliability remains essential, as models that successfully minimize invalid calls and filter out untrusted inputs achieve significantly higher overall accuracy. Larger model variants consistently outperform their smaller counterparts in both task completion accuracy and execution quality. Excessive retrieval turns and high search-to-call ratios do not necessarily translate into successful task completion or efficient exploration. Minimizing structurally invalid tool calls and rejecting untrusted inputs are strongly associated with higher overall task success rates.

The analysis of block alternative invocation reveals that models predominantly interact with explicit and implicit failures, while largely avoiding semantically misleading tools. Architectural differences lead to varying failure preferences, with some models heavily favoring silent failures and others showing a more even split between explicit and implicit error types. This distribution underscores the significant challenge agents face in handling subtle, executable-looking failures compared to obvious semantic mismatches. Models consistently avoid semantically misleading tools, demonstrating effective initial tool filtering. Llama and GPT exhibit a strong tendency to invoke implicit failures over explicit ones. DeepSeek and Gemini display a more balanced reliance on both explicit and implicit failure types.

The authors evaluate the statistical reliability of their benchmark by computing confidence intervals across multiple models and evaluation metrics. The reported uncertainty margins are consistently narrow relative to the observed performance gaps between models, indicating that the primary findings are stable and not driven by random sampling variation. Statistical uncertainty remains minimal across all tested models and metric categories. Narrow confidence margins confirm that observed performance differences reflect genuine capability variations rather than sampling noise. Robustness analysis demonstrates that the benchmark yields consistent outcomes under repeated evaluation conditions.

The authors evaluate a smaller open-source model on a single-step tool retrieval task to verify that benchmark results are not primarily limited by retriever coverage. The model demonstrates strong capability in locating and executing the correct tool, closely matching the ideal interaction pattern. High execution precision and an absence of invalid calls indicate that the retrieval system and runtime protocol reliably supply valid tools for straightforward queries. High accuracy and precision indicate reliable task completion and relevant execution. The retrieval system frequently includes ground-truth tools, supporting effective single-step planning. Interaction length closely matches the ideal trajectory, with no structural or procedural call failures.

The authors introduce a comprehensive evaluation framework that simultaneously addresses multiple critical dimensions of tool-use planning, including retrieval, sub-goal reasoning, exploration, and handling unreliable tools. Unlike prior benchmarks that focus on isolated capabilities, this proposed framework integrates all key features to provide a holistic assessment of agent performance in large-scale tool ecosystems. Existing benchmarks typically evaluate only a limited subset of tool-use capabilities, leaving critical areas like bi-directional exploration and unreliable tool handling largely untested. The proposed framework uniquely covers all seven evaluated dimensions, enabling a more complete assessment of agent adaptability and robustness. This comprehensive design highlights a significant gap in current evaluation suites, which often overlook the interplay between long-horizon planning and tool reliability.

The evaluation utilizes a comprehensive framework that holistically assesses multi-dimensional tool-use capabilities, including retrieval, reasoning, exploration, and unreliable tool handling. Experiments validate that larger frontier models consistently outperform smaller variants in execution precision, while demonstrating that excessive search activity hinders efficiency and that minimizing invalid calls and filtering untrusted inputs are critical for success. Analysis of failure modes reveals that agents effectively avoid semantically misleading tools but struggle with subtle implicit failures, with architectural differences heavily influencing error preferences. Additional reliability and retrieval tests confirm that observed performance gaps reflect genuine capability variations rather than sampling noise or system limitations.


AI로 AI 구축

아이디어에서 출시까지 — 무료 AI 코코딩, 즉시 사용 가능한 환경, 최적의 GPU 가격으로 AI 개발을 가속화하세요.

AI 협업 코딩
바로 사용 가능한 GPU
최적의 가격

HyperAI Newsletters

최신 정보 구독하기
한국 시간 매주 월요일 오전 9시 에 이번 주의 최신 업데이트를 메일로 발송합니다
이메일 서비스 제공: MailChimp
PlanBench-XL: 대규모 도구 생태계에서 LLM 도구 사용 Agents의 장기 계획 평가 | 문서 | HyperAI초신경