DeepSeek V4 Pro 0813
DeepSeek V4 Pro 0813 is the latest 1.6T-parameter open frontier model from DeepSeek AI
As a 1.7T-parameter frontier model, DeepSeek V4 Pro 0813 works well alongside its smaller sibling, V4 Flash 0731, in coding agents. With Pro powering a main agent and Flash running sub-agents, your whole coding stack runs on open weight models.
DeepSeek V4 Pro offers substantial cost savings versus frontier closed models:
Input tokens (cache miss): $1.32/m
Input tokens (cache hit): $0.132/m
Output tokens: $3.96/m
Whether you’re running evals, writing code, or powering agents in your product, try DeepSeek V4 Pro 0813 on Baseten today.
1curl -X POST https://inference.baseten.co/v1/chat/completions \
2 -H "Authorization: Bearer $BASETEN_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "model": "deepseek-ai/DeepSeek-V4-Pro-0813",
6 "messages": [
7 {"role": "system", "content": "You are a helpful assistant"},
8 {"role": "user", "content": "Hello"}
9 ],
10 "stream": false,
11 "reasoning_effort": "high",
12 "thinking": {"type": "enabled"}
13 }'1