| qwen3.7-max | qwen3.7-plus | |
|---|---|---|
| Providers | Alibaba Qwen | Alibaba Qwen |
| Input $/M | $1.82 | $0.30 |
| Output $/M | $5.45 | $1.21 |
| Output multiplier | ×3.00 | ×4.00 |
| Context window | 1M tokens | 1M tokens |
| Intelligence index | — | — |
| Coding index | 66.0 | 55.9 |
qwen3.7-plus is roughly 6.0× cheaper on input than qwen3.7-max. If your workload passes the quality bar on the cheaper model, that gap compounds across every request; route to qwen3.7-max deliberately rather than by default.
Tags: qwen3.7-max — Chat, Reasoning, Coding, Vision · qwen3.7-plus — Chat, Reasoning, Coding, Vision
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# qwen3.7-max
client.chat.completions.create(model="qwen3.7-max", messages=[{"role":"user","content":"Hi"}])
# qwen3.7-plus
client.chat.completions.create(model="qwen3.7-plus", messages=[{"role": "user", "content": "Hi"}])