AI Agent Hub
Back to plugins
🖥️

llm-deepseek-image-admit

Client Updated 2026.08.15

Run the following command in DeepSeek Harness:

dsh plugin install Seryta/llm-deepseek-image-admit

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install Seryta/llm-deepseek-image-admit inside DeepSeek Harness and then restart dsh web to activate the plugin; see https://github.com/Seryta/llm-deepseek-image-admit for details

About this plugin

DeepSeek official models declare only the text input modality, so the DSH apiproxy rejects any image message before it reaches the agent loop. Even with an image-bridge or similar transcription plugin installed, the image never gets past the admission pre-check.

This plugin takes over the DeepSeek official provider route and replicates the exact apply logic (same config surface, settings integration, credential resolution). The sole difference: resolveModel now returns the image modality alongside text. The model selector stays unchanged and no manual provider switching is required, making it fully transparent to the user. It imports the already-built official artifact directly, with zero extra build dependencies.

Best for developers who use DeepSeek models inside DSH and want to send images that are later transcribed to text by a pre-step plugin such as image-bridge. Note that this plugin only admits images and does not transcribe them; without a pre-step transcription plugin, raw image blocks will still be rejected by the DeepSeek API.

Use Cases

  • Sending images as agent input when using DeepSeek models inside DSH
  • Letting image messages pass the apiproxy admission pre-check instead of being blocked by MODEL_DOES_NOT_SUPPORT_IMAGES
  • Pairing with image-bridge or similar pre-step plugins to transcribe images before the DeepSeek API sees them

Best For

  • Developers who use DeepSeek models day-to-day within DSH
  • Users who need image input but whose DeepSeek API cannot accept raw image blocks
  • Developers building multimodal conversation pipelines with image-bridge or similar transcription plugins