Uncertainty-Aware Clarification in LLM Agents with Information Gain

TL;DR

Proposes an information-gain-based clarification framework for LLM agents, improving success rate by 3.7% with 0.3 fewer interaction steps.

cs.AI 🔴 Advanced 2026-06-02 44 views
Mengyi Deng Zhiwei Li Xin Li Tingyu Zhu Ying Zhao Zhijiang Guo Wei Wang
LLM uncertainty information gain clarification policy reinforcement learning

Key Findings

Methodology

This work introduces a goal-oriented clarification framework leveraging Bayesian belief updates. The core is the Information Gain Reward, which quantifies the utility of clarification questions by measuring the posterior belief shift towards the true goal. The clarifier (LLM) is trained with the Decoupled Advantage Policy Optimization (DAPO) algorithm to maximize expected information gain, ensuring that clarification questions effectively reduce uncertainty. Experiments conducted in the τ-Bench environment across five heterogeneous models demonstrate a 3.7% success rate increase and a reduction of 0.3 in average interaction steps. The approach employs a strict user simulator to generate realistic responses, guiding the model to learn targeted, high-value questions.

Key Results

  • Across five models, the method improves success rate by an average of 3.7%, from 14.9% to 17.8%, while reducing average clarification turns from 4.2 to 1.3. Ablation studies show that removing the information gain component or replacing it with a question quality judge decreases performance, confirming the importance of information gain. The training process shows a steady increase in the reward, indicating effective learning of high-value questions. The approach performs well across model scales (8B-671B) and in out-of-distribution tasks, especially in complex scenarios where static information loading underperforms.
  • The models learn to generate questions that maximize the Bayesian belief update, as measured by the pointwise mutual information (PMI). The reward signals guide the model to ask specific, informative questions that significantly reduce uncertainty, leading to faster and more accurate task completion. The strict user simulator ensures that questions are relevant and necessary, avoiding trivial or irrelevant queries. Results demonstrate that the proposed method achieves near state-of-the-art success rates with minimal interaction overhead.

Significance

This research addresses a fundamental challenge in deploying LLM agents in real-world, ambiguous environments. By explicitly modeling and maximizing information gain, the framework enables agents to proactively clarify user intent, significantly improving task success and interaction efficiency. The approach bridges the gap between static prompt engineering and dynamic, goal-oriented dialogue management, offering a scalable solution for complex multi-turn interactions. Its generalizability across model sizes and tasks suggests broad applicability in intelligent assistants, customer service bots, and decision support systems, paving the way for more autonomous and reliable AI systems.

Technical Contribution

The paper introduces a novel combination of Bayesian experimental design and reinforcement learning for multi-turn clarification. The key innovation is the use of pointwise mutual information as a reward proxy for the intractable expected information gain, enabling efficient policy training. The framework employs a decoupled advantage actor-critic (DAPO) algorithm, which stabilizes training and enhances exploration. The strict user simulator ensures high-quality training data, and the approach generalizes across different model scales and tasks. Theoretical analysis confirms that maximizing the reward aligns with goal uncertainty reduction, providing rigorous justification for the method.

Novelty

This work is the first to incorporate Bayesian information gain directly into the training of LLM-based clarification policies, explicitly optimizing for goal uncertainty reduction. Unlike prior static or heuristic-based approaches, it dynamically generates questions that maximize the posterior belief shift, leading to more targeted and effective clarifications. The integration of PMI as a reward proxy and the use of DAPO for policy optimization represent significant advances over existing methods, which often rely on superficial question quality or fixed templates. This approach sets a new standard for goal-oriented multi-turn dialogue systems.

Limitations

  • The approach relies heavily on the accuracy of the belief update mechanism, which depends on the language model's probability estimates. Model biases or calibration issues may affect the quality of generated questions.
  • The strict user simulator, while effective for training, may not fully capture the variability of real user responses, potentially limiting real-world applicability.
  • Computational costs are high due to multiple sampling and belief update steps, posing challenges for large-scale deployment.
  • In highly ambiguous or complex tasks, the current question generation may still fall short of fully resolving uncertainty, necessitating integration with external knowledge bases or multimodal data.

Future Work

Future research will explore integrating multimodal signals (visual, auditory) to enhance question relevance and informativeness. Incorporating human-in-the-loop feedback can refine question quality further. Extending the framework to open-domain, real-world applications and reducing computational overhead are also key directions. Additionally, developing adaptive user simulators that better mimic diverse user behaviors will improve training robustness and real-world performance.

AI Executive Summary

In recent years, large language models (LLMs) have demonstrated remarkable capabilities in multi-turn reasoning and tool invocation, transforming AI applications across domains. However, a persistent challenge remains: user instructions are often underspecified or ambiguous, leading to erroneous actions, fragile execution paths, and task failures. Traditional solutions rely on static clarification prompts or heuristic rules, which lack adaptability and efficiency in complex scenarios.

This paper introduces a novel framework that explicitly models the uncertainty inherent in user instructions. Central to this approach is the concept of information gain, measured via Bayesian belief updates, which quantifies how much a clarification question reduces the model’s uncertainty about the true user goal. The authors design a reward function based on the pointwise mutual information (PMI) between responses and the ground truth, guiding the model to generate questions that maximize goal-related information.

To optimize this process, the authors employ the Decoupled Advantage Policy Optimization (DAPO) algorithm, training the LLM to produce high-value clarification questions. The training process involves a strict user simulator that ensures questions are relevant and informative, avoiding trivial or irrelevant queries. Experiments conducted within the τ-Bench environment across five diverse models demonstrate significant improvements: success rates increase by 3.7%, and average interaction steps decrease by 0.3, with the model asking fewer but more targeted questions.

The results highlight the effectiveness of information-driven clarification in reducing uncertainty efficiently. The approach generalizes well across model sizes and tasks, especially excelling in complex, ambiguous scenarios where static strategies falter. This work advances the state-of-the-art in goal-oriented dialogue, providing a scalable, theoretically grounded method for enhancing AI agent robustness and autonomy. Future directions include multimodal integration, real-user testing, and reducing computational costs, promising broader impact in intelligent systems and human-AI collaboration.

Deep Dive

Abstract

Large Language Model (LLM) agents often operate under underspecified user instructions, where latent uncertainty over user intent leads to erroneous tool actions. To address this challenge, we propose a goal-oriented clarification framework that aligns clarification behavior with ambiguity resolution. Central to our approach is the Information Gain Reward, a metric that quantifies the utility of clarification questions by measuring the Bayesian belief update towards the ground-truth goal induced by the clarification exchange. We train the clarifier (LLM) using this reward to optimize for high information gain, ensuring that clarifications effectively reduce uncertainty and improve task completion within the agent-tool-user environment. We validate our framework within a clarification-enhanced $τ$-Bench environment, conducting cross-agent evaluations across five heterogeneous backbones. Empirical results demonstrate that our method consistently improves the success rate by 3.7\% over the no-clarification baseline, while adding only 0.3 total interaction steps on average.

cs.AI