Skip to content

Qwen

Qwen models are versatile general-purpose chat models spanning fast, economical options to high-capability variants.

Models

Model Code Notes
Qwen3.7 Max qwen3.7-max Latest high-capability line.
Qwen3.7 Plus qwen3.7-plus Latest, cost-effective multimodal.
Qwen3.6 Plus qwen3.6-plus High capability.
Qwen3.5 Plus qwen3.5-plus Balanced.
Qwen3.5 Flash qwen3.5-flash Fast variant.
Qwen3 Max qwen3-max High capability.
Qwen Turbo qwen-turbo Fast and economical.

Capabilities

  • tools, tool_choice
  • temperature, top_p, max_tokens, response_format
  • top_k via extra_body (forwarded where supported)

See Parameter Support by Model for the full matrix.

Example

from openai import OpenAI

client = OpenAI(base_url="https://llm.siraya.ai/v1", api_key="<API_KEY>")
resp = client.chat.completions.create(
    model="qwen3-max",
    messages=[{"role": "user", "content": "Translate to French: Good morning."}],
)
print(resp.choices[0].message.content)