DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Cortiq Dsh Llm Router — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

cortiq-dsh-llm-router

Cortiq Dsh Llm Router

DeepSeek Harness (dsh) 的智能 LLM 请求路由器。通过语义路由器 allaigate.com 将每个提示按任务类型(code、math、translation 等)和难度(low/medium/high)分类,然后将调用委派给相应的提供商,后者

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

npx -y @deepseek-ai/dsh plugin --profile web add cortiq-dsh-llm-router@0.2.2
README兼容性版本

兼容性与来源证明

Cortiq Dsh Llm Router 以 cortiq-dsh-llm-router 发布,当前版本为 0.2.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.2.2stable
2026/8/21
0.2.1stable
2026/8/21
0.2.0stable
2026/8/21
查看其余 6 个版本收起版本
0.1.5stable
2026/8/21
0.1.4stable
2026/8/21
0.1.3stable
2026/8/20
0.1.2stable
2026/8/20
0.1.1stable
2026/8/20
0.1.0stable
2026/8/20

相关插件

正在加载相关插件…

最新版
0.2.2
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
281.9 kB
文件数
35
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 2
周下载
41
最近提交
2026/8/21
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

README

cortiq-dsh-llm-router 🧠✨

Your LLMs on autopilot. One key — every prompt is automatically dispatched to the best model.

Stop guessing which model to pick. Just type — the plugin figures out where to send each request.


🚀 Quick Start (1 minute)

dsh plugin add cortiq-dsh-llm-router
# Go to Settings → Models → Cortiq Router, paste your key
# Then pick "Cortiq Router · Auto" in the chat model selector

Done. The plugin handles everything from here.

One prerequisite: the router picks among the models your other provider plugins already serve (e.g. llm-deepseek). Keep at least one of them configured — the router never talks to a model vendor itself.


🎁 Free Trial

Get a free key for 1 month — no payment required.

👉 allaigate.com — sign up and get a cortiq_… key instantly.

No promo code needed. After the trial, plans start at just $1/month.


💰 What does it cost?

Without pluginWith plugin
All requests go to expensive modelsSimple requests → cheap model
Overpay 10–50×Save up to 90%
Manual model selection every timeFully automatic

🎯 What it does

The plugin is a smart dispatcher for your LLMs. It reads every prompt, understands what you're asking, and routes it to the right model.

Live example

You type: "Write a Python function to reverse a linked list"

Without pluginWith plugin
🤷‍♂️ Have to pick a model yourself🔍 Router: "This is code, low complexity (0.29)"
🎲 Guess: DeepSeek V4 Pro ($)🧠 Rule: code @ low → fast model
Response in 3s, paid $0.01⚡ Response in 0.5s, free

But: "Implement a distributed consensus algorithm"

Without pluginWith plugin
🤷‍♂️ Guess again🔍 Router: "This is code, high complexity (0.78)"
Maybe Flash is enough?🚀 Escalation: hard request → powerful model
Response might be bad✅ Strong model handles it well

⚙️ What can you configure?

Complexity thresholds

complexityBands:
  low:   0.35    # score ≤ 0.35 → simple task
  medium: 0.65   # ≤ 0.65 → medium, > 0.65 → hard

Which models at which complexity

globalTiers:
  low:    [deepseek-v4-flash]           # simple → fast & cheap
  medium: [deepseek-v4-pro]             # medium → more powerful
  high:   [deepseek-v4-pro]             # hard → strongest

Per-task rules

taskRules:
  code:
    low:  [deepseek-v3-chat]            # simple code → fast model
    high: [deepseek-v4-pro]             # complex code → powerful model
  translation: [deepseek-v3-chat]       # simple form: same model at all tiers
  creative-writing:
    low:  [deepseek-v4-flash]
    high: [deepseek-v4-pro]

🎮 Who is this for?

YouWhy you need it
AI agent developersYour agent picks the right model automatically, saving tokens
Freelancers / solo devsSave on API costs without sacrificing quality
Teams / startupsOne key, automatic routing, full transparency
EnthusiastsSmart routing for $1/month — no headache

📊 Real-world accuracy

We ran 8 different prompt types through the live allaigate router:

Prompt                                                    Task              Conf    → Routed To
─────────────────────────────────────────────────────────────────────────────────────────────
Write a Python function to reverse a linked list          code              0.991   fast model ✓
Solve quadratic equation x² - 5x + 6 = 0                  math              0.980   medium model
Translate to French: Hello world                          translation       0.988   fast model ✓
Write a poem about AI consciousness                       creative-writing  0.950   fast model ✓
What is the capital of France?                            qa                0.998   medium model
Summarize: The quick brown fox...                         summarization     0.980   medium model
Extract date and price from invoice                       extraction        0.997   medium model
How are you doing today?                                  chitchat          1.000   medium model

8/8 — all task types correctly identified.
✓ = task rule applied → model chosen intentionally


🔄 How it works

