All models
DeepSeek
DeepSeek V4 Pro
DeepSeek's frontier model. 1M-token context, frontier-class reasoning, and a price tag that makes proprietary alternatives hard to justify.
Frontier MoEDeepSeek License
Context
1,000k
Tokens / sec
70
TTFT
320ms
Hardware
NVIDIA H200
Pricing
- Input
- $0.43 / 1M tokens
- Output
- $0.87 / 1M tokens
- Context cache
- 50% of input rate, automatic
- Fine-tunes
- Same per-token price as base
Capabilities
- SSE streaming
- Tool / function calling
- Structured JSON outputs
Use cases
Hardest reasoningLong-context analysisResearch
Quickstart
Full quickstartdeepseek-v4-pro.py
from openai import OpenAI
client = OpenAI(
base_url="https://api.cogito.decart.ai/v1",
api_key=os.environ["COGITO_API_KEY"],
)
response = client.chat.completions.create(
model="deepseek-v4-pro",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)