AI News

A new benchmark from Tencent Hunyuan and Tsinghua University argues that today’s AI search agents are not mainly held back by retrieval quality or tool use. The bigger failure point, according to the researchers’ reported results, is that models often do not stop to ask a clarifying question when a user request is vague, underspecified, or wrong.

That matters because the industry is moving quickly to package large models as research assistants, browser agents, and answer engines. If the benchmark holds up, it suggests a practical design problem for teams building AI search products: more searches and longer reasoning chains do not necessarily improve outcomes when the system never confirms what the user actually meant. In some cases, the researchers say, repeated searching performs worse than simply making a guess.

What DiscoBench is trying to measure

The new benchmark, called DiscoBench, is designed to test whether a model can detect ambiguity during multi-step information seeking, ask the user a useful follow-up question, and then recover the right research path. As described by The Decoder, the dataset includes 211 tasks with 463 ambiguous points spread across eleven domains, including sports, film, music, science, politics, and video games.

The researchers frame this as a gap in existing agent evaluation. Benchmarks such as GAIA and BrowseComp generally assume the user query is already complete and precise. DiscoBench instead focuses on a common production scenario: a user asks for something that could refer to multiple entities, different time periods, unclear ranking criteria, or even a false factual premise. In that setting, a model can execute a clean search workflow and still head in the wrong direction from the first decision.

According to the reported methodology, each task is broken into checkpoints where the agent can keep searching, ask for clarification, or answer. The benchmark uses Tavily for search and a Gemini 3 Flash-based user simulator that returns predefined clues when the agent asks a helpful follow-up question. The dataset is mostly in Chinese, which the researchers say reflects common patterns on the Chinese-language web.

That language and tooling context is important for interpretation. DiscoBench is not a universal measure of all search tasks on all web ecosystems, and the use of an LLM-based simulator means the interaction loop is structured rather than fully open-ended. Still, the benchmark is notable because it isolates a product behavior that many user-facing AI systems struggle with: knowing when not to proceed.

Reported results show a clarification gap, not a search gap

The headline result is modest absolute performance. The Decoder reports that among eleven recently released models, the best end-to-end score without an explicit ambiguity hint was 43.1 percent from Doubao Seed 2.0 Pro. Gemini 3.1 Pro Preview followed at 40.8 percent, with Claude Opus 4.7 at 39.8 percent.

Those numbers are low enough to make the broader point hard to ignore. Even strong frontier models appear to struggle once ambiguity is introduced into a chained search task. The benchmark authors argue that the main issue is not that models cannot search, but that they assume too much and ask too little.

The behavior analysis cited by The Decoder is especially revealing. Systems that searched and then asked a follow-up question reportedly achieved a 93.4 percent success rate. Models that guessed directly reached 56.5 percent. Models that searched repeatedly but still failed to ask, labeled “SearchHeavyGuess,” fell to 51.9 percent. In the researchers’ interpretation, that pattern suggests some models are effectively sensing uncertainty but not converting it into a user interaction.

This helps explain why additional tool use does not automatically translate into better outcomes. A model can perform many searches, inspect many pages, and still remain anchored to the wrong interpretation of the original prompt. In practical terms, builders cannot treat search depth as a substitute for clarification behavior.

Why the benchmark matters for products shipping now

The timing matters because AI search is moving beyond demos into commercial workflows. Teams are shipping research copilots, customer support assistants, and browser automation products that increasingly depend on multi-step retrieval. For those systems, DiscoBench points to a failure mode that is easy to miss in conventional evaluation: the model looks active and competent while pursuing the wrong objective.

That has direct implications for enterprise AI deployments. In internal knowledge systems, ambiguity shows up constantly in project names, document versions, customer names, policy references, and date ranges. In external search products, the issue appears in comparisons, rankings, and brand or entity disambiguation. If a system treats every prompt as complete, it may produce confident but irrelevant work while still appearing highly responsive.

For builders of AI agents, the benchmark suggests a design shift. Clarification should not be treated as a fallback for obvious confusion. It may need to become a first-class capability with explicit thresholds, state tracking, and product UX that makes asking follow-up questions feel natural rather than obstructive. The data cited by The Decoder also implies that prompt-level reminders can help ambiguity detection, but not enough to fix end-to-end task completion on their own.

