@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).
AI Analysis
核心用途是让纯文本主模型间接支持图片输入。适合希望在使用纯文本模型(如 deepseek-v4-pro)时处理图片的用户。必要条件是需配置可用的视觉模型和主模型路由。
Install
This plugin has no verified bundle, or compatibility checks failed. Read the repository notes first. Read the full README ↗
README
Read the full 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
}