Qwen3.5-Plus balances price and performance with strong reasoning and 29+ language coverage.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.5-plus",
"messages": [{"role":"user","content":"Give three pros and cons of remote work."}]
}'
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.5-plus",
messages=[{"role":"user","content":"Give three pros and cons of remote work."}],
)
print(resp.choices[0].message.content)