Qwen (pronounced "Quen") is developed by Alibaba Cloud's Qwen team, part of the Tongyi Lab. The Qwen series has evolved rapidly since its first release, with Qwen-Plus representing the latest production-ready tier optimized for both quality and speed.
Unlike some models that are primarily English-centric, Qwen was trained on a massive corpus that includes Chinese, English, Japanese, Korean, and dozens of other languages from the ground up. This isn't "translation layer" multilingualism — it's native multilingual capability.
| Feature | Details |
|---|---|
| Parameters | 72B (dense) + MoE variants available |
| Context Window | 128K tokens |
| Languages | 29 languages including EN, ZH, JA, KO, FR, DE, ES, RU, AR |
| Code | 100+ programming languages supported |
| Function Calling | Yes — native tool use |
| Vision | Yes — image understanding via Qwen-VL |
| MMLU | 83.5 (competitive tier) |
| HumanEval | 84.6 (strong coding) |
| Dimension | Qwen-Plus | DeepSeek V4 | GLM-5.1 | GPT-5 |
|---|---|---|---|---|
| Multilingual | ⭐⭐⭐⭐⭐ Best (29 langs) | ⭐⭐⭐⭐☆ Very Good | ⭐⭐⭐⭐⭐ Best | ⭐⭐⭐⭐☆ Good |
| Coding | ⭐⭐⭐⭐☆ Strong | ⭐⭐⭐⭐⭐ Best | ⭐⭐⭐⭐☆ Strong | ⭐⭐⭐⭐⭐ Best |
| Chinese | ⭐⭐⭐⭐⭐ Native | ⭐⭐⭐⭐☆ Very Good | ⭐⭐⭐⭐⭐ Best | ⭐⭐⭐☆☆ Good |
| Speed | ⭐⭐⭐⭐⭐ Fastest | ⭐⭐⭐⭐☆ Fast | ⭐⭐⭐⭐☆ Fast | ⭐⭐⭐⭐⭐ Fastest |
| Price/1M input | $0.40 | $0.50 | $0.50 | $2.50 |
| Price/1M output | $1.20 | $2.00 | $1.50 | $10.00 |
Qwen's native multilingual training makes it exceptional at tasks like: translating product descriptions, generating localized marketing copy, and handling customer support in multiple Asian languages simultaneously. No other model handles Chinese↔English↔Japanese↔Korean transitions as naturally.
Qwen-Plus is particularly strong at extracting structured information from unstructured text — invoices, contracts, forms. Its training on Alibaba's massive e-commerce dataset gives it an edge in understanding business documents.
With the fastest inference speed among Chinese models and the lowest input pricing, Qwen-Plus is ideal for applications that process large volumes of text: log analysis, content moderation, batch document processing.
qwen in API callsfrom openai import OpenAI
client = OpenAI(
api_key="your-tokenease-api-key",
base_url="https://tokenease.io/v1"
)
response = client.chat.completions.create(
model="qwen",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Explain how neural networks work in 3 sentences."}
]
)
print(response.choices[0].message.content)
response = client.chat.completions.create(
model="qwen",
messages=[
{"role": "user", "content": "请用日语、韩语和英语各说一句'你好,世界'"}
]
)
# Qwen natively understands and responds in the requested languages
print(response.choices[0].message.content)
# Qwen's 128K context means you can send ENTIRE documents
with open("long_report.txt", "r") as f:
document = f.read()
response = client.chat.completions.create(
model="qwen",
messages=[
{"role": "user", "content": f"Summarize this report in bullet points:\n\n{document}"}
],
max_tokens=2000
)
print(response.choices[0].message.content)
response = client.chat.completions.create(
model="qwen",
messages=[{
"role": "user",
"content": "Extract name, email, and company from: 'John Doe from Acme Inc, john@acme.com'"
}],
response_format={"type": "json_object"}
)
import json
result = json.loads(response.choices[0].message.content)
print(result)
# Output: {"name": "John Doe", "company": "Acme Inc", "email": "john@acme.com"}
| Provider | Input / 1M | Output / 1M | 128K Context |
|---|---|---|---|
| TokenEase (Qwen) | $0.40 | $1.20 | ✅ Yes |
| DashScope Direct | $0.40 | $1.20 | ✅ Yes |
| OpenRouter (Qwen) | $0.44 | $1.32 | ✅ Yes |
| Together AI (Qwen) | $0.48 | $1.44 | ✅ Yes |
| GPT-5 | $2.50 | $10.00 | ✅ Yes |
Most developers underutilize long context. With 128K tokens, you can:
Since Qwen-Plus has the cheapest input pricing, design your prompts to:
0.0-0.3 — Data extraction, classification, deterministic tasks0.5-0.7 — General conversation, balanced creativity0.8-1.0 — Creative writing, brainstorming, marketing copy# For business analysis
"You are a senior business analyst. Provide structured, data-driven insights."
# For creative writing
"You are a creative copywriter. Write engaging, persuasive content."
# For technical tasks
"You are a principal software engineer. Write production-ready code with comments."
# For multilingual
"You are a professional translator. Maintain tone and context across languages."
Based on TokenEase usage data from August 2026:
Model name: qwen
Base URL: https://tokenease.io/v1
Max context: 128K tokens
Input price: $0.40 / 1M tokens
Output price: $1.20 / 1M tokens
Free credit: $1 (≈2.5M input tokens)
Python SDK: pip install openai
TokenEase provides unified access to China's best AI models — Qwen-Plus, DeepSeek V4, GLM-5.1, Kimi K3, and Doubao Pro — through a single OpenAI-compatible API. One key, six providers, zero complexity.