@deepseek-ai/dsh-vision-router
Codex-style image offload for DeepSeek Harness: routes chat-box images to a user-configured vision model and feeds the text description back to a text-only primary model (e.g. deepseek-v4-pro).
安装
此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗
说明文档
阅读完整 README ↗配置
interface Config {
/** 主模型 provider 路由,默认 `deepseek-official`。 */
provider?: string
/** 主模型 id,默认 `deepseek-v4-pro`。 */
model?: string
/** 优先视觉 provider;省略则自动发现。 */
visionProvider?: string
/** 优先视觉模型 id;省略则自动发现。 */
visionModel?: string
/** 发给视觉模型的描述指令。 */
imagePrompt?: string
/** 每次视觉调用的输出 token 上限,默认 1024。 */
maxTokens?: number
}