deepseek-v3-anthropic is DeepSeek’s V3.2 model accessed via the Anthropic Messages protocol at POST /v1/messages. The model weights are identical to deepseek-v3-2 — the differentiator is the wire format. If your code already speaks Anthropic Messages (DOSIA Agent mode, anthropic SDK, any tool_use / cache_control / thinking-block consumer), this is the alias to point it at; you don’t have to rewrite the call site.
Pricing: 0.28 / 1M output, $0.003 / 1M cache read — see the rate card.
See the Anthropic Messages protocol for what passes through.
Protocols
| Protocol | Path |
|---|---|
| Anthropic Messages | POST https://llm.bytespike.ai/v1/messages |
deepseek-v3-2 if you need the OpenAI-shape interface.
Quickstart
Capabilities
| Capability | Supported |
|---|---|
| Chat completions | ✅ |
| Streaming (SSE) | ✅ |
| Tool use (function calling) | ✅ parallel |
Prompt caching (cache_control) | ✅ |
| Extended thinking | — (use deepseek-r1 for reasoning chains) |
| Vision (image input) | — |
| JSON / structured output | ✅ |
| Context window | 64K tokens |
When to use
- You already speak Anthropic Messages — DOSIA Agent mode, anthropic SDK, a tool-use-heavy loop. Drop in the alias, save the rewrite.
- Cost-sensitive Anthropic-shape workloads — DeepSeek V3.2 is a small fraction of the input price of
claude-opus-4-8and one-twentieth ofclaude-sonnet-4-6, while keeping the same wire format. - Tool-use mixed batches — when some of your agents target Claude and some target DeepSeek but everyone speaks the same protocol.
- You need vision input — use a Claude family model or
gemini-3-1-pro. - You’re already on the OpenAI Chat Completions interface and don’t want to migrate — stay on
deepseek-v3-2. - You need explicit reasoning chains — try
deepseek-r1.
Next
deepseek-v3-2— same model, OpenAI Chat Completions surfaceclaude-sonnet-4-6— Anthropic protocol, higher-tier reasoning- DOSIA Agent mode — why the Anthropic shape matters for agent loops