DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Pro Vision — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
P

dsh-pro-vision

Pro Vision

让 DeepSeek-V4-Pro(仅文本)使用 V4-Flash-Vision-Exp 处理附件图片。Mac/Windows/Linux。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lasdrder0705/dsh-pro-vision#c895e40788f6f158ccc0fa9c79aa563bb4f3a313
README兼容性版本

兼容性与来源证明

Pro Vision 以 dsh-pro-vision 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/21

版本

0.1.0stable
2026/8/21

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/8/21
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Tool Describe Image@linxin666/dsh-tool-describe-image面向模型的 describe_image 工具,用于 dsh Web GUI:通过在兼容 OpenAI 的端点调用视觉语言模型,为文本模型提供图像理解能力,以描述一张图像(本地路径、http(s) URL 或附件引用)。可热插拔 —Modlens@liustack/modlens面向仅支持文本的 LLM 的插件视觉能力,由免费的 Antigravity CLI 提供支持Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio,以及 27 个可编辑视频模板,以原生 DeepSeek Harness 对话视图呈现。Image Gendsh-image-gen将类似 ChatGPT 的图像生成功能带到 DeepSeek Harness——支持 Gemini、OpenAI、Seedream、DashScope、本地 ComfyUI 等。

README

dsh-pro-vision

中文 · English

DeepSeek-V4-Pro 是纯文本模型。这个插件在不切换主模型的前提下,把会话里的图片交给 deepseek-v4-flash-vision-exp 识图,再把说明交给 Pro。

A DeepSeek Harness plugin that lets V4-Pro use V4-Flash-Vision-Exp for attached images.

纯 JavaScript,无原生依赖,macOS / Windows / Linux 同一条安装命令。


中文

安装

Mac / Windows 同一条命令(Web 界面):

dsh plugin --profile web add github:lasdrder0705/dsh-pro-vision

然后重启 dsh web。

Windows 若直接运行报错,给仓库地址加上引号,或改用 npx:

dsh plugin --profile web add "github:lasdrder0705/dsh-pro-vision"
npx @deepseek-ai/dsh plugin --profile web add github:lasdrder0705/dsh-pro-vision

本仓库没有构建脚本,一般不需要 allowBuilds。

卸载:

dsh plugin --profile web remove dsh-pro-vision

让 Pro 能贴图

安装后,在 $DSH_HOME/settings.yaml 里给 Pro 声明图片输入(否则界面会按纯文本拒绝贴图):

llm-deepseek:
  models:
    - id: deepseek-v4-pro
      name: DeepSeek-V4-Pro
      inputModalities: [text, image]

设置是动态的,下一轮对话就会生效。真正发给 Pro 的请求里,图片会被替换成 Flash Vision 的文字说明。

行为

  1. Web UI / read_image 可以把图片交给 Pro。
  2. 插件先调用 deepseek-v4-flash-vision-exp 识图。
  3. 把说明写成 [Image N] ... 再发给 Pro。
  4. 同一张附件在进程内会缓存,后续轮次不再重复识图。

直接选用 deepseek-v4-flash-vision-exp 时插件不会插手。

配置

可选,写在 profile 的 cordis.patch.yml:

- id: dsh-pro-vision
  config:
    provider: deepseek-official
    visionModel: deepseek-v4-flash-vision-exp
    textModels:
      - deepseek-v4-pro
    maxVisionTokens: 8192
    visionReasoningEffort: high

English

Install

Same command on Mac and Windows (web profile):

dsh plugin --profile web add github:lasdrder0705/dsh-pro-vision

Restart dsh web.

On Windows, quote the spec or use npx if the unquoted form fails:

dsh plugin --profile web add "github:lasdrder0705/dsh-pro-vision"
npx @deepseek-ai/dsh plugin --profile web add github:lasdrder0705/dsh-pro-vision

No native build. Uninstall with dsh plugin --profile web remove dsh-pro-vision.

Allow Pro to accept images

In $DSH_HOME/settings.yaml:

llm-deepseek:
  models:
    - id: deepseek-v4-pro
      name: DeepSeek-V4-Pro
      inputModalities: [text, image]

The plugin still strips images before they reach the Pro API and replaces them with Flash Vision captions.