DeepSeek-R1
DeepSeek-R1 Reasoning Power
Master Complex Reasoning
MoE Efficiency
671B Parameters Active 37B
Routes queries to specialized experts for scalable inference.
RL Trained
Chain-of-Thought Emerges
Self-verifies and corrects via reinforcement learning without SFT data.
Benchmark Leader
Matches OpenAI o1
Excels in math, coding, science with explicit <think> blocks.
Examples
See what DeepSeek-R1 can create
Copy any prompt below and try it yourself in the playground.
Math Proof
“Prove Fermat's Last Theorem for n=3 using step-by-step chain-of-thought reasoning. Include self-verification and output final proof in <think> tags followed by concise answer.”
Code Debug
“Debug this Python function for sorting linked lists with duplicates: def sortList(head): ... Generate fixed code with explanations in <think> block, test cases, and optimized version.”
Science Explainer
“Explain quantum entanglement in Bell's theorem context. Use chain-of-thought to derive inequalities, self-correct assumptions, and summarize key implications.”
Logic Puzzle
“Solve Einstein's riddle: five houses, colors, nationalities, drinks, smokes, pets. Reason step-by-step in <think>, identify fish owner, verify solution.”
For Developers
A few lines of code.
Reasoning via DeepSeek-R1 API
ModelsLab handles the infrastructure: fast inference, auto-scaling, and a developer-friendly API. No GPU management needed.
- Serverless: scales to zero, scales to millions
- Pay per token, no minimums
- Python and JavaScript SDKs, plus REST API
import requestsresponse = requests.post("https://modelslab.com/api/v7/llm/chat/completions",json={"key": "YOUR_API_KEY","prompt": "","model_id": ""})print(response.json())