| qwen3.7-max | qwen3.8-max | |
|---|---|---|
| Providers | Alibaba Qwen | Alibaba Qwen |
| Input $/M | $1.82 | $1.82 |
| Output $/M | $5.45 | $5.45 |
| Output multiplier | ×3.00 | ×3.00 |
| Context window | 1M tokens | 1.05M tokens |
| Intelligence index | — | 53.4 |
| Coding index | 66.0 | 68.9 |
Input pricing is close — 1.00× apart — so the decision should come down to measured quality on your own evaluation set rather than headline cost.
Tags: qwen3.7-max — Chat, Reasoning, Coding, Vision · qwen3.8-max — 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.8-max
client.chat.completions.create(model="qwen3.8-max", messages=[{"role": "user", "content": "Hi"}])