Text
Qwen3.6 Plus (2026-04-02)
Qwen3.6 Plus is an advanced model in the Qwen3.6 series, designed with enhanced efficiency and performance through improvements in hybrid attention mechanisms and optimized Mixture-of-Experts (MoE).
Model ID
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Qwen3.6 Plus is an advanced model in the Qwen3.6 series, designed with enhanced efficiency and performance through improvements in hybrid attention mechanisms and optimized Mixture-of-Experts (MoE).
Qwen/Qwen3.6-Plus-2026-04-02
curl --request POST \
--url https://api.gmi-serving.com/v1/chat/completions \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer *************' \
--data '{
"model": "Qwen/Qwen3.6-Plus",
"messages": [
{"role": "system", "content": "You are a helpful AI assistant"},
{"role": "user", "content": "List 3 countries and their capitals."}
],
"temperature": 0,
"max_completion_tokens": 500
}'
import requests
import json
url = "https://api.gmi-serving.com/v1/chat/completions"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer *************"
}
payload = {
"model": "Qwen/Qwen3.6-Plus",
"messages": [
{"role": "system", "content": "You are a helpful AI assistant"},
{"role": "user", "content": "List 3 countries and their capitals."}
],
"temperature": 0,
"max_completion_tokens": 500
}
response = requests.post(url, headers=headers, json=payload)
print(json.dumps(response.json(), indent=2))