Compare

Qwen3.7 Plus vs Deepseek-R1-Distill-Qwen-32b

Pricing per million tokens, context window, capabilities — pulled from each provider's public docs. All 2 are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

Search2/4
Qwen3.7 Plus
alibaba/qwen3.7-plus
Deepseek-R1-Distill-Qwen-32b
deepseek/deepseek-r1-distill-qwen-32b
Provider
Alibaba
Deepseek
Family
Qwen
Qwen
Modality
text
reasoning
Context window
1,000,000 tok
80,000 tok
Max output
4,096 tok
32,768 tok
Released
2026-08-03
2025-01-22
License
Open-weight
Open-weight
Input price
$0.400 /1M
$0.500 /1M
Output price
$1.60 /1M
$4.88 /1M
Tools
yes
Streaming
yes
yes
Vision
JSON mode
yes
yes
Reasoning
yes
yes
Prompt caching
Batch API
Try it
Open in playground →
Open in playground →
Qwen3.7 Plus
alibaba/qwen3.7-plus
Full spec →

Alibaba's Qwen 3.7 Plus is the cost-effective member of the Qwen3.7 series, pairing strong text capabilities with image and video understanding and full-stack agent-level intelligence for coding, tool use, and GUI-based automation, served via DashScope's OpenAI-compatible endpoint.

Strengths
  • General-purpose chat
  • Long context
  • Tool use
Use cases
ChatbotsContent generationAgentic workflows
Deepseek-R1-Distill-Qwen-32b
deepseek/deepseek-r1-distill-qwen-32b
Full spec →

DeepSeek-R1-Distill-Qwen-32B is a model distilled from DeepSeek-R1 based on Qwen2.5. It outperforms OpenAI-o1-mini across various benchmarks, achieving new state-of-the-art results for dense models.

Strengths
  • Strong on math + code
  • R1 reasoning in a 32B Qwen shell
  • Open-weight
Use cases
Math solversCode reviewStep-by-step reasoning

Compare with another

Deepseek-R1-Distill-Qwen-32b vs Qwen3-Embedding-0.6b
deepseek/deepseek-r1-distill-qwen-32b · qwen/qwen3-embedding-0.6b
Qwen3.7 Plus vs Qwen3-Embedding-0.6b
alibaba/qwen3.7-plus · qwen/qwen3-embedding-0.6b
Deepseek-R1-Distill-Qwen-32b vs Qwen2.5-Coder-32b-Instruct
deepseek/deepseek-r1-distill-qwen-32b · qwen/qwen2.5-coder-32b-instruct
Deepseek-R1-Distill-Qwen-32b vs Qwen3-30b-A3b-Fp8
deepseek/deepseek-r1-distill-qwen-32b · qwen/qwen3-30b-a3b-fp8
Deepseek-R1-Distill-Qwen-32b vs Qwq-32b
deepseek/deepseek-r1-distill-qwen-32b · qwen/qwq-32b
Qwen 3 Max vs Deepseek-R1-Distill-Qwen-32b
alibaba/qwen3-max · deepseek/deepseek-r1-distill-qwen-32b
Qwen 3.5 397B A17B vs Deepseek-R1-Distill-Qwen-32b
alibaba/qwen3.5-397b-a17b · deepseek/deepseek-r1-distill-qwen-32b
Qwen3.7 Max vs Deepseek-R1-Distill-Qwen-32b
alibaba/qwen3.7-max · deepseek/deepseek-r1-distill-qwen-32b
Qwen3.8 Max vs Deepseek-R1-Distill-Qwen-32b
alibaba/qwen3.8-max · deepseek/deepseek-r1-distill-qwen-32b
SWITCH BETWEEN THEM

One key, all 2, one line different.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# Qwen3.7 Plus
client.chat.completions.create(
    model="alibaba/qwen3.7-plus",
    messages=[{"role":"user","content":"hello"}],
)

# Deepseek-R1-Distill-Qwen-32b
client.chat.completions.create(
    model="deepseek/deepseek-r1-distill-qwen-32b",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →