oldHan2423/dsh-image-auto-describe0

dsh-image-auto-describe

Image auto-describe provider for the DeepSeek Harness apiproxy admission seam: transcribes pasted images through configurable vision routes (Qwen first, GLM fallback) so text-only session models still receive image prompts.

AI 分析

核心用途是让纯文本会话模型支持图片输入。适合需要多模态输入但使用纯文本大模型的用户,安装后需手动执行一次宿主补丁脚本。

パッケージ
dsh-image-auto-describe
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/18

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:oldHan2423/dsh-image-auto-describe

ドキュメント

README 全文を読む ↗

配置

类型默认含义
candidates{ provider: string, model: string }[](至少 1 条)Qwen → GLM按顺序尝试的视觉路由,第一条成功者生效
maxTokens正整数4096每次转写调用的 token 预算

Web 的「插件」设置页可直接编辑(路由从已配置的多模态模型里选,无需手填),下一次转写即用新配置,无需重启;把路由清空的编辑会被拒绝。若 Harness 版本的设置页还没有这张卡片,路由保持默认值,可在 profile 补丁中覆盖:

- id: image-auto-describe
  config:
    candidates:
      - provider: siliconflow
        model: Qwen/Qwen3-VL-32B-Instruct
      - provider: zhipu
        model: glm-4v-flash
    maxTokens: 4096