@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 분석
核心用途是让纯文本主模型间接支持图片输入。适合希望在使用纯文本模型(如 deepseek-v4-pro)时处理图片的用户。必要条件是需配置可用的视觉模型和主模型路由。
설치
검증된 bundle이 없거나 호환성 검사에 실패했습니다. 먼저 저장소 설명을 읽어 주세요. 전체 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
}