The GATS framework addresses the high cost and stochastic behavior of LLM-based planning tools like LATS and ReAct by eliminating LLM calls during inference. It combines systematic UCB1-based tree search with a three-layer world model that handles exact symbolic matching, execution log statistics, and LLM predictions only for unknown actions. This approach aims to deliver superior planning performance on synthetic tasks with branching paths and dead-ends while reducing computational overhead.
- GATS removes LLM inference during the planning phase, significantly cutting computational costs.
- A layered world model handles known actions via symbolic matching and logs, reserving LLMs for unknowns.
- UCB1-based tree search provides systematic exploration, reducing the stochastic behavior of prior methods.
- Performance gains are demonstrated on synthetic tasks involving complex branching and dead-ends.
- This architecture offers a deterministic alternative to purely LLM-driven agent planning workflows.