Qwen Math Turbo
Qwen
qwen/qwen-math-turbo
Fast math reasoning, lower cost
Context Window
32K
32,000 tokens
Max Output
8K
8,192 tokens
About this model
Qwen Math Turbo is the fast variant of the Qwen math reasoning series, optimized for speed and cost.
Ideal for everyday math assistance and high-volume math tasks. Access via Chuizi.AI with a ck- API key.
Highlights
Fast reasoning
Low cost
Everyday math
High throughput
Best For
Math tutoringHomework gradingDaily calculationsBatch processing
2025-11-01
Capabilities
ChatReasoningtools
Aliases
qwen-math-turboPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $1.05 |
| Output / 1M | $2.10 |
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-turbo", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)