| qwen3.6-plus | qwen3.7-plus | |
|---|---|---|
| Providers | Qwen | Qwen |
| Input $/M | $0.30 | $0.30 |
| Output $/M | $1.82 | $1.21 |
| Output multiplier | ×6.00 | ×4.00 |
| Context window | 1M tokens | 1M tokens |
| Intelligence index | — | — |
| Coding index | — | 55.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.6-plus — 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.6-plus
client.chat.completions.create(model="qwen3.6-plus", messages=[{"role":"user","content":"Hi"}])
# qwen3.7-plus
client.chat.completions.create(model="qwen3.7-plus", messages=[{"role": "user", "content": "Hi"}])