Qwen3 Coder Plus
Qwen
qwen/qwen3-coder-plus
262K context
Context Window
262K
262,144 tokens
Max Output
66K
65,536 tokens
About this model
Specialized coding model by Qwen
This model supports up to 262K tokens of context. It provides strong code generation and debugging capabilities.
Access it through Chuizi.AI with a single ck- API key β no separate Alibaba account needed.
Highlights
262K context window
66K max output
Strong code generation
Best For
Code generationRefactoringDebuggingDocumentation
2025-07-22
Capabilities
ChatCodetools
Aliases
qwen3-coder-plusPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.59 |
| Output / 1M | $2.31 |
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/qwen3-coder-plus", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)