Models
Qwen 3.6 Flash
Model id: alibaba_qwen/qwen3.6-flash
- Cost
- Fast
- Coding
- Vision
- Long context
Alibaba Qwen 3.6 Flash via Model Studio for fast, efficient chat and light agent loops.
Best for
high-volume Qwen traffic when Max or Plus is more than you need.
- Provider
- Alibaba Cloud Model Studio
- Context window
- 1,000,000
- Release date
- 2026-06-01
- Reasoning effort
- nonelowmediumhighDefault: none
Pricing
Input
$0.3858 / 1M
Output
$2.3148 / 1M
Long-context rate (above 256,000 tokens)
Input
$1.5432 / 1M
Output
$6.1728 / 1M
Amounts in Canadian dollars, converted at the Bank of Canada indicative rate (2026-07-31).
Performance
Reading
Last 7 days
Not enough data to display the chart.
Activity
Tokens
—
—
—
—
—
Top 5 tools · last 7 days
Not enough data to display tool activity.
Availability
Availability (%)
Last 7 days
- Operational probes
- 100% over 7 days
- Samples
- 8,608
Quick start
Call the API with a tonia_ key and the exact model id below.
curl
curl https://pass.tonia.ca:8443/v1/chat/completions \
-H "Authorization: Bearer $TONIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "alibaba_qwen/qwen3.6-flash",
"messages": [{"role":"user","content":"Bonjour"}]
}'Python (OpenAI SDK)
import os
from openai import OpenAI
client = OpenAI(
base_url="https://pass.tonia.ca:8443/v1",
api_key=os.environ["TONIA_API_KEY"],
)
response = client.chat.completions.create(
model="alibaba_qwen/qwen3.6-flash",
messages=[{"role": "user", "content": "Bonjour"}],
)TypeScript (OpenAI SDK)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://pass.tonia.ca:8443/v1",
apiKey: process.env.TONIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "alibaba_qwen/qwen3.6-flash",
messages: [{ role: "user", content: "Bonjour" }],
});