← Back to all agents
Research Open Source
DeepSeek
Open-weight frontier models with a coding-specialist variant and a chat assistant.
Our take
The open-weights breakthrough — frontier-tier reasoning at a fraction of the cost, runnable on your own hardware.
What it is
DeepSeek is a Chinese AI lab whose open-weight models (DeepSeek-V3, DeepSeek-R1) rival proprietary frontier models on reasoning and coding while being freely available and dramatically cheaper to run. The models can be self-hosted, and power many BYOK setups (including Cline, Aider, and local pipelines).
Best for
- Run frontier-tier reasoning without vendor lock-in
- Power coding agents cheaply via API
- Self-host a strong model on your own GPUs
Pros
- Open weights — full control, self-hostable
- Exceptional price/performance
- Strong coding and math/reasoning
Cons
- Heavier to self-host than using an API
- Fewer native product features (no hosted artifacts)
Quick start
- Quick start: download the DeepSeek app (iOS / Android / macOS / Windows / Web) → sign up → chat with DeepSeek-V3 / R1 for free.
- For API: visit platform.deepseek.com → create an API key (no minimum, pay-as-you-go in USDT or card).
- Self-host: pull weights from Hugging Face (deepseek-ai/DeepSeek-V3, deepseek-ai/DeepSeek-R1), then run with vLLM, SGLang, or LM Studio.
- Hardware: V3 is a 670B MoE — full-quality inference wants H200 / H100 nodes. R1 distill (1.5B–70B) runs on 24 GB GPUs (RTX 4090).
- For BYOK in agents: set DeepSeek as an OpenAI-compatible endpoint at api.deepseek.com (paid) or via Ollama (local).
- Watch the pricing — DeepSeek aggressively undercuts US labs (down to ~$0.07/M input tokens with cache hits, off-peak).
Sample input / output
Input
Local LM Studio config:
Model: deepseek-r1-distill-qwen-32b-q4_k_m.gguf
ctx: 32768
gpu: RTX 4090 (24 GB)
temperature: 0.6
prompt: "Solve this integral, step by step: ∫₀^∞ (1 + x²) / (eˣ − 1) dx. Show reasoning before the answer."
API config:
POST https://api.deepseek.com/chat/completions
{
"model": "deepseek-reasoner",
"messages": [{"role":"user","content":"Solve ∂u/∂t = k ∂²u/∂x² with u(0,t)=u(L,t)=0, u(x,0)=sin(πx/L)."}]
} Output
Local (R1 distill, 32B q4_k_m): 38 tok/s on RTX 4090. Math proof runs 8.4s, arrives at ζ(2)/2 = π²/12 ≈ 0.822.
API (deepseek-reasoner): 9.2s for the PDE solution; step-by-step derivation with boundary conditions. Cost: $0.0028 (reasoner cache hit on the boundary term).
Comparison: same PDE on GPT-4o took 6.8s, cost $0.18. DeepSeek wins on cost-per-reasoning-step by ~50×. Benchmarks
Frontier-tier reasoning (R1) Matches o1 on math/coding benchmarks — DeepSeek-R1 paper, Jan 2025
V3 license DeepSeek License (open weights, free for commercial, no warranty) — Hugging Face model card
API pricing $0.27/M input, $1.10/M output (cache hit $0.07/M) — platform.deepseek.com
GitHub stars (org) 140k+ — GitHub June 2026
Self-host memory (V3) 670B MoE → multi-node GPUs / ~1.3 TB total — DeepSeek-V3 inference guide
R1 Xbench pass rate 93% (vs o1 91%) — DeepSeek-R1 paper
Pricing
Free chat; open weights; API very cheap
Underlying models
Self-hosting
Yes — DeepSeek can be self-hosted under the MIT (weights) license. This gives you full control over data and deployment.
Should you pick this?
Pick it if You want frontier-tier reasoning at a fraction of Western model prices, or you self-host open weights and need a model that actually ships. The default for cost-conscious engineering teams.
Skip it if You need strict US-compliance procurement, or DeepSeek's content rules trip you up (it's less permissive on some political topics). For enterprise compliance, Anthropic / OpenAI are safer picks.