Home โบ Models โบ DeepSeek V4 Flash
DeepSeek's fast, low-cost tier at 67% below official pricing โ the highest volume-per-dollar in the DeepSeek family for production pipelines.
High volumeBest for: Cheapest DeepSeek tier for big, simple pipelines.
| Specification | Value |
|---|---|
| Official price | $0.42 / $1.27 per 1M tokens save 67% |
| Bridge price | $0.14 / $0.28 per 1M tokens, flat |
| Cached input | $0.014 per 1M tokens (1/10 of input) |
| Context window | 128K tokens |
| Max output | 32,768 tokens |
| Strengths | High-volume tasks, speed, price |
from openai import OpenAI
client = OpenAI(base_url="https://bridge.computeindex.net/v1", api_key="sk-bridge-YOUR_KEY")
completion = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[{"role": "user", "content": "Classify this ticket: 'My invoice is wrong.'"}],
)
print(completion.choices[0].message.content)
Is this the same model as DeepSeek's official V4 Flash? Yes โ the same model, served through the Bridge OpenAI-compatible gateway.
When should I use Flash instead of V4 Pro? For simple, high-volume tasks where speed and price dominate; keep V4 Pro for hard reasoning and code.