R1 Distill Qwen 32B

DeepSeek chatreasoningtool_usecode

API ID: deepseek/deepseek-r1-distill-qwen-32b

Input Price
$0.27
/1M tokens
Output Price
$0.27
/1M tokens

About R1 Distill Qwen 32B

DeepSeek R1 Distill Qwen 32B transfers DeepSeek R1's reasoning capabilities to the efficient Qwen 32B architecture. This distillation creates a practical reasoning model that runs on accessible hardware while maintaining strong problem-solving ability. The model excels at mathematics, logical reasoning, and coding tasks, showing transparent chain-of-thought reasoning. It features a substantial context window and demonstrates competitive performance on reasoning benchmarks for its size. The open weights enable flexible deployment including local inference and enterprise on-premise deployment. For developers seeking reasoning capability in a deployable package, this distilled model offers excellent balance of capability and practicality. It's particularly valuable for educational applications, development tools, and scenarios requiring reasoning without flagship model costs.

๐Ÿ’ฐ
Price Ranking
#686 lowest price among 950 Chat models

Model Specifications

Context Length
33k
Max Output
33k
Release Date
2025-01-29
Capabilities
chat reasoning tool_use code
Input Modalities
text
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Code generation, debugging, code review, refactoring
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)
  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.20
/month
50 conversations/day, ~500 tokens each
Code Copilot
$1.94
/month
200 completions/day, ~1k tokens each
Customer Service Bot
$6.48
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$9.32
/month
500 analyses/day, ~2k tokens each

DeepSeek Model Lineup

Compare all models from DeepSeek to find the best fit

Model Input Output Context Capabilities
R1 Distill Qwen 32B Current Free Free 33k chat reasoning tool_use code
DeepSeek V3.1 Base Free Free 164k chat
DeepSeek V3.1 Base Free Free 164k chat
DeepSeek Prover V2 Free Free 164k chat
DeepSeek V3 Base Free Free 131k chat
DeepSeek V3 Base Free Free 131k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Alibaba Qwen Tongyi DeepResearch 30B A3B
Input: $0.09
Output: $0.45
Context: 131k
Alibaba Qwen Qwen VL Plus
Input: $0.14
Output: $0.41
Context: 131k
Alibaba Qwen QwQ 32B
Input: $0.15
Output: $0.40
Context: 33k
Nous Research Hermes 4 70B
Input: $0.13
Output: $0.40
Context: 131k

๐Ÿš€ Quick Start

Get started with R1 Distill Qwen 32B API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="deepseek/deepseek-r1-distill-qwen-32b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)