Qwen3.7 Plus 是 Qwen3.7 一代的多模态主力,Qwen 团队把这一代称为「智能体前沿」。
- 输入
- 文本 图像 视频 $0.4/M
- 输出
- 文本 $1.6/M
- 缓存读取
- $0.08/M
- 上下文
- 1M
- 对比 GPT-4o
- 便宜约 92%
Benchmark 成绩
厂商公布: Alibaba (Qwen) Anthropic ByteDance DeepSeek Google MiniMax Moonshot OpenAI Tencent Z.ai
价格在同类中的位置
价格在 60 个同类模型中的位置
这条线显示该模型的价格,在 Synthorai 上同类模型里处于什么位置。两端标出了最便宜和最贵的那个。这里是基础价,批量、区域和缓存写入的折扣见价格页。
规格与限制
Token
| 上下文窗口(厂商规格) | 1,000,000 |
|---|---|
| 最大输出(厂商规格) | 65,536 |
提示词缓存
| 缓存方式 | 自动 + 显式 |
|---|---|
| 最低前缀 | 1,024 |
| 存活时间 | 显式模式:5 分钟,命中即重置 |
| 写入成本 | 1.25x |
思考
| 厂商参数 | enable_thinking + thinking_budget + preserve_thinking |
|---|---|
| 可选值 | enable_thinking true · false; thinking_budget in tokens; preserve_thinking true · false |
| 默认值 | 开启;Qwen3.7 Plus 系列为混合思考,思考默认启用,preserve_thinking 则为关闭 请求未指定时生效 |
| 可关闭 | 支持 |
| 思考行为 | 思维链通过 reasoning_content 返回,除非 preserve_thinking 为 true,否则会在之后的轮次中被丢弃;设为 true 时它会被追加到输入中并按输入 token 计费 |
| 参数 | reasoning_effort |
| 取值 | minimal · low · medium · high 网关侧参数面——以上方厂商映射为准 |
模型
| 模态 | 文本 + 图像 + 视频 → 文本 |
|---|
- 统一视觉与语言的多模态智能体模型
- 官方具备统一的 GUI 与 CLI 操作以及编码智能体能力
- 1M token 上下文
- 混合思考默认开启
单个 Prompt —— 通过网关实测
Qwen3.7 Plus 通过 · 3 sentences
Enabling reasoning requires the model to generate extensive internal "thinking" tokens to process complex logic before delivering a final answer. Because our vendor charges us per token consumed, this hidden computational overhead effectively doubles our output volume for the exact same number of user requests. Consequently, our costs have doubled because we are now paying for the model's increased processing time to achieve higher-quality, more accurate results.
输出 1428 tok (+1345 思考) 延迟 25.2 s
指令遵循(恰好三句,可数)、受众适配(面向 CFO 的语气),以及下方 token 计量所暴露的隐藏思考计费缺口。
Qwen3.7 Plus 通过 · 8/8 cases
## Fixed Code ```python def longest_run(xs): if not xs: return 0 best = 1 cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 else: cur = 1 best = max(best, cur) return best ``` ## Bug Explanation The function has two related bugs rooted in how it counts run lengths. First, `cur` is initialized to `0` and only incremented on matches, so it counts the number of *transitions* between equal elements rather than the total elements in the run—a run of N identical items only reaches `cur = N − 1`, undercounting by one. This also causes the single-element case to return `0`, since the loop never executes and `cur` never increments. […]
输出 2317 tok (+2005 思考) 延迟 40.5 s
修复是否真的正确(可运行)、解释的信息密度,以及在一个边界明确的任务上的 token 效率。
Qwen3.7 Plus 通过 · 5/5 fields, guidance null
{ "company": "Meridian Robotics", "quarter": "September", "revenue_usd_m": 412, "growth_pct": 11, "guidance": null }
输出 1807 tok (+1750 思考) 延迟 31.6 s
schema 服从度(不臆造字段)、幻觉压力(guidance 明确被暂缓给出),以及结构化输出路径的差异。
Qwen3.7 Plus 通过 · 120 words, 0 banned, 1 question
Introducing PromptCache, our new API gateway feature designed to store and reuse prompts across multiple artificial intelligence providers. Have you ever noticed how repeatedly sending identical queries drains your budget and increases latency? PromptCache solves this by intelligently storing responses at the gateway level. When your application requests the same prompt from a different provider, the system instantly returns the cached result. This drastically reduces API costs and accelerates response times for your users. You can configure custom expiration times and set specific fallback rules for each vendor. You must stop paying twice for the exact same computation. Please upgrade your entire infrastructure today and experience much faster and cheaper integrations without changing a single line of your application code.
输出 4453 tok (+4312 思考) 延迟 76.8 s
约束服从度(字数预算、禁用词表、唯一的那句问句)、文风指纹,以及长度控制。
30 秒用上 Qwen3.7 Plus
OpenAI 兼容:换掉 base_url,SDK 不用改。POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="qwen3.7-plus",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "qwen3.7-plus",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.7-plus",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "qwen3.7-plus",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("qwen3.7-plus")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 Qwen3.7 Plus
- 它在这一代的智能体骨干之上扩展出图像和视频理解,同时保留深度推理、编码能力和工具调用,并带有面向长程会话的 1M token 上下文窗口。
- 它被定位为 Qwen3.7 Max 的均衡、低成本同门,接受文本和视觉输入并返回文本,因而适合屏幕感知型智能体和文档工作流。
- 阿里描述它能感知真实世界场景、读屏并操作 GUI、依据视觉参考生成代码,以及端到端地操作一个移动应用。
- 它也是阿里在整个产品阵容中默认推荐的档位,理由是性能与成本均衡、工具调用完整,且上下文足以容纳一个大型代码库。
- 文档记载的输入限制异常具体:单次请求最多 2,048 张图片或 64 个视频,视频最长两小时、最大 2 GB,输出最高 65,536 token。
- 思考是混合式的且默认开启,可按请求用 enable_thinking 关闭、用 thinking_budget 设上限,并单独返回在 reasoning_content 中,按输出计费;与旗舰一样,它是阿里文档中记载支持 preserve_thinking 的模型之一,把推理跨轮保留,让多步智能体运行无需重新推导先前的决策即可保持一致。
- 文档为它列出结构化输出、函数调用、内置工具、批量推理和两种缓存模式。
- Synthorai 通过 OpenAI 兼容端点提供它。
常见问题
Qwen3.7 Plus API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $0.4/M 计算,仅这笔额度就足够对 Qwen3.7 Plus 发起约 312 次 ~8K token 的请求。
Qwen3.7 Plus 最擅长什么?
新增图像与视频理解、旗舰的均衡低成本同门、适合屏幕感知智能体与文档。完整能力请见「关于」部分,内容取自厂商官方发布说明。
Qwen3.7 Plus 的价格是多少?
在 Synthorai 上,Qwen3.7 Plus 输入 $0.4/百万 token、输出 $1.6/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.08/M 计费。
Qwen3.7 Plus 支持提示词缓存(prompt caching)吗?
支持:自动缓存默认开启,另有显式模式可获得确定性折扣。缓存命中的输入 token 按 $0.08/M 计费(未命中 $0.4/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存(TTL 显式模式:5 分钟,命中即重置)。 提示词缓存指南 →
如何开通 Qwen3.7 Plus?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "qwen3.7-plus" 即可。一把 API key 通用网关上的全部模型。
相关模型
对比
本页每个值都转录自厂商自己的文档(链接见上),并带有核对日期。价格在全目录范围内比较;各厂商定义不同的规格值,只说明差异而不作图表对比。此处没有任何由我们测量的数据,也不做评分。