ProAct: Agentic Lookahead in Interactive Environments
Yangbin Yu, Mingyu Yang, Junyou Li, Yiming Gao, Feiyu Liu, Yijun Yang, Zichuan Lin, Jiafei Lyu, Yicheng Liu, Zhicong Lu, Deheng Ye, Jie Jiang
TL;DR
ProAct tackles the challenge of long-horizon planning in interactive environments by splitting lookahead into a grounded supervision phase and an online RL refinement phase. Grounded LookAhead Distillation (GLAD) uses environment-based MCTS to generate future trajectories and compresses them into concise, explicit reasoning chains for training, mitigating inference-time search costs. The Monte-Carlo Critic (MC-Critic) provides low-variance value signals via lightweight Monte Carlo rollouts, enabling stable policy optimization when combined with PPO/GRPO in MC-PPO/MC-GRPO. Experiments on 2048 and Sokoban show a 4B-parameter ProAct model surpassing open-source baselines and rivaling closed-source models, with robust generalization to unseen variants. Overall, ProAct offers a scalable, effective approach to internalizing lookahead and stabilizing multi-turn RL for large language model agents in complex environments.
Abstract
Existing Large Language Model (LLM) agents struggle in interactive environments requiring long-horizon planning, primarily due to compounding errors when simulating future states. To address this, we propose ProAct, a framework that enables agents to internalize accurate lookahead reasoning through a two-stage training paradigm. First, we introduce Grounded LookAhead Distillation (GLAD), where the agent undergoes supervised fine-tuning on trajectories derived from environment-based search. By compressing complex search trees into concise, causal reasoning chains, the agent learns the logic of foresight without the computational overhead of inference-time search. Second, to further refine decision accuracy, we propose the Monte-Carlo Critic (MC-Critic), a plug-and-play auxiliary value estimator designed to enhance policy-gradient algorithms like PPO and GRPO. By leveraging lightweight environment rollouts to calibrate value estimates, MC-Critic provides a low-variance signal that facilitates stable policy optimization without relying on expensive model-based value approximation. Experiments on both stochastic (e.g., 2048) and deterministic (e.g., Sokoban) environments demonstrate that ProAct significantly improves planning accuracy. Notably, a 4B parameter model trained with ProAct outperforms all open-source baselines and rivals state-of-the-art closed-source models, while demonstrating robust generalization to unseen environments. The codes and models are available at https://github.com/GreatX3/ProAct
