证据快照复核于 2026-09-10GitHub 数据核对日期: 2026-08-21
证据已验证Plugin Bundle模型与路由Web Profile

DSH Gateway Provider

在 DeepSeek Harness 中使用 NewAPI、LiteLLM、Higress 或其他 OpenAI 兼容网关后的模型。

快速了解

它能做什么

在 DeepSeek Harness 中使用 NewAPI、LiteLLM、Higress 或其他 OpenAI 兼容网关后的模型。

本站提供的是中文说明,不代表该项目或 Plugin 自身提供中文界面;语言支持请以上游文档为准。

使用场景
模型与路由模型路由配置集成
适配技术
deepseek-harnessnewapilitellmhigressopenai-compatible-gateways
兼容性

Web Profile
@deepseek-ai/cordis ^4.0.2; DSH peers ^0.1.2-rc.1

可信度与状态

证据已验证
核对日期 2026/9/10 UTC 14:08

有代码证据的贡献

它为 DSH 增加什么

Gateway Models 设置页

在 Web profile 中提供网关配置、连接测试、模型同步和逐模型覆盖设置。

机制证据

选择前先看

这个 DeepSeek Harness 插件包会添加基于网关的 provider 路由。它可从已配置网关发现模型、使用 models.dev 补充模型参数,并通过 pi-ai 按模型选择 OpenAI、Anthropic 或 Gemini 协议。

适合谁

通过兼容网关访问大模型,并希望在 DSH 模型选择器中使用这些模型的 DeepSeek Harness 用户。

常见任务

  • 添加 NewAPI、LiteLLM、Higress 或自定义 OpenAI 兼容网关。
  • 将网关的模型目录同步到 DSH。
  • 覆盖单个模型的协议、上下文窗口、输出上限、推理等级或可见性。
  • 将多个网关配置为独立的 DSH 路由。

权限与数据

使用网关 API 密钥,并向已配置网关和 models.dev 发起网络请求。

权限
  • 访问保存在 DSH 凭据或启动环境中的网关 API 密钥。
  • 访问已配置网关端点以及启用参数补充时的 models.dev 网络服务。
数据处理
  • 读取网关模型列表,并将所选模型请求经已配置网关发送。
  • README 声明密钥保存在 DSH 凭据或环境变量中,而不是设置 YAML。
外部服务
  • 已配置的 NewAPI、LiteLLM、Higress 或其他兼容网关。
  • 启用参数补充时使用 models.dev。
凭据
  • 需要网关 API 密钥,例如 NEWAPI_API_KEY。

局限

  • 需要 DeepSeek Harness;设置界面特别需要 web profile。
  • 网关行为、可用模型和请求兼容性取决于所配置的网关及模型。
  • 当 models.dev 未匹配模型时,可能需要手动覆盖模型参数。
  • 所提供证据未审计 npm tarball 的内容。

DSHub 已核对

  • 已验证不可变 Git 源和 DSH 插件包结构。
  • 已验证包声明了用于添加 dsh-gateway-provider 插件行的 bundle patch。
  • 已验证包声明了 DeepSeek Harness peer dependencies 和 MIT 许可。

DSHub 未核对

  • 未实际执行安装或运行。
  • 未独立验证真实网关连接、模型发现和协议行为。
  • 未审计 npm tarball 内容。

固定版本安装

安装 DSH Gateway Provider

这个Plugin Bundle没有 DSH Plugin 安装操作,请根据源码文档使用真实交付方式。

访问源码项目

维护者原文

项目 README

查看 commit dcff90c 对应的 README
维护者编写的上游内容原文于 2026/9/10README.md 获取,正文和仓库相对媒体固定到 commit dcff90cc850a,内容哈希为 fedb0d7ea299。以下是未经 DSHub 翻译的上游原文,语言可能与当前页面不同;第三方托管的 badge 可能独立更新。

dsh-gateway-provider

gitleaks

中文文档:docs/README.zh.md

Use all the models behind your LLM gateway — newapi, LiteLLM, Higress, or any OpenAI-compatible endpoint — directly in DeepSeek Harness.

Install the plugin, paste your API key, and every gateway model shows up in dsh's model picker with its real parameters (context window, output cap, reasoning support) fetched from models.dev. Requests go out over each model's own native protocol — OpenAI, Anthropic, or Gemini — so tool calls and streaming behave the way that model's maker intended.

