DeepSeek Reasoning is the dedicated "thinking" model line from DeepSeek, a Chinese AI lab โ starting with DeepSeek-R1 and continuing through its successors. It ranks #7 in real-world usage share at roughly 23.3%, and made global headlines in early 2025 by matching the reasoning quality of top closed-source models at a small fraction of the training and inference cost. Unlike most frontier reasoning models, its weights are fully open, so anyone can download and self-host it.
Run the model fully locally with Ollama, or call DeepSeek's OpenAI-compatible API endpoint directly.
# run locally with Ollama
ollama run deepseek-r1
curl https://api.deepseek.com/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "deepseek-reasoner",
"messages": [{"role": "user", "content": "A train leaves at 3pm going 60mph. Another leaves at 4pm going 90mph on the same track. When does it catch up?"}]
}'
The fastest path is running it locally with no API key at all โ or signing up for DeepSeek's hosted API if you want managed hosting.
# 1. install Ollama, then pull the reasoning model
ollama pull deepseek-r1
# 2. or, for the hosted API โ sign up at platform.deepseek.com
# then set your key
export DEEPSEEK_API_KEY="your-key-here"