Qvq Max
Qwen
qwen/qvq-max
Flagship visual reasoning
Context Window
131K
131,072 tokens
Max Output
33K
32,768 tokens
About this model
QVQ-Max is the flagship model in the Qwen visual reasoning series, with deep visual understanding and logical reasoning capabilities. Ideal for complex image analysis and multi-step reasoning tasks.
Supports 131K context window for high-resolution image processing. Access it through Chuizi.AI with a single ck- API key.
Highlights
Flagship visual reasoning
Deep image understanding
Multi-step reasoning
131K context
Best For
Complex image analysisVisual QAChart understandingDocument analysis
2025-12-01
Capabilities
ChatVisionReasoningtools
Aliases
qvq-maxPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $2.10 |
| Output / 1M | $8.40 |
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/qvq-max", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)