Last refreshed 2026-04-15. Next refresh: weekly.
Why use DeepSeek VL 7B on Replicate API?
Replicate API offers DeepSeek VL 7B with pay-as-you-go pricing at $0.05/1M input tokens. Replicate is a cloud-based platform that enables users to run machine learning models easily and efficiently.
Setup recipe
Python + curlpip install replicateexport REPLICATE_API_TOKEN=...import replicate
output = replicate.run(
"deepseek-vl-7b",
input={"prompt": "Hello"}deepseek-vl-7bRequest example
import replicate
# reads REPLICATE_API_TOKEN from env
# deepseek-vl-7b format: "owner/model-name" (latest version) or "owner/model-name:version-hash"
output = replicate.run(
"deepseek-vl-7b",
input={"prompt": "Hello"}
)
# Output is a list or generator depending on the model
print("".join(output))Gotchas
- Replicate uses "owner/model-name" format (e.g. "meta/meta-llama-3-8b-instruct") for the latest version, or "owner/model-name:version-sha" to pin to a specific version. The REST endpoint splits owner and model-name into the path: /v1/models/{owner}/{model-name}/predictions.
- The examples expect REPLICATE_API_TOKEN; rename it only if your application config maps the new variable.
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $0.05 |
| Output tokens | $0.25 |
Capabilities
About DeepSeek VL 7B
DeepSeek-VL 7B is an open-source vision-language model engineered for robust real-world applications. With its general multimodal understanding capabilities, it can process logical diagrams, web pages, formulas, scientific literature, natural images, and complex scenarios involving embodied intelligence. The model features a hybrid vision encoder that integrates SigLIP-L and SAM-B, allowing it to handle high-resolution (1024 x 1024) image inputs. Built on the DeepSeek-LLM-7b-base foundation, it is pre-trained on roughly 2 trillion text tokens and further trained on approximately 400 billion vision-language tokens. A standout variant, DeepSeek-VL-7b-chat, is specially optimized for conversational tasks, enhancing both performance and user experience by addressing the limitations of existing open-source multimodal models.
FAQ
What does DeepSeek VL 7B cost on Replicate API?
On Replicate API, DeepSeek VL 7B costs $0.05 per 1M input tokens and $0.25 per 1M output tokens.
Who created DeepSeek VL 7B?
DeepSeek VL 7B was created by DeepSeek as part of the DeepSeek VL model family.
Is DeepSeek VL 7B open source?
DeepSeek VL 7B is open source according to the seed data.