paper-with-me

홈 › Papers

WebOperator: Action-Aware Tree Search for Autonomous Agents in Web Environment

2025-12-14 · Mahir Labib Dihan, Tanzima Hashem, Mohammed Eunus Ali, Md Rizwan Parvez arxiv

LLM-based agents often operate in a greedy, step-by-step manner, selecting actions solely based on the current observation without considering long-term consequences or alternative paths. This lack of foresight is particularly problematic in web environments, which are only partially observable-limited to browser-visible content (e.g., DOM and UI elements)-where a single misstep often requires complex and brittle navigation to undo. Without an explicit backtracking mechanism, agents struggle to correct errors or systematically explore alternative paths. Tree-search methods provide a principled framework for such structured exploration, but existing approaches lack mechanisms for safe backtracking, making them prone to unintended side effects. They also assume that all actions are reversible, ignoring the presence of irreversible actions-limitations that reduce their effectiveness in realistic web tasks. To address these challenges, we introduce WebOperator, a tree-search framework that enables reliable backtracking and strategic exploration. Our method incorporates a best-first search strategy that ranks actions by both reward estimates and safety considerations, along with a robust backtracking mechanism that verifies the feasibility of previously visited paths before replaying them, preventing unintended side effects. To further guide exploration, WebOperator generates action candidates from multiple, varied reasoning contexts to ensure diverse and robust exploration, and subsequently curates a high-quality action set by filtering out invalid actions pre-execution and merging semantically equivalent ones. Experimental results on WebArena and WebVoyager demonstrate the effectiveness of WebOperator. On WebArena, WebOperator achieves a state-of-the-art 54.6% success rate with gpt-4o, underscoring the critical advantage of integrating strategic foresight with safe execution.

📄 PDF Abstract BibTeX arXiv:2512.12692

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

A Linear Programming Approach for Resource-Aware Information-Theoretic Tree Abstractions

2022-08-08 · Daniel T. Larsson, Dipankar Maity, Panagiotis Tsiotras

In this chapter, an integer linear programming formulation for the problem of obtaining task-relevant, multi-resolution, environment abstractions for resource-constrained autonomous agents is presented. The formulation l…

Cost Aware Asynchronous Multi-Agent Active Search

2022-10-05 · Arundhati Banerjee, Ramina Ghods, Jeff Schneider

Multi-agent active search requires autonomous agents to choose sensing actions that efficiently locate targets. In a realistic setting, agents also must consider the costs that their decisions incur. Previously proposed …

Decision MakingThompson Sampling

Cost-Aware Diffusion Active Search

2026-02-23 · Arundhati Banerjee, Jeff Schneider arxiv

Active search for recovering objects of interest through online, adaptive decision making with autonomous agents requires trading off exploration of unknown environments with exploitation of prior observations in the sea…

Reinforcement LearningDecision Making

Toward Generalist Autonomous Research via Hypothesis-Tree Refinement

2026-06-10 · Jiajie Jin, Yuyang Hu, Kai Qiu, Qi Dai 외 arxiv

Scientific progress depends on a repeated loop of exploration, experimentation, and abstraction. Researchers test candidate directions, interpret the evidence, and carry the resulting lessons into later attempts. We stud…

Plan-MCTS: Plan Exploration for Action Exploitation in Web Navigation

2026-02-15 · Weiming Zhang, Jihong Wang, Jiamu Zhou, Qingyao Li 외 arxiv

Large Language Models (LLMs) have empowered autonomous agents to handle complex web navigation tasks. While recent studies integrate tree search to enhance long-horizon reasoning, applying these algorithms in web navigat…