← All models

Qwen 3.7 Flash
qwen/qwen3.7-flashtextVisionReasoning
The fastest and cheapest model in the Qwen 3.7 line: reasoning, image input and a 1M-token context. Built for everyday work where speed and volume matter — long-text analysis, drafts, simple code.
Pricing
Request / 1M
Response / 1M
Parameters
messagesrequiredtemperature0–2max_tokensoptionalstreamtrue · falseimage_urlimage (data: URL)How to use via API
from openai import OpenAIclient = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")resp = client.chat.completions.create(model="qwen/qwen3.7-flash",messages=[{"role": "user", "content": "Привет"}],temperature=0.7,max_tokens=1024,stream=False,)print(resp.choices[0].message.content)# Стриминг: stream=True — ответ приходит чанкамиfor chunk in client.chat.completions.create(model="qwen/qwen3.7-flash",messages=[{"role": "user", "content": "Привет"}],stream=True,):print(chunk.choices[0].delta.content or "", end="", flush=True)
