DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Llm Discovery — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-llm-discovery

Llm Discovery

Engine-detecting endpoint model discovery with bundled-catalog enrichment for the DeepSeek Harness LLM seam

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-llm-discovery@0.1.2
READMECompatibilityVersions

Compatibility and provenance

Llm Discovery is published as dsh-llm-discovery and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.1.2stable
9/12/2026
0.1.1stable
8/19/2026
0.1.0stable
8/19/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
95.2 kB
Files
14
Surface
any
License
MIT
Source
npm
GitHub
★ 5
Weekly downloads
70
Last push
9/12/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with a dedicated pet bubble for the current providerWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

dsh-llm-discovery

dsh-llm-discovery 为 DeepSeek Harness 提供端点模型探测。它通常与 dsh-client-ui-settings-discovery 一起安装,让你在 Web 设置页输入一个端点、查看模型列表,再选择需要的模型创建 Provider。

探测只读取端点信息。输入的 API 密钥不会由本插件保存,探测结果也不会自动写入设置。

安装

从 npmjs 安装探测插件和设置页面:

dsh plugin --profile web add dsh-llm-discovery
dsh plugin --profile web add dsh-client-ui-settings-discovery
dsh --profile web --dump-config

输出中应同时出现 llm-discovery 和 ui-settings-discovery。

使用

  1. 启动 Web profile。
  2. 打开「设置」→「模型发现」。
  3. 选择预设,或者填写自定义 baseURL。
  4. 选择端点协议。
  5. 如果端点需要认证,输入 API 密钥。
  6. 点击「探测」。
  7. 检查模型名称、上下文窗口和最大输出。
  8. 选择要使用的模型并点击「采纳为 Provider」。

采纳完成后,到「模型」设置页查看和编辑新 Provider。

支持的端点

端点类型协议地址要求
Ollamaopenai-completions使用 http://127.0.0.1:11434/v1;探测会自动读取 Ollama 原生模型信息
LM Studioopenai-completions通常为 http://127.0.0.1:1234/v1
llama.cppopenai-completions通常为 http://127.0.0.1:8080
LiteLLM / OpenAI 兼容网关openai-completions 或 openai-responses使用供应方提供的模型 API baseURL
Anthropicanthropic-messages使用 Anthropic API baseURL,并提供 API 密钥
Google Geminigoogle-generative-aibaseURL 必须包含版本路径,例如 https://generativelanguage.googleapis.com/v1beta

端点没有提供模型名称或容量时,插件默认会尝试用内置模型目录补全;无法确认的字段会在页面中显示为空。

可选配置

默认配置适合大多数用户。需要调整超时、响应大小或关闭某类探测时,在 profile 的 cordis.patch.yml 中配置:

- id: llm-discovery
  config:
    timeoutMs: 10000
    maxResponseBytes: 4194304
    enrichment: true
    ollamaDefaultContextWindow: 128000
    engines:
      ollama: true
      litellm: true
      openaiModels: true
字段默认值说明
timeoutMs10000单次 HTTP 请求超时,单位毫秒
maxResponseBytes4194304模型列表响应上限;超过后探测失败
enrichmenttrue用内置目录补全端点未披露的信息
ollamaDefaultContextWindow128000Ollama 未返回上下文长度时使用的值
engines.ollamatrue是否探测 Ollama 原生接口
engines.litellmtrue是否探测 LiteLLM 管理接口
engines.openaiModelstrue是否探测 OpenAI、Anthropic 和 Gemini 模型列表

profile patch 会整体替换该插件的 config,因此需要保留你仍想使用的字段。

常见问题

页面中没有「模型发现」

确认安装了 dsh-client-ui-settings-discovery,并使用 Web profile。再用 dsh --profile web --dump-config 检查两个插件是否都已加载。

401 或 403

API 密钥无效或没有列出模型的权限。确认密钥和协议对应同一个端点。

返回“没有模型列表”

该地址可能不是模型 API baseURL,或者服务没有实现模型列表接口。检查供应方文档;必要时在「模型」设置页手工添加模型。

Gemini 探测失败

选择 google-generative-ai,并使用包含 /v1beta 的原生 Gemini baseURL。OpenAI 兼容地址应改选 OpenAI 协议。

Ollama 能探测但采纳后无法对话

Provider 的 baseURL 必须包含 /v1。推荐直接使用页面预设,或照抄上面「支持的端点」表中的地址。

已知限制

  • Anthropic 和 Gemini 每次最多读取 1000 个模型,不继续读取后续分页。
  • 同一端点上的模型必须共用你在页面中选择的协议。
  • 本插件不探测 deepseek-official;该 Provider 使用 Harness 自带配置。

Model Experience

探测结果只显示给配置用户,不会进入模型的 prompt、消息、schema 或工具结果。

KV Cache 影响

无。插件不参与模型请求。