Research Papers 论文研究 4h ago Updated 1h ago 更新于 1小时前 49

GATS: Graph-Augmented Tree Search with Layered World Models for Efficient Agent Planning GATS:用于高效智能体规划的图增强树搜索与分层世界模型

GATS introduces a Graph-Augmented Tree Search framework that eliminates LLM inference calls during the planning phase, replacing stochastic exploration with deterministic systematic search. The method utilizes a three-layered world model combining exact symbolic matching, execution log statistics, and limited LLM prediction for unknown actions to guide UCB1-based tree search. GATS achieves a 100% success rate on both synthetic tasks and complex stress tests, significantly outperforming LATS (88. 提出GATS框架,结合UCB1树搜索与分层世界模型,在规划阶段完全消除LLM调用,实现零推理成本与确定性输出。 三层世界模型架构包含精确符号动作匹配(L1)、执行日志统计学习(L2)及未知动作的LLM预测(L3),兼顾效率与泛化。 在合成任务及12种复杂场景(编码、网页导航等)的压力测试中,GATS保持100%成功率,显著优于LATS和ReAct。 相比LATS每任务平均37次LLM调用,GATS实现零调用,彻底解决了传统方法计算成本高及行为随机性强的问题。

65
Hot 热度
75
Quality 质量
70
Impact 影响力

Analysis 深度分析

TL;DR

  • GATS introduces a Graph-Augmented Tree Search framework that eliminates LLM inference calls during the planning phase, replacing stochastic exploration with deterministic systematic search.
  • The method utilizes a three-layered world model combining exact symbolic matching, execution log statistics, and limited LLM prediction for unknown actions to guide UCB1-based tree search.
  • GATS achieves a 100% success rate on both synthetic tasks and complex stress tests, significantly outperforming LATS (88.9%) and ReAct (23.9%).
  • The approach reduces computational overhead by requiring zero LLM calls per task during planning, compared to an average of 37 calls for LATS, while ensuring zero variance in plan generation.

Why It Matters

This research addresses the critical bottleneck of high latency and cost in current LLM-based agent planning by decoupling the search process from heavy language model inference. For AI practitioners, it demonstrates that integrating structured search algorithms with hybrid world models can yield more reliable, deterministic, and efficient agents, particularly in high-stakes environments where consistency and speed are paramount.

Technical Details

  • Core Architecture: GATS employs a UCB1-based tree search algorithm augmented with a graph structure to manage state transitions efficiently without relying on LLMs for every node expansion.
  • Layered World Model: The framework integrates three distinct layers for state prediction: L1 uses exact symbolic action matching for known states, L2 applies statistical learning from historical execution logs, and L3 resorts to LLM-based prediction only for novel or unknown actions.
  • Performance Benchmarks: Evaluated on synthetic tasks with branching paths and a comprehensive stress test of 12 challenging scenarios (coding, web navigation, long-horizon tasks), GATS maintained a 100% success rate, whereas LATS dropped to 88.9% and ReAct to 23.9%.
  • Efficiency Metrics: The system achieves deterministic planning with zero variance across runs and eliminates LLM inference costs during the planning phase, contrasting sharply with LATS which averages 37 LLM calls per task.

Industry Insight

  • Shift to Hybrid Planning: Organizations should consider moving away from pure LLM-driven exploration for complex multi-step tasks, adopting hybrid models that combine symbolic logic, statistical learning, and targeted LLM usage for improved reliability.
  • Cost and Latency Optimization: By removing LLM calls from the core search loop, companies can drastically reduce operational costs and inference latency, enabling real-time agent applications in domains like automated coding or dynamic web navigation.
  • Determinism as a Feature: The ability to produce zero-variance plans makes such frameworks highly suitable for regulated industries or safety-critical systems where reproducibility and predictability are mandatory requirements.

TL;DR

  • 提出GATS框架,结合UCB1树搜索与分层世界模型,在规划阶段完全消除LLM调用,实现零推理成本与确定性输出。
  • 三层世界模型架构包含精确符号动作匹配(L1)、执行日志统计学习(L2)及未知动作的LLM预测(L3),兼顾效率与泛化。
  • 在合成任务及12种复杂场景(编码、网页导航等)的压力测试中,GATS保持100%成功率,显著优于LATS和ReAct。
  • 相比LATS每任务平均37次LLM调用,GATS实现零调用,彻底解决了传统方法计算成本高及行为随机性强的问题。

为什么值得看

本文揭示了在复杂多步规划中,通过系统化的搜索算法与预训练的世界模型相结合,可以替代高成本的实时LLM推理,为构建高效、低延迟且确定性的AI Agent提供了新的技术路径。这对降低大模型部署成本、提升Agent在关键任务中的可靠性具有重要的工程实践价值。

技术解析

  • 核心架构:GATS采用图增强的树搜索机制,利用UCB1算法进行节点扩展,并通过分层世界模型评估状态价值,从而在无需实时LLM参与的情况下完成路径规划。
  • 分层世界模型:L1层处理精确的符号动作匹配;L2层利用历史执行日志中的统计数据来评估常见动作序列;L3层仅在遇到完全未知的动作时调用LLM进行预测,实现了效率与能力的平衡。
  • 性能基准:在包含分支路径和死胡同的合成任务中,GATS成功率为100%,而LATS为92%,ReAct仅为64%。在涵盖编码、网页导航等12个挑战场景的综合压力测试中,GATS维持100%成功率,LATS降至88.9%,ReAct骤降至23.9%。
  • 资源消耗对比:GATS在规划阶段每任务LLM调用次数为0,产生零方差的可重复计划;相比之下,LATS平均每任务需37次LLM调用,且结果存在随机波动。

行业启示

  • 去LLM化规划趋势:对于结构化或半结构化任务,应优先考虑使用传统搜索算法结合轻量级模型或统计模型进行规划,而非盲目依赖LLM推理,以大幅降低算力开销。
  • 混合智能架构设计:未来的Agent设计可借鉴“分层世界模型”思路,将确定性规则、数据统计与LLM泛化能力分层解耦,在保障核心流程稳定性的同时保留处理长尾问题的能力。
  • 确定性与可解释性优先:在金融、医疗或自动化控制等对稳定性要求极高的领域,采用能产生确定性计划且无随机波动的规划框架(如GATS)比概率性的LLM探索更具落地优势。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Agent Agent LLM 大模型 Research 科学研究