Qwen3.7 Plus
Qwen
qwen/qwen3.7-plus
Multimodal agent upgrade
Context Window
1.0M
1,048,576 tokens
Max Output
66K
65,536 tokens
About this model
Qwen 3.7 Plus is the cost-effective multimodal agent model in Alibaba's Qwen 3.7 series. It supports a 1M token context window and is designed for text generation, vision understanding, coding, tool use, and GUI/screen understanding workflows.
Compared with 3.6 Plus, it places more emphasis on multimodal interaction in real productivity flows: reading screenshots, understanding interfaces, generating code from visual references, and staying reliable in long-context tasks.
Highlights
1M context
Image/video input
Agent workflows
Tool use
Best For
Multimodal agentsScreenshot/UI understandingCode generationLong-context productivity
2026-06-01MoE TransformerProprietary
Capabilities
ChatVisionReasoningCodetoolscache
Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.420 |
| Output / 1M | $1.68 |
| Cache Read | $0.042 |
| Cache Write | $0.525 |
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.7-plus", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)