Qwen3.6 Flash
qwen/qwen3.6-flashA fast multimodal Qwen model.
This model is available through the API. It is not currently offered as an agent's reasoning model.
Use through the API- Price: $0.25Price: $1.50
- Text, Image, Video
- 1M
Overview
A fast multimodal Qwen model. It is billed from the same balance as every other model and API here, and the price of each call comes back in the response.
Pricing
Prices in USD per million tokens, using your plan when signed in.
Each request uses the tier matching its full input context, including cached input. Output tokens do not choose the tier. Choose the row for your cache and thinking modes.
| Input context (tokens) | Cache mode | Thinking | Input | Output | Cache read | Cache write |
|---|---|---|---|---|---|---|
| Up to 256,000 | None | Standard | Price: $0.25 | Price: $1.50 | — | — |
| Up to 256,000 | Explicit | Standard | Price: $0.25 | Price: $1.50 | Price: $0.025 | Price: $0.3125 |
| 256,001–1,000,000 | None | Standard | Price: $1.00 | Price: $4.00 | — | — |
| 256,001–1,000,000 | Explicit | Standard | Price: $1.00 | Price: $4.00 | Price: $0.1 | Price: $1.25 |
Your balance and per-call records come from /v1/credits and /v1/generation.
Use it
Point your client at the gateway and pass this model id. Nothing else changes.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://gateway.agentsky.dev/v1",
apiKey: process.env.AGENTSKY_API_KEY, // ast_…
});
const completion = await client.chat.completions.create({
model: "qwen/qwen3.6-flash",
messages: [{ role: "user", content: "Summarise this ticket." }],
});
console.log(completion.usage.cost); // USD, in the response