You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The web_search tool defaults to provider = "bing" (HTML scraping, no API key needed). Research (#2130, #964) shows:
Bing works for simple one-word queries but silently returns empty results for technical/compound queries (e.g. "Claude Code tool architecture agent loop")
DuckDuckGo HTML scraping returns relevant results for the same queries, and already has a Bing fallback when DDG itself returns a bot challenge
web.run (which uses DuckDuckGo) is the more reliable path today
Proposal
Consider changing the default SearchProvider from Bing to DuckDuckGo in crates/tui/src/config.rs (line 608: #[default] Bing → #[default] DuckDuckGo).
Trade-offs
Bing (current default)
DuckDuckGo (proposed)
Reliability
Empty results for technical queries
Good results; falls back to Bing on bot challenge
Privacy
Microsoft tracking
Privacy-respecting
No API key
Yes
Yes
Regional
Blocked in China
Blocked in China
Latency
~300ms
~800ms
For users in mainland China, neither Bing HTML scraping nor DuckDuckGo works — they need Tavily or Bocha API keys (#1681). So the default change doesn't hurt the China use case (it's already broken either way).
Context
The
web_searchtool defaults toprovider = "bing"(HTML scraping, no API key needed). Research (#2130, #964) shows:web.run(which uses DuckDuckGo) is the more reliable path todayProposal
Consider changing the default
SearchProviderfromBingtoDuckDuckGoincrates/tui/src/config.rs(line 608:#[default] Bing→#[default] DuckDuckGo).Trade-offs
For users in mainland China, neither Bing HTML scraping nor DuckDuckGo works — they need Tavily or Bocha API keys (#1681). So the default change doesn't hurt the China use case (it's already broken either way).
Decision needed
codewhale doctor?Related