AlibabaText / LLM

qwen3.6-plus

Alibaba flagship text model — great for chat, code, tool calling and agent workflows.

Capabilities

  • Text

Call it (OpenAI-compatible)

Point base_url at WanAPIs and keep your existing OpenAI SDK.

cURL
curl https://api.wanapis.com/v1/chat/completions \
  -H "Authorization: Bearer $WANAPIS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3.6-plus",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
Python
from openai import OpenAI

client = OpenAI(
    api_key="$WANAPIS_API_KEY",
    base_url="https://api.wanapis.com/v1",
)

resp = client.chat.completions.create(
    model="qwen3.6-plus",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

More Alibaba models

Integrate qwen3.6-plus in minutes

Sign up for free trial credit and go live by changing one base_url line.