Alibaba's newest flagship (2026-04). Top-tier reasoning and agentic performance among the Qwen lineage. Exclusively available on NovAI's DashScope-compatible gateway.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.6-max-preview",
"messages": [{"role":"user","content":"Analyze the pros and cons of MoE vs dense LLM architectures."}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
model="qwen3.6-max-preview",
messages=[{"role":"user","content":"Analyze the pros and cons of MoE vs dense LLM architectures."}],
)
print(resp.choices[0].message.content)