Not every model should think the same way. DeepSeek R1 is a reasoning-first model. It spends extra tokens working through a problem step by step before answering, which makes it strong on tasks where the *process* matters: math, logic puzzles, planning, and careful multi-step analysis.
What makes R1 different
A general chat model answers in one pass. A reasoning model like R1 generates an internal chain of thought first, then a final answer. That deliberate process trades latency and output tokens for accuracy on hard problems, and it's why reasoning models top math and logic benchmarks.
The tradeoff is real: R1 is slower and produces more tokens (you pay for the thinking). On Turiloop it's priced between V4-Flash and V4-Pro, pricier than Flash and cheaper than Pro, and discounted right now.
When to use R1
- Math and quantitative reasoning: multi-step calculations, proofs, word problems.
- Logic and planning: constraint problems, decision trees, figuring out the steps.
- Careful analysis: cases where a wrong intermediate step ruins the answer and you want the model to check itself.
When NOT to use R1
- Simple, high-volume tasks: classification, extraction, short replies. Use DeepSeek V4-Flash, because the reasoning overhead is wasted cost and latency.
- Latency-sensitive UX: chat that must feel instant. A general model answers faster.
- Most coding: for code, DeepSeek V4-Pro (LiveCodeBench 93.5) is usually the better pick.
Calling it
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["TURILOOP_API_KEY"],
base_url="https://api.turiloop.com/v1",
)
r = client.chat.completions.create(
model="deepseek-r1",
messages=[{"role": "user", "content": "A train leaves A at 60 km/h..."}],
)
answer = r.choices[0].message.contentThe rule of thumb
Reach for R1 when the question is *hard to get right* and the cost of a wrong answer is high. For everything else, a general model (V4-Flash for cheap, V4-Pro for quality) is faster and cheaper. They all sit behind one OpenAI-compatible key on Turiloop, so you can route each request to the right brain. Pay-as-you-go, international card.