That distinction matters for roadmap planning. Better system prompts may increase the frequency of questions, but a useful deployed agent also needs to ask the right question at the right moment and then incorporate the answer into the rest of the workflow. Detection, phrasing, and follow-through appear to be separate capabilities.

Evidence, caveats, and how much to trust the claims

The strongest claims here come from a benchmark study described by The Decoder rather than a peer-reviewed publication included in the source set. That does not invalidate the findings, but it does mean readers should treat the performance rankings and behavioral conclusions as researcher-reported until the underlying paper, data, and evaluation details are more broadly scrutinized.

Several limitations stand out from the available evidence. First, DiscoBench is mostly written in Chinese, so results may not transfer cleanly to English-language search behavior or enterprise document workflows. Second, the benchmark relies on Tavily and a simulated user built with Gemini 3 Flash. That setup is reasonable for controlled testing, but it is not the same as measuring full production systems with real users, different search stacks, or custom orchestration.

Third, the model list and versions are as reported by The Decoder, including Claude Opus 4.7, GPT 5.4, Gemini 3.1 Pro Preview, DeepSeek V4 Pro, GLM 5.1, Qwen3.6 Max, Kimi K2.6, MiniMax M2.7, MiMo v2.5 Pro, Hunyuan 3.0 Preview, and Doubao Seed 2.0 Pro. Some of those naming conventions may reflect the benchmark authors’ internal or regional labeling, and the source material does not provide a full model card-style accounting of configuration choices.

Still, some patterns look robust even with those caveats. The authors report that without search access, performance collapses, which supports the idea that the tasks require live retrieval rather than memorized knowledge. They also report that when ambiguity is removed from the queries, accuracy rises by roughly 26.8 to 40.2 points depending on model. If replicated, that is a strong signal that ambiguity handling itself is the bottleneck.

The article also situates DiscoBench within a broader line of criticism around AI search reliability. The Decoder cites LiveBrowseComp as evidence that models can over-rely on prior knowledge and cites Halluhard for hallucination issues in source verification. Those are adjacent studies, not direct validations of DiscoBench, but they reinforce the view that browsing competence remains fragile.

Competitive signals for Anthropic, Perplexity, and search-agent builders

The findings arrive as vendors push different approaches to AI-assisted research. Anthropic has said Claude Opus 4.8 is tuned to flag uncertainty more often, according to The Decoder’s summary of the update. If that claim holds in independent testing, it would line up closely with the weakness DiscoBench is trying to expose.

Perplexity, meanwhile, has been exploring Search as Code, an approach that lets models express search workflows as Python programs rather than relying only on prebuilt search API patterns. That may help with planning and verification, but DiscoBench suggests a separate question remains unresolved: can the system recognize when the missing information is not on the web at all, but still in the user’s head?

For teams evaluating AI agents, this creates a more nuanced procurement checklist. Comparing benchmark scores on search-heavy tasks is no longer enough. Buyers may need to test whether a product can pause, identify the ambiguity type, ask a compact clarifying question, and resume the task without resetting context. In regulated or high-stakes domains, that capability may be more important than raw retrieval speed.

What to watch next

The next signal to watch is whether Tencent Hunyuan and Tsinghua University publish broader documentation, code, or public examples for DiscoBench. Independent replication will matter, especially across English-language tasks and with real user studies.

It will also be worth watching whether model providers start reporting clarification metrics alongside retrieval and reasoning benchmarks. A useful standard might include ambiguity detection, question quality, recovery rate after clarification, and failure modes by domain.

On the product side, look for changes in AI agent interfaces. If vendors begin making clarification a visible, intentional part of the user experience rather than an occasional interruption, that would suggest the market is taking this category of failure seriously.

Finally, keep an eye on whether systems like Claude Opus 4.8, Gemini 3.1 Pro, or GPT 5.4 show measurable gains on ambiguity-heavy tasks in independent testing. The competitive edge in AI search may increasingly come from restraint and dialogue, not just from more tools.

