This repository is for the ICML 2026 paper:
How Far Ahead Do LLMs Plan? Uncovering the Latent Horizon in Chain-of-Thought Reasoning
In this paper, we uncovered a myopic latent planning strength in LLMs' Chain-of-Thought (CoT), through our probing method Tele-Lens. We further underscore the significance of exploiting such CoT dynamics, with our proposed methods for estimation of both CoT uncertainty and necessity.
Our dataset for probing is available at Huggingface, spanning 12 tasks of diverse domains, which we categorize into three types.
- Explicit Compositional Tasks: requiring explicit multi-step procedures to resolve, e.g. algorithmic reasoning
- Implicit Compositional Tasks: requiring multiple reasoning steps but in a more nuanced and implicit manner, e.g. mathematical and logical reasoning
- Semantics & Knowledge Tasks: focusing on semantic understanding and knowledge-based reasoning, e.g. MMLU
Details of the train/dev/test splits and the training process are described in the Huggingface Dataset page.
We provide our In-Domain LLM, available for download at Huggingface.
This model is trained with GRPO upon Qwen2.5-7B-Instruct, which learns task-aware reasoning behaviors. The resulting CoT trajectories are substantially shorter than those from Qwen3 models.
In-Domain LLM should always be used with the following as SYSTEM PROMPT:
You are a helpful assistant. Now the user asks you to solve a reasoning problem. You need to first think about the solving process in the mind and then provide the user with the answer. The thinking process is enclosed within <think> </think> tags, i.e., <think> thinking process here </think> final answer.
The implementation for Tele-Lens adapter is provided at adapter.py.
The adapter takes in hidden states and outputs the predicted logits on the LLM vocabulary (can be the whole vocabulary or a subset).
Please feel free to open an issue for any questions regarding the probing details or results.
@inproceedings{xu2026globalplan,
title={How Far Ahead Do LLMs Plan? Uncovering the Latent Horizon in Chain-of-Thought Reasoning},
author={Liyan Xu and Mo Yu and Fandong Meng and Jie Zhou},
booktitle={Forty-third International Conference on Machine Learning},
year={2026},
url={https://arxiv.org/abs/2602.02103},
}