Why this exists

dsh ships one adapter per official provider. If your models live behind a gateway, the manual alternative is a hand-maintained static model list with guessed context windows and output caps. This plugin mounts the gateway itself instead:

  • Nothing to maintain by hand — the model list is read from the gateway (GET /v1/models, with a management-API fallback for newapi); add a model on the gateway side and it appears in dsh, no re-deploy.
  • Real numbers, not guesses — models.dev data fills context window, output cap, reasoning levels, release date; config defaults only fill gaps.
  • Every wire format, one plugin — each model routes over its own protocol (OpenAI chat completions / OpenAI responses / Anthropic messages / Gemini), handled by the same pi-ai SDK the official dsh adapter uses.
  • Multiple gateways at once — a default newapi route plus one gateway:<id> route per extra gateway, each with its own cache and key.
  • A settings page instead of YAMLSettings → Gateway Models: add gateways from templates (NewAPI / LiteLLM / Higress / OpenAI-compatible / fully custom), test connections, sync models, hide or override any model, add custom models.

Requirements

  • DeepSeek Harness (dsh) with a web profile (the settings page is a web-UI extension; the provider itself works in any profile).
  • A gateway API key (e.g. a newapi token).

Install

# 1. Install the plugin (dsh plugin add runs pnpm add under the hood)
dsh plugin --profile web add dsh-gateway-provider

# 2. Store your key — pick ONE of:
#    a) the dsh credentials file (recommended; created with mode 0600, hot-reloaded)
echo "NEWAPI_API_KEY: sk-REPLACE_WITH_YOUR_KEY" >> ~/.dsh/.credentials.yaml
#    b) or export it in the shell you launch dsh from:
#       export NEWAPI_API_KEY=sk-REPLACE_WITH_YOUR_KEY

# 3. Restart and open the settings page
dsh --profile web
# → Settings → Gateway Models

Expected result: the model picker gains a "NewAPI" route listing your gateway's chat models, newest first. Click Test on the gateway card — it should answer ✓ Connected — N models. Not using the public newapi cloud? Set Base URL on the card (or baseURL in config) to your own gateway address first.

Daily use

Everything lives in Settings → Gateway Models:

  • Add more gateways — "Add Gateway", pick a template (LiteLLM, Higress, OpenAI-compatible, or fully custom with per-protocol URLs), point it at the base URL, name its key env var, Test, Sync. Each gateway becomes its own route in the picker.
  • Tame the model list — non-chat models (image / speech / embedding / rerank …) are excluded by default regexes; hide or rename any model; add a custom model by hand if the gateway hides it; per-model protocol, context window, output cap, and reasoning levels are all editable.
  • Keys live in dsh's credential store — the settings page shows a badge (✓ Key set · NEWAPI_API_KEY / ⚠ No key set) and can write the key there for you.

Configuration reference

Optional — everything below has a working default. Config lives in the llm-newapi: section of ~/.dsh/settings.yaml (the settings page edits the same keys). The frequently used ones:

Key Default Meaning
baseURL https://api.newapi.ai Your gateway's base URL. Env fallbacks: NEWAPI_BASE_URL, NEWAPI_API_URL.
apiKeyEnv NEWAPI_API_KEY Which env/credential variable holds the key.
label NewAPI Route label shown in the picker.
flavor newapi Template label only (newapi / litellm / higress / openai-compatible / custom).
gateways Array of extra gateways: { id, baseURL, apiKeyEnv, label, … }, each becoming a gateway:<id> route.
models Per-model overrides: { id, name, disabled, protocol, contextWindow, maxTokens, reasoningLevels }.
useModelsDev / modelsUrl true / models.dev Parameter enrichment source (supports file: URLs for offline).
excludePatterns image/speech/… Regex list of model ids to keep out of the picker (matched case-insensitively).
sortModelsByRelease true Newest models first.
catalogMode auto v1 (/v1/models only) / management (newapi user API) / auto.
endpointPriority responses → anthropic → openai → gemini Which protocol to prefer when a model supports several.
openaiURL / responsesURL / anthropicURL Fully-custom gateways only: per-protocol endpoint URLs; unset = that protocol off.
maxTokens / defaultContextWindow 32768 / 128000 Fallbacks when models.dev has no data.
streamIdleTimeoutMs 600000 Idle timeout while streaming.
headers Extra HTTP headers sent to the gateway.

