121103qwq
dsh-vision-sidecar
Hosted free vision sidecar for DeepSeek Harness with durable session evidence
- Stars
- 2
- Language
- JavaScript
- Created
- Aug 13, 2026
- Updated
- Aug 14, 2026
Introduction
dsh-vision-sidecar
Give text-only models in DeepSeek Harness hosted visual perception without replacing the reasoning model. Images go to a free or custom OpenAI-compatible vision API; the exact description sent to the configured reasoning model is then committed to the DSH session and replayed as ordinary text.
The default is LLM7.io's anonymous default vision route. No local VLM, GPU, account, or vision API key is required for its documented anonymous allowance. No local VLM, GPU, or multi-gigabyte model download is required.
Why this plugin
- No-key hosted vision default. On top of a working DSH text route, the default LLM7.io vision endpoint works without registration or a vision key; an LLM7 token is optional for higher limits.
- Durable and replayable. VLM output is a real DSH session message, not a hidden request-time rewrite or process-only cache.
- No image overhead for text. The vision provider is contacted only when an undescribed image exists.
- Replaceable reasoning target. The sidecar forwards to
targetProviderandtargetModel; any DSH text route that does not depend on opaque provider replay state can be selected. - Fail-loud. Missing credentials, timeouts, rate limits, and provider failures remain typed errors. The plugin never silently forwards an image to a text-only model.
- Build-free Git install. The repository ships native ESM JavaScript, so pnpm does not need permission to run a
preparescript.
Requires DSH 0.1.0-rc.6 or newer within the 0.1.x line and Node.js 22.19+ or 24+.
Quick start: no-key hosted vision
Before starting, have a DSH Web profile that can already call its text model. The plugin does not require a particular reasoning provider or model; it forwards descriptions to the configured targetProvider and targetModel.
- Make sure your DSH Web profile can already call its text model.
- Install the plugin and start the Web profile. The default LLM7.io vision tier needs no vision account or key.
dsh plugin --profile web add github:121103qwq/dsh-vision-sidecar#v0.1.3
dsh --profile web
On POSIX shells, no vision key export is needed. The bundle adds and selects deepseek-vision/deepseek-with-vision. If a later user patch already selects another model, choose DeepSeek + Hosted Vision in the model picker.
The no-key claim applies to the default vision preprocessing endpoint. LLM7.io documents anonymous access up to 500,000 tokens/day, 60 requests/hour, 10 requests/minute, and 1 request/second; these limits and model availability can change. Your selected reasoning route keeps its existing credential, quota, and billing rules.
There is deliberately no shared or embedded API key. LLM7.io's anonymous allowance is provider-enforced; any optional authenticated key remains user-owned and is never stored in this package.
What happens to an image
- DSH resolves the image from its verified attachment store.
- The plugin sends a bounded batch to the configured OpenAI-compatible
/chat/completionsendpoint. - Only after every batch succeeds, the exact visual description and attachment SHA-256 IDs are appended to the durable session as an untrusted-evidence notice.
- Images are replaced with deterministic text pointers before the configured text model is called.
- Later turns reuse the logged description, including after a process restart. They do not spend the free VLM quota again.
Text detected inside an image is explicitly framed as untrusted data before it reaches the reasoning model. This is prompt-injection hardening, not a claim that model-level prompt injection can be eliminated.
Free provider options
Free plans change. These options were checked on 2026-08-14; verify current limits and privacy terms before relying on one.
| Provider | Base URL | Model | Credential and limit notes |
|---|---|---|---|
| LLM7.io | https://api.llm7.io/v1 | default | Default. Anonymous vision works without a key; documented anonymous limit is 500,000 tokens/day and 10 requests/minute. |
| OVHcloud AI Endpoints | https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 | Qwen2.5-VL-72B-Instruct | No-key alternative. Anonymous allowance is 2 requests/minute per IP and model. |
| Zhipu GLM | https://open.bigmodel.cn/api/paas/v4 | glm-4.6v-flash | Account key required; officially listed free vision model. |
| OpenRouter | https://openrouter.ai/api/v1 | google/gemma-4-31b-it:free | Key required. Free-account quota is shared across free models and may change. |
| Hugging Face Inference Providers | https://router.huggingface.co/v1 | Qwen/Qwen2.5-VL-7B-Instruct | HF account and token with Inference Providers permission; free credit and provider availability may change. |
| ModelScope | https://api-inference.modelscope.cn/v1 | Qwen/Qwen3-VL-8B-Instruct | Token required; daily quota and availability are dynamic. |
All six are remote services and receive the complete image. Do not send personal, confidential, or regulated images unless the provider's terms are acceptable. The free-model application guide documents the anonymous LLM7.io default, OVHcloud alternative, account steps, OpenAI-compatible overrides, and the current no-registration findings.
LLM7.io token override
The default leaves visionApiKeyEnv empty for anonymous access. Create an optional token at token.llm7.io for higher limits, then set:
- id: vision-sidecar
config:
visionBaseURL: https://api.llm7.io/v1
visionModel: default
visionApiKeyEnv: LLM7_API_KEY
OVHcloud alternative
To use OVHcloud's anonymous or authenticated vision endpoint instead, set:
- id: vision-sidecar
config:
visionBaseURL: https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
visionModel: Qwen2.5-VL-72B-Instruct
visionApiKeyEnv: OVH_AI_ENDPOINTS_ACCESS_TOKEN
OpenRouter override
Add this row to the profile's cordis.patch.yml, then provide OPENROUTER_API_KEY:
- id: vision-sidecar
config:
visionBaseURL: https://openrouter.ai/api/v1
visionModel: google/gemma-4-31b-it:free
visionApiKeyEnv: OPENROUTER_API_KEY
ModelScope override
- id: vision-sidecar
config:
visionBaseURL: https://api-inference.modelscope.cn/v1
visionModel: Qwen/Qwen3-VL-8B-Instruct
visionApiKeyEnv: MODELSCOPE_API_TOKEN
Hugging Face override
Create a token with Inference Providers permission, then provide HF_TOKEN:
- id: vision-sidecar
config:
visionBaseURL: https://router.huggingface.co/v1
visionModel: Qwen/Qwen2.5-VL-7B-Instruct
visionApiKeyEnv: HF_TOKEN
Do not put a literal key in cordis.patch.yml. visionApiKeyEnv is a DSH credential reference/environment-variable name, not the secret value.
Configuration
The no-key LLM7.io default needs no patch. To change the reasoning target or request bounds, override the vision-sidecar row:
- id: vision-sidecar
config:
targetProvider: your-existing-text-provider
targetModel: your-existing-text-model
visionBaseURL: https://api.llm7.io/v1
visionModel: default
visionApiKeyEnv: ''
visionTimeoutMs: 60000
visionMaxResponseBytes: 524288
visionMaxSessionBytes: 1048576
maxImagesPerRequest: 4
Remote URLs must use HTTPS. HTTP is accepted only for loopback-compatible development endpoints. URL-embedded credentials, query strings, and fragments are rejected.
Development and verification
pnpm install --frozen-lockfile
pnpm test
pnpm pack:check
The suite covers text-only bypass, nested tool-result images, real DSH Session reconstruction, durable replay, atomic multi-batch publication, managed credentials, full-response deadlines, byte limits, HTTP error mapping, cancellation, content conversion, and configuration validation. CI also packs a tarball, installs it into an isolated DSH profile, and checks the composed configuration.
Remove the bundle with:
dsh plugin --profile web remove dsh-vision-sidecar
Related community work
This plugin builds on the same external-VLM idea explored by dsh-vision-proxy, dsh-vision-provider, modlens, dsh-vision-toolkit, and dsh-tool-vision. Its deliberately narrower focus is a no-local-model, no-key default plus DSH-native durable visual evidence for a text reasoning route.
MIT licensed.