h-k-c/bing-web-search0

bing-web-search

DSH(DeepSeek Harness)网页搜索插件:注册 tavily-bing provider,有 TAVILY_API_KEY 走 Tavily,没有就自动退回免费无 key 的 Bing,搜索永远可用

AI Analysis

核心用途是为 DSH 提供稳定且无需强制配置 Key 的网页搜索能力。适合需要联网搜索功能,但希望在没有 Tavily Key 时也能无缝使用的用户。

Package
bing-web-search
Version
1.0.0
License
MIT
Last updated
Aug 15, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:h-k-c/bing-web-search

配置 Token(可选)

不配也能用(自动走 Bing 免费搜索);想让结果更准、带摘要答案,配一个 Tavily key:

export TAVILY_API_KEY=xxx

也可以写进 ~/.dsh/.credentials.yaml(键名 TAVILY_API_KEY),效果一样。

可选配置

环境变量默认说明
SEARCH_MAX_RESULTS8每次返回的条数(1–10)
SEARCH_TAVILY_TIMEOUT_MS15000Tavily 请求超时(毫秒)
SEARCH_BING_TIMEOUT_MS20000Bing 请求超时(毫秒)

也可以写在插件 config 里(maxResults / tavilyTimeoutMs / bingTimeoutMs),环境变量优先。