DeepSeek V4 Flash on QuickSilver Pro
DeepSeek V4 Flash 0731 is the official public-beta agent model: 1M-token context, stronger coding and tool use, and a native Responses API adapted for Codex. QuickSilver Pro serves the official DeepSeek build at $0.112 / $0.224 per million tokens, 20% below OpenRouter's public rate.
At a glance
Codex, agentic coding, tool use, and long-context automation.
Pricing comparison ($/1M tokens)
| Provider | Input | Output | vs QSP |
|---|---|---|---|
| QuickSilver Pro | $0.112 | $0.224 | lowest-cost |
| OpenRouter (deepseek/deepseek-v4-flash-0731) | $0.14 | $0.28 | 20% lower |
| OpenAI (GPT-4o-mini) | $0.15 | $0.60 | 63% lower |
When to use
Default to V4 Flash for Codex and agentic coding, multi-step tool use, code generation, structured output, and long-context automation. The official 0731 build supports both OpenAI Chat Completions and Responses API clients while keeping the stable QSP model ID.
When to use something else
For genuinely hard reasoning (competitive programming, multi-step proofs, complex math), escalate to V4 Pro. For Opus-class agentic / long-horizon planning, Kimi K2.6 is the better fit. For audio or GPT-4-class creative writing, stay on OpenAI. V4 Flash itself is text-only — if you need image input, 23 of our 40 models accept it.
Quickstart (curl)
curl https://api.quicksilverpro.io/v1/chat/completions \
-H "Authorization: Bearer $QSP_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-flash",
"messages": [{"role": "user", "content": "Hello!"}]
}'OpenAI-compatible. One-line migration via base_url.
FAQ
Yes — V4 Flash thinks by default. For direct non-thinking chat through Chat Completions, pass `reasoning: { enabled: false }`; Responses API clients can set `reasoning.effort` to control depth.
QuickSilver Pro lists the official 0731 build at $0.112 input / $0.224 output per 1M tokens — 20% below OpenRouter's public $0.14 / $0.28 rate.
Yes. Use base_url=https://api.quicksilverpro.io/v1 with model="deepseek-v4-flash". QSP exposes both `/v1/chat/completions` and `/v1/responses`; Codex should use `wire_api = "responses"`.