Home โบ Models โบ Qwen3.7-Max
Alibaba's Qwen3.7-Max flagship โ strong reasoning across languages, served at 40% below official pricing on the same OpenAI-compatible endpoint.
FlagshipBest for: Alibaba flagship โ 40% below official pricing.
| Specification | Value |
|---|---|
| Official price | $1.69 / $5.07 per 1M tokens save 40% |
| Bridge price | $1.01 / $3.04 per 1M tokens |
| Cached input | $0.20 per 1M tokens |
| Context window | 128K tokens |
| Max output | 16,384 tokens |
| Strengths | Reasoning, general, multilingual |
from openai import OpenAI
client = OpenAI(base_url="https://bridge.computeindex.net/v1", api_key="sk-bridge-YOUR_KEY")
completion = client.chat.completions.create(
model="qwen3.7-max",
messages=[{"role": "user", "content": "Explain gradient descent in two paragraphs."}],
)
print(completion.choices[0].message.content)
Is this the same Qwen3.7-Max as Alibaba Cloud's official? Yes โ the same model, served through the Bridge OpenAI-compatible gateway.
Qwen3.7-Max or Qwen2.5 72B? Qwen3.7-Max for reasoning quality; open-weights Qwen2.5 72B for the lowest per-token cost at scale.