Troubleshooting

Symptom Cause → fix
Picker route exists but zero models The plugin can't read your model list. Check the gateway base URL; try catalogMode: "management" for newapi gateways that restrict /v1/models.
401 / auth errors on every request Key missing or wrong: check the badge in Settings → Gateway Models, or NEWAPI_API_KEY in ~/.dsh/.credentials.yaml.
A model's context window looks wrong models.dev had no match. Edit the model on the settings page (or a models: override).
Wrong format answers / tool calls flaky for one model That model is routed over a protocol it handles poorly. Pin protocol on the model (openai, openai-response, anthropic, gemini).
Custom gateway with separate endpoints Use flavor: "custom" and set openaiURL / responsesURL / anthropicURL explicitly.

How it works (one minute version)

At startup the plugin registers one provider route per gateway, pulls the model list from the gateway, and fuzzy-matches each model id against models.dev to fill in real parameters. When you pick a model, dsh's request is translated to the pi-ai SDK's format and sent over that model's native protocol; the streamed reply is translated back into dsh chunks. Catalogs are cached (30 min by default) per gateway. No hand-written protocol code — the bridge is lifted from the official dsh-llm-pi-ai adapter.

Development

git clone https://github.com/Luck9Star/dsh-gateway-provider
cd dsh-gateway-provider
pnpm install               # pi-ai (pinned) + @deepseek-ai/* profile symlinks, via the prepare hook
pnpm run test:client       # settings-UI render, both locales
pnpm run test:urls         # URL/derivation units
pnpm run smoke             # live gateway round-trip (needs a real key)

Why the plugin pins its own pi-ai

@earendil-works/pi-ai is a direct dependency (exact-pinned), independent of the pi-ai version bundled with the harness. This decouples the gateway model catalog (thinking levels, per-provider compat such as zhipu GLM's supportsDeveloperRole: false) from harness upgrades: a model missing from the harness's older catalog no longer degrades request encoding. The plugin↔harness boundary passes plain data (GenerateOptions in, dsh StreamChunks out; lib/pi-bridge.js never leaks pi-ai objects across), so the plugin's pi-ai copy and the harness's own coexist safely in one process.

Developing from a checkout: point the profile's package.json at "dsh-gateway-provider": "link:/abs/path" and re-run pnpm install in the profile. Do not also add an id: llm-newapi row to the profile's own cordis.patch.yml — the bundle patch already provides it (duplicate row = loader error).

References & credits

  • pi-ai SDK — all four wire protocols; the bridge reuses the official dsh-llm-pi-ai adapter's translation layer.
  • models.dev — the parameter catalog (context windows, output caps, reasoning, release dates).
  • new-api, LiteLLM, Higress — the gateways this plugin is tested against (any OpenAI-compatible endpoint works).

Security

Keys live in dsh's credential store or the launching environment — never in settings YAML. The repo runs gitleaks in CI and pre-commit to keep secrets out.

License

MIT

有意识地管理

安装与管理

前置条件与目标 Profile

目标 Web Profile

交付方式 Git Bundle — Luck9Star/dsh-gateway-provider#dcff90cc850a8c7e461bbc0b56b204765a948d61

验证、更新与移除

显示生命周期命令
验证
dsh plugin --profile web list

兼容性与访问范围

DeepSeek Harness plugin with declared DSH peer dependencies @deepseek-ai/cordis ^4.0.2; DSH peers ^0.1.2-rc.1

检查兼容性证据

风险事实

凭据

Requires a gateway API key

证据
external-network

Connects to configured LLM gateways and models.dev

证据
license

MIT licensed, provided without warranty

证据
证据与编辑审查Manifest、Bundle patch、分发与新鲜度

不可变证据

审查状态与源码活动

AI 已审查

README 记录了 prepare 生命周期钩子;请在常规依赖安装审查中检查该钩子。

AI 审查于 2026/9/10 UTC 14:09GitHub 事实核对日期: 2026/9/10 UTC 14:09

自当前证据基线以来,没有记录到重要源码变化。

下一步

按 Plugin 安装流程操作

订阅重要变化: DSH Gateway Provider