Reference
Remy Reference/models/Qwen3.6 Flash
A

Qwen3.6 Flash

Qwen3.6 Flash, a language model from Alibaba Cloud.
modelOverride: { model: "qwen-3.6-flash" }
Qwen·served viaAlibaba Cloud·Released April 2026
Pricing
Input
$0.25 / 1M
Output
$1.50 / 1M
Specifications
Context window
1,000,000 tokens
Max output
64,000 tokens
Released
April 2026
Model string
qwen3.6-flash
Capabilities
VisionLarge contextReasoning
Parameters
Model options, passed in modelOverride.config.
ParameterTypeDefaultRange / options
enable_thinking
When enabled, the model performs deep thinking before answering, improving performance on complex reasoning, math, and coding tasks. May increase response time and token usage.
Booleanfalse
Use this model
await mindstudio.generateText({
  message: "...",
  modelOverride: {
    model: "qwen-3.6-flash",
    config: {
      enable_thinking: "false",
    },
  },
});