All models

Qwen 3.7 Max

textReasoning

Alibaba Qwen flagship — top benchmarks, reasoning.

Pricing

1.88 $
Request / 1M
5.63 $
Response / 1M

Price uses the live FX rate — shown equals charged.

Parameters

messagesrequired
reasoning_effortoff · low · medium · high
temperature0–2
max_tokensoptional
streamtrue · false

How to use via API

from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
resp = client.chat.completions.create(
model="qwen/qwen3.7-max",
messages=[{"role": "user", "content": "Привет"}],
reasoning_effort="low", # off · low · medium · high
temperature=0.7,
max_tokens=1024,
stream=False,
)
print(resp.choices[0].message.content)