AI search agents don't fail at searching, they fail at asking the right questions when queries get ambiguous
Summary
A new benchmark, DiscoBench, developed by Tencent Hunyuan and Tsinghua University, reveals that AI search agents primarily fail in multi-step research tasks due to their inability to ask for user clarification when queries are ambiguous, rather than issues with the search process itself. This framework, comprising 211 tasks with 463 ambiguous points across eleven knowledge domains, evaluates models on detecting ambiguity, posing targeted follow-up questions, and correcting research paths. Testing eleven recent models, including Doubao Seed 2.0 Pro (43.1% accuracy), Gemini 3.1 Pro (40.8%), and Claude Opus 4.7 (39.8%), showed that even top performers remain below 50% accuracy. Explicitly prompting agents to watch for ambiguity improved detection F1 from 45.3% to 64.9%, but only marginally boosted end-to-end accuracy from 28.6% to 33.7%. Repeated searching without clarification ("SearchHeavyGuess") proved worse than direct guessing, highlighting the critical need for effective user interaction strategies.
Key takeaway
For AI Engineers developing multi-step search agents, you must prioritize robust mechanisms for detecting query ambiguity and generating effective follow-up questions. Your agents should be designed to proactively seek clarification from users rather than repeatedly searching with underspecified queries, as this behavior significantly degrades accuracy. Implement strategies that convert search uncertainty into direct user interaction to prevent error propagation and enhance overall task success.
Key insights
AI search agents fail by not clarifying ambiguous queries, leading to error propagation.
Principles
- Unresolved ambiguity cascades errors.
- More searches don't guarantee accuracy.
- Detection and question quality differ.
Method
DiscoBench evaluates agents via multi-checkpoint tasks, allowing search, clarification, or answer, using an LLM-based user simulator for clues and Tavily for search.
In practice
- Integrate uncertainty-to-interaction mechanisms.
- Prioritize user clarification over repeated searches.
- Develop distinct skills for ambiguity detection and question framing.
Topics
- AI Search Agents
- Query Ambiguity
- DiscoBench Benchmark
- User Clarification
- Multi-hop Reasoning
- Language Model Evaluation
Best for: Research Scientist, AI Architect, NLP Engineer, AI Scientist, Machine Learning Engineer, AI Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by The Decoder.