Qwen3 Coder 480b
Qwen
qwen/qwen3-coder-480b
480B flagship coding model
Context Window
262K
262,144 tokens
Max Output
66K
65,536 tokens
About this model
Qwen3 Coder 480B is the largest flagship model in the Qwen coding series, with 262K context window and 65K max output.
Ideal for large codebase analysis, complex refactoring, and architecture design. Access via Chuizi.AI with a ck- API key.
Highlights
480B parameters
262K context
65K output
Flagship-grade
Best For
Large refactoringArchitecture designCode reviewComplex programming
2026-04-01
Capabilities
ChatCodeReasoningtools
Aliases
qwen3-coder-480bPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $4.20 |
| Output / 1M | $12.60 |
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-480b", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)