ZI-LV68/dsh-deepseek-model-router0

dsh-deepseek-model-router

Auto-switch DeepSeek models for DeepSeek Harness: routes every model request to the vision model when images are present, to the pro model for complex tasks, and to the fast model otherwise; includes a switch_model tool for manual per-session overrides.

AI 分析

核心用途是根据输入内容(如是否含图、任务复杂度)自动分流到最合适的 DeepSeek 模型。适合希望在速度、成本和效果之间取得自动平衡的用户。

パッケージ
dsh-deepseek-model-router
バージョン
0.1.0
最終更新
2026/08/24

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ZI-LV68/dsh-deepseek-model-router

ドキュメント

README 全文を読む ↗

Configuration

All fields optional (defaults shown):

config:
  provider: deepseek-official   # only sessions on this provider are routed
  fastModel: deepseek-v4-flash
  proModel: deepseek-v4-pro
  visionModel: deepseek-v4-flash-vision-exp
  complexityThreshold: 2       # task score >= threshold -> pro
  toolName: switch_model       # registered tool name
  enabled: true