You: "write code to reverse a list"
    │
    ▼
┌─────────────────────────────┐
│ 1. Text extraction           │ ← only last_user (PII stays local)
└──────────┬──────────────────┘
           │ POST /v1/route
           ▼
┌─────────────────────────────┐
│ 2. Semantic router           │ ← router.allaigate.com
│    task=code, complexity=low │
└──────────┬──────────────────┘
           │
           ▼
┌─────────────────────────────┐
│ 3. Routing table             │ ← your configuration
│    code @ low → flash        │
│    ↳ fallback → flash/pro    │
└──────────┬──────────────────┘
           │ invoke
           ▼
┌─────────────────────────────┐
│ 4. Delegated to the provider │
│    plugin that serves it     │
└─────────────────────────────┘

🎛 Picking a policy per chat

The model picker lists four entries. All of them route; the last three pin the policy profile for that conversation, so you don't have to open settings:

EntryWhat it does
AutoRoutes using the profile configured in settings
Auto · cost saverPrefers the cheap end of every chain
Auto · balancedThe middle ground
Auto · quality firstEscalates sooner to the strong models

⚙️ Settings UI

The plugin adds its own Cortiq Router section to the harness settings, in every language it ships:

What you get there
Classifier keypaste it once; stored through the credentials service, with a configured / not-configured badge
Endpoint & behaviourclassifier URL, policy profile, what gets classified, character cap, timeout, decision logging
Complexity bandswhere low / medium / high sit on the 0…1 score, with a low-below-medium check
Model chainsthe per-tier chains and the fallback model
Per-task rulesa table of task × low / medium / high / any, with add and remove

It is a section of its own, not a card inside Models. The Models page picks its provider editor by namespace and offers third-party providers only a note pointing at settings.yaml, with Apply disabled — so the plugin registers through the same settings.section slot the Models page itself uses.


🌍 Languages

The plugin ships its own copy in 7 languages — 🇬🇧 English · 🇷🇺 Русский · 🇨🇳 中文 · 🇩🇪 Deutsch · 🇫🇷 Français · 🇪🇸 Español · 🇹🇷 Türkçe — selected by the language setting:

llm-cortiq-router:
  language: auto   # auto | en | ru | zh | de | fr | es | tr

auto follows the harness UI language. Note that the dsh browser client itself ships only English and Chinese, so auto resolves to one of those two; pick any of the other five explicitly here to use it.

Translated: the entries this provider shows in the model picker, and the message shown when no candidate model could serve a call — the strings a provider plugin actually puts in front of you. Log lines stay English: they are diagnostics meant for issues and grep.


📦 Installation

# From DSH plugin store
dsh plugin add cortiq-dsh-llm-router

# Or via npm
npm install cortiq-dsh-llm-router

Or add to your cordis.patch.yml:

- insert:
    - id: llm-cortiq-router
      name: 'cortiq-dsh-llm-router'

🔑 Get Your Key

  1. Open allaigate.com
  2. Sign up — get a free 1-month key instantly
  3. Copy your key (cortiq_…)
  4. In DSH: Settings → Models → Cortiq Router → paste your key

Or set the environment variable:

export CORTIQ_ROUTER_KEY=cortiq_your_key_here

💡 Tips

  • Start with defaults — they're sensible and work out of the box; the classifier lives at router.allaigate.com, and routerUrl points a self-hosted deployment somewhere else
  • Add per-task rules for tasks that matter most to you
  • Tweak complexityBands to fine-tune when a request is considered "hard"
  • Watch the log — with echoRouting on (the default), every call prints task=… tier=… score=… → provider/model, so you can see what it chose
  • Chains survive a missing key — a candidate whose provider refuses the call (no credential, no adapter, unknown model) is skipped and the next one answers; only a provider that already started streaming keeps the call
  • Name a route explicitly — a candidate written as provider:model (e.g. deepseek-official:deepseek-v4-pro) skips catalog lookup entirely

📄 License

MIT — do whatever you want.


One key. No guessing. Every request goes to the best model. 🚀

相关插件

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

Usage@linxin666/dsh-usage用于 dsh Web GUI 的使用统计插件:检测各提供商的余额和编码计划配额,并提供实时令牌使用记录,同时在侧边栏条目中显示当前会话提供商今日的使用量Whale Widgetdsh-whale-widgetDSH Web 界面右下角的 DeepSeek 余额小鲸鱼挂件:余额/今日已用/峰谷定价、自定义泡泡点击序列(文本/余额/今日/峰谷/图片/随机语句与并列加权选择)、逐行样式与字体、悬浮快捷编辑、音效与每轮消耗、自定义角色/动图/音效、吸附与翻转自定义Usage Stats@ychris12138/dsh-usage-statsdsh Web GUI 的令牌使用热力图、提供商余额和订阅配额Codex Connectdsh-codex-connect用于 DeepSeek Harness 的 ChatGPT OAuth 和 Codex 模型。