Reference
A

Qwen3.7 Max

Qwen3.7 Max, a language model from Alibaba Cloud.
modelOverride: { model: "qwen-3.7-max" }
Qwen·served viaAlibaba Cloud·Released May 2026
Pricing
Input
$2.50 / 1M
Output
$7.50 / 1M
Specifications
Context window
1,000,000 tokens
Max output
64,000 tokens
Released
May 2026
Model string
qwen3.7-max
Capabilities
VisionLarge contextReasoning
Parameters
Model options, passed in modelOverride.config.
ParameterTypeDefaultRange / options
enable_thinking
When enabled, the model performs an internal reasoning process before generating its final answer. This improves performance on complex tasks like programming and long-horizon agentic work, but may increase response time.
Booleanfalse
Use this model
await mindstudio.generateText({
  message: "...",
  modelOverride: {
    model: "qwen-3.7-max",
    config: {
      enable_thinking: "false",
    },
  },
});