Reference
Remy Reference/models/Qwen3.7 Plus
A

Qwen3.7 Plus

Qwen3.7 Plus, a language model from Alibaba Cloud.
modelOverride: { model: "qwen-3.7-plus" }
Qwen·served viaAlibaba Cloud·Released May 2026
Pricing
Input
$0.40 / 1M
Output
$1.60 / 1M
Specifications
Context window
1,000,000 tokens
Max output
64,000 tokens
Released
May 2026
Model string
qwen3.7-plus
Capabilities
VisionLarge contextReasoning
Parameters
Model options, passed in modelOverride.config.
ParameterTypeDefaultRange / options
enable_thinking
When enabled, the model performs an internal chain-of-thought reasoning process before producing its final answer. Improves quality on complex tasks but increases latency and token usage (up to 256K chain-of-thought tokens).
Booleanfalse
Use this model
await mindstudio.generateText({
  message: "...",
  modelOverride: {
    model: "qwen-3.7-plus",
    config: {
      enable_thinking: "false",
    },
  },
});