Qwen Math Plus
Qwen
qwen/qwen-math-plus
Specialized math reasoning
Context Window
32K
32,000 tokens
Max Output
8K
8,192 tokens
About this model
Qwen Math Plus is the Qwen specialized math reasoning model, with an optimized reasoning pipeline for mathematical problems.
Ideal for math competitions, academic research, and engineering calculations. Access via Chuizi.AI with a ck- API key.
Highlights
Math-specialized
Precise reasoning
Competition-grade
Academic research
Best For
Math competitionsAcademic papersEngineering calculationsData analysis
2025-11-01
Capabilities
ChatReasoningtools
Aliases
qwen-math-plusPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $2.10 |
| Output / 1M | $6.30 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.chat.completions.create( model="qwen/qwen-math-plus", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)