Creati.ai perspective

DiscoBench is a useful reminder that many AI product failures start before retrieval, not after it. Teams often optimize for better search connectors, bigger context windows, and more elaborate agent loops. But if the model accepts an ambiguous brief and runs with it, the whole stack can produce polished irrelevance.

For builders, the practical takeaway is simple: treat clarification as core infrastructure. The winning systems in AI search may be the ones that know when to stop, ask one sharp question, and only then continue. That is less flashy than autonomous browsing, but for enterprise AI and user trust, it is probably the more important capability.

Featured
AdsCreator.com
AdsCreator.com
Generate polished, on‑brand ad creatives from any website URL instantly for Meta, Google, and Stories.
AirMusic
AirMusic
AirMusic.ai generates high-quality AI music tracks from text prompts with style, mood customization, and stems export.
Seedance 2.0 Video AI
Seedance 2.0 Video AI
Generate cinematic 1080p videos from prompts, images, and reference clips with synchronized audio.
KiloClaw
KiloClaw
Hosted OpenClaw agent: one-click deploy, 500+ models, secure infrastructure, and automated agent management for teams and developers.
Atoms
Atoms
AI-driven platform that builds full‑stack apps and websites in minutes using multi‑agent automation, no coding required.
VoxDeck
VoxDeck
Next-gen AI presentation maker,Turn your ideas & docs into attention-grabbing slides with AI.
Refly.ai
Refly.ai
Refly.AI empowers non-technical creators to automate workflows using natural language and a visual canvas.
Skywork.ai
Skywork.ai
Skywork AI is an innovative tool to enhance productivity using AI.
Pippit
Pippit
Elevate your content creation with Pippit's powerful AI tools!
Diagrimo
Diagrimo
Diagrimo transforms text into customizable AI-generated diagrams and visuals instantly.
BGRemover
BGRemover
Easily remove image backgrounds online with SharkFoto BGRemover.
SuperMaker AI Video Generator
SuperMaker AI Video Generator
Create stunning videos, music, and images effortlessly with SuperMaker.
Elser AI
Elser AI
All-in-one AI video creation studio that turns any text and images into full videos up to 30 minutes.
Qoder
Qoder
Qoder is an agentic coding platform for real software, Free to use the best model in preview.
FineVoice
FineVoice
Clone, Design, and Create Expressive AI Voices in Seconds, with Perfect Sound Effects and Music.
Flowith
Flowith
Flowith is a canvas-based agentic workspace which offers free 🍌Nano Banana Pro and other effective models...
FixArt AI
FixArt AI
FixArt AI offers free, unrestricted AI tools for image and video generation without sign-up.
whatslove.ai
whatslove.ai
AI dating coach that customizes advice, conversation starters and date ideas tailored to your personality.
Funy AI
Funy AI
AI bikini & kiss videos from images or text. Try the AI Clothes Changer & Image Generator!
Media.io Free AI Image Generator
Media.io Free AI Image Generator
Create AI visuals with Media.io from text prompts or reference images for social media, marketing, ecommerce, and more.
kinovi - Seedance 2.0 - Real Man AI Video
kinovi - Seedance 2.0 - Real Man AI Video
Free AI video generator with realistic human output, no watermark, and full commercial use rights.
Flaq AI Media API
Flaq AI Media API
Flaq AI is a unified AI media API platform for generating images, videos, and LLM-powered workflows with stable models
Paper Banana
Paper Banana
AI-powered tool to convert academic text into publication-ready methodological diagrams and precise statistical plots instantly.
MusicGPT
MusicGPT
AI music platform for generating songs, sound effects, vocals, and audio edits from simple prompts.
Gemini Omni - Video Generator
Gemini Omni - Video Generator
AI video creation platform for conversational editing, multimodal references, and coherent short-form generation.
Scavio AI
Scavio AI
Real-time multi-platform search API that helps AI agents fetch structured web, shopping, video, and social data.
Imagvio AI
Imagvio AI
AI-powered image and video creation platform with precise editing, generation, and consistency-focused creative workflows.
SharkFoto
SharkFoto
SharkFoto is an all-in-one AI-powered platform for creating and editing videos, images, and music efficiently.
Coffee Chats AI
Coffee Chats AI
AI-matched coffee chat automation for communities, teams, mentorship, and alumni networking.
happy horse AI
happy horse AI
Open-source AI video generator that creates synchronized video and audio from text or images.
Questie AI - Game Companion
Questie AI - Game Companion
Real-time AI gaming companion that watches your screen, chats by voice, and coaches gameplay live.
APIMaster
APIMaster
Real LLMs, verified by fingerprint. One API, up to 70% off official pricing.
StitchPilot.ai
StitchPilot.ai
Browser-based AI embroidery tool for converting images, previewing stitch files, and inspecting machine formats.
paperclaw
paperclaw
AI workspace that generates publication-ready scientific figures, diagrams, posters, and editable SVGs in minutes.
Mubert AI
Mubert AI
Mubert is an AI music platform that generates, extends, remixes, and vocalizes royalty-free tracks in seconds.
SkyGen Plus
SkyGen Plus
A multi-model AI creation platform for generating images, videos, and music with one streamlined workflow.
Iara Chat
Iara Chat
Iara Chat: An AI-powered productivity and communication assistant.
OnlyDoc Summarizer
OnlyDoc Summarizer
OnlyDoc's free PDF summarizer reads through a PDF and pulls out the key points in a clean, structured summary
Couple AI - AI Couple Photo Maker
Couple AI - AI Couple Photo Maker
Create realistic AI couple portraits from selfies with themed styles, fast generation, and private HD downloads.
CreateMemorial
CreateMemorial
CreateMemorial helps families build lasting online memorial websites and funeral slideshow videos to honor loved ones.
HappyHorseAIStudio
HappyHorseAIStudio
Browser-based AI video generator for text, images, references, and video editing.
AI Pet Video Generator
AI Pet Video Generator
Create viral, shareable pet videos from photos using AI-driven templates and instant HD exports for social platforms.
WriteHybrid AI Humanizer
WriteHybrid AI Humanizer
WriteHybrid is an AI humanizer and detector that rewrites text naturally while helping users bypass AI detection.
AdMakeAI
AdMakeAI
AI ad generator that creates high-performing static and UGC ads for brands in seconds.
Ampere.SH
Ampere.SH
Free managed OpenClaw hosting. Deploy AI agents in 60 seconds with $500 Claude credits.
AnimeShorts
AnimeShorts
Create stunning anime shorts effortlessly with cutting-edge AI technology.
AIsa
AIsa
AIsa gives AI agents one gateway to models, skills, APIs, and payments with OpenAI-compatible access.
AI Gift finder by wishwave
AI Gift finder by wishwave
AI gift finder that builds shareable wishlists from real products across hundreds of popular stores.
Claude API
Claude API
Claude API for Everyone
InstantChapters
InstantChapters
Create Youtube Chapters with one click and increase watch time and video SEO thanks to keyword optimized timestamps.
AI Clothes Changer by SharkFoto
AI Clothes Changer by SharkFoto
AI Clothes Changer by SharkFoto instantly lets you virtually try on outfits with realistic fit, texture, and lighting.
Gptimg2 AI
Gptimg2 AI
All-in-one AI studio for creating images and videos from text, images, or references.
VidMage
VidMage
Realistic AI face swaps for photos, videos, and GIFs, instantly and effortlessly.
NerdyTips
NerdyTips
AI-powered football predictions platform delivering data-driven match tips across global leagues.
insmelo AI Music Generator
insmelo AI Music Generator
AI-driven music generator that turns prompts, lyrics, or uploads into polished, royalty-free songs in about a minute.
WhatsApp AI Sales
WhatsApp AI Sales
WABot is a WhatsApp AI sales copilot that delivers real-time scripts, translations, and intent detection.
AI Video API: Seedance 2.0 Here
AI Video API: Seedance 2.0 Here
Unified AI video API offering top-generation models through one key at lower cost.
Kirkify
Kirkify
Kirkify AI instantly creates viral face swap memes with signature neon-glitch aesthetics for meme creators.
GPT Image 2 Online
GPT Image 2 Online
An AI image generator and editor with photorealistic results, accurate text rendering, and strong prompt following.
Lyria3 AI
Lyria3 AI
AI music generator that creates high-fidelity, fully produced songs from text prompts, lyrics, and styles instantly.
Text to Music
Text to Music
Turn text or lyrics into full, studio-quality songs with AI-generated vocals, instruments, and multi-track exports.
AIToHuman
AIToHuman
Free AI text humanizer that rewrites AI-generated content into natural, human-like writing instantly.
BeatMV
BeatMV
Web-based AI platform that turns songs into cinematic music videos and creates music with AI.
EaseMate AI
EaseMate AI
All-in-one AI assistant for chat, writing, study help, image creation, and video generation in one browser-based platform.
HookTide
HookTide
AI-powered LinkedIn growth platform that learns your voice to create content, engage, and analyze performance.
Anijam AI
Anijam AI
Anijam is an AI-native animation platform that turns ideas into polished stories with agentic video creation.
WhatsApp Warmup Tool
WhatsApp Warmup Tool
AI-powered WhatsApp warmup tool automates bulk messaging while preventing account bans.
Create WhatsApp Link
Create WhatsApp Link
Free WhatsApp link and QR generator with analytics, branded links, routing, and multi-agent chat features.
Tome AI PPT
Tome AI PPT
AI-powered presentation maker that generates, beautifies, and exports professional slide decks in minutes.
wan 2.7-image
wan 2.7-image
A controllable AI image generator for precise faces, palettes, text, and visual continuity.
Image3D - AI 2D to 3D Model Generator (GLB, OBJ, STL, PLY)
Image3D - AI 2D to 3D Model Generator (GLB, OBJ, STL, PLY)
Browser-based AI that turns any 2D image or text prompt into a 3D model in 30 seconds. Export GLB, OBJ, STL, PLY—free
Gobii
Gobii
Gobii lets teams create 24/7 autonomous digital workers to automate web research and routine tasks.
UNI-1 AI
UNI-1 AI
UNI-1 is a unified image generation model combining visual reasoning with high-fidelity image synthesis.
GLM Image
GLM Image
GLM Image combines hybrid AR and diffusion models to generate high-fidelity AI images with exceptional text rendering.
GenPPT.AI
GenPPT.AI
AI-driven PPT maker that creates, beautifies, and exports professional PowerPoint presentations with speaker notes and charts in minutes.
Seedance 20 Video
Seedance 20 Video
Seedance 2 is a multimodal AI video generator delivering consistent characters, multi-shot storytelling, and native audio at 2K.
Hitem3D
Hitem3D
Hitem3D converts a single image into high-resolution, production-ready 3D models using AI.
Wan 2.7
Wan 2.7
Professional-grade AI video model with precise motion control and multi-view consistency.
AI FIRST
AI FIRST
Conversational AI assistant automating research, browser tasks, web scraping, and file management through natural language.
Manga Translator AI
Manga Translator AI
AI Manga Translator instantly translates manga images into multiple languages online.
TextToHuman
TextToHuman
Free AI humanizer that instantly rewrites AI text into natural, human-like writing. No signup required.
Video Sora 2
Video Sora 2
Sora 2 AI turns text or images into short, physics-accurate social and eCommerce videos in minutes.
Palix AI
Palix AI
All-in-one AI platform for creators to generate images, videos, and music with unified credits.
Remy - Newsletter Summarizer
Remy - Newsletter Summarizer
Remy automates newsletter management by summarizing emails into digestible insights.
Veemo - AI Video Generator
Veemo - AI Video Generator
Veemo AI is an all-in-one platform that quickly generates high-quality videos and images from text or images.
Image 2 AI
Image 2 AI
OpenAI-powered image generation and editing tool for photorealistic visuals, accurate text rendering, and UI mockups.

DiscoBench finds AI search agents break down on ambiguous queries because they don’t ask users to clarify

A new benchmark from Tencent Hunyuan and Tsinghua University suggests AI search agents fail on ambiguity, not search itself, limiting real-world reliability.