DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Web Search Zhipu — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
W

dsh-web-search-zhipu

Web Search Zhipu

用于 DeepSeek Harness 网络接口(ctx.web)的 Zhipu Web Search API 搜索提供程序。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:Erin-R-phone/dsh-web-search-zhipu#0a4c67b4bc8eca350ce99a7dd09ddf3ea8b04026
README兼容性版本

兼容性与来源证明

Web Search Zhipu 以 dsh-web-search-zhipu 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/5

版本

0.1.0stable
2026/9/5

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/5
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 search-research 分类下经过校验的插件。

Anysearch Dsh@anysearch/anysearch-dsh适用于 DeepSeek Harness 的 AnySearch 网络搜索和获取提供程序及高级工具Industry Researchdsh-industry-research适用于 DeepSeek Harness 的行业与公司研究领域包:方法论技能、行业链结构模型(industry_map)、通过 ctx.web 进行的公开来源政策/新闻跟踪(industry_track)、公司扫描卡片(company_scan)以及可审计的研究Zoterodsh-zotero让智能体搜索、阅读并引用您的本地 Zotero 文献库:查找论文、浏览笔记和批注、按问题提取证据、打开源文档并生成引文。Browser@anweat/dsh-browserDeepSeek Harness 的自包含浏览器运行时插件(作用域为 @anweat)——将 Playwright(chromium)和 OpenCLI 作为插件本地依赖进行打包(支持全局复用回退),提供 `browser` 服务和交互式浏览器工具。

README

dsh-web-search-zhipu

Zhipu Web Search API search provider for the DeepSeek Harness web seam (ctx.web).

Description

This plugin provides a web search provider for DeepSeek Harness that uses Zhipu AI's Web Search API. It allows the system to perform web searches using Zhipu's search capabilities.

Features

  • Direct integration with Zhipu Web Search API
  • Configurable search engine, result count, and recency filters
  • Secure API key management through DeepSeek credentials service
  • Proper error handling and abort support

Installation

npm install @deepseek-ai/dsh-web-search-zhipu

Usage

import { apply } from '@deepseek-ai/dsh-web-search-zhipu';

// Register the provider
apply(ctx, {
  apiKey: 'your-zhipu-api-key',
  baseURL: 'https://open.bigmodel.cn/api/paas/v4'
});

Configuration

The plugin supports the following configuration options:

  • apiKey: Your Zhipu API key (string)
  • apiKeyEnv: Environment variable name for API key (string, default: "OPEN_BIGMODEL_CN_API_KEY")
  • baseURL: Zhipu API base URL (string, default: "https://open.bigmodel.cn/api/paas/v4")
  • searchEngine: Search engine type (string, default: "search_std")
  • count: Number of results (number, default: 10)
  • recency: Recency filter (string, default: "noLimit")

API Key Setup

You can set up your Zhipu API key in several ways:

  1. Directly in config:

    apply(ctx, {
      apiKey: 'your-api-key-here'
    });
    
  2. Through environment variable:

    apply(ctx, {
      apiKeyEnv: 'ZHIPU_API_KEY'
    });
    
  3. Through DeepSeek credentials service:

    apply(ctx, {
      apiKeyEnv: 'OPEN_BIGMODEL_CN_API_KEY'
    });
    

Search Engines

Available search engines:

  • search_std: Standard search engine (default)
  • search_news: News search
  • search_academic: Academic search
  • search_webpage: Webpage search

Examples

Basic Usage

import { apply } from '@deepseek-ai/dsh-web-search-zhipu';

apply(ctx, {
  apiKey: 'your-api-key',
  searchEngine: 'search_std',
  count: 10,
  recency: 'noLimit'
});

Advanced Configuration

import { apply } from '@deepseek-ai/dsh-web-search-zhipu';

apply(ctx, {
  apiKey: 'your-api-key',
  baseURL: 'https://open.bigmodel.cn/api/paas/v4',
  searchEngine: 'search_news',
  count: 20,
  recency: 'lastMonth'
});

License

MIT License

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

Support

For issues and questions, please open an issue on the GitHub repository.