阿里云
Qwen3.6-Plus
阿里云 Qwen3.6-Plus 通用大语言模型,采用 256K 分档计费,适合文本生成与推理场景
模型类型大语言模型 (LLM)
输入/输出计费(<=256K)输入 ¥2 / M tokens;输出 ¥12 / M tokens
输入/输出计费(>256K)输入 ¥8 / M tokens;输出 ¥48 / M tokens
定价与规格
💰 定价
输入¥2 / M tokens
输出¥12 / M tokens
⚙️ 规格
模型类型大语言模型 (LLM)
输入/输出计费(<=256K)输入 ¥2 / M tokens;输出 ¥12 / M tokens
输入/输出计费(>256K)输入 ¥8 / M tokens;输出 ¥48 / M tokens
分档阈值输入超过 256K tokens 时使用高阶计费
API 调用示例
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.xairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.xairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "qwen3.6-plus",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'