Qwen3.5 Plus
厂商牌价,无平台加价,按量付费。 以下为官方 list 价。登录客户可在 /console/pricing 查看含工作空间折扣的实际价格。 按 70% 缓存命中率计算的等效输入价:$0.2005/M. 隐式上下文缓存自动生效;显式 cache_control 模式提供更深折扣(最小块 1,024 token,5 分钟 TTL、命中即重置)。各模型缓存读取价见价格表。
30 秒用上 Qwen3.5 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.5-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.5-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.5-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.5-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.5-plus")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 Qwen3.5 Plus
Qwen3.5 Plus 是 Qwen3.5 一代的旗舰托管档位,这一代是 Qwen 团队「迈向原生多模态智能体」的一步。
- 它构建于把门控线性注意力与稀疏混合专家(MoE)配对的 Qwen3-Next 架构之上,这一代采用早期融合的多模态训练,强调覆盖推理、编码和工具使用的智能体能力,并提供自适应工具调用模式。
- 托管 Plus 档默认提供 1M token 上下文窗口,适合大文档和长程智能体负载。
- Synthorai 通过其 OpenAI 兼容 API 路由 Qwen3.5 Plus 流量。
规格与限制
| 最大输出(厂商规格) | 65,536 |
| 模态 | text + image + video → text |
| 参数量 | 总参数 397B · 激活 17B (MoE) |
| 特性 | tools · structured_output · streaming · vision · batch · reasoning · parallel_tool_calls · caching |
| 备注 | Cloud-hosted counterpart of Qwen3.5-397B-A17B (native VLM, Gated-Delta linear attention + sparse MoE); 1M-token context by default, built-in tools, 201 languages; hybrid thinking on by default. |
| 提示词缓存 | 自动 + 显式 · TTL explicit: 5m, reset on hit |
常见问题
Qwen3.5 Plus API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $0.4/M 计算,仅这笔额度就足够对 Qwen3.5 Plus 发起约 312 次 ~8K token 的请求。
Qwen3.5 Plus 最擅长什么?
早期融合多模态训练,以及自适应工具调用模式和默认 1M token 上下文窗口。完整能力请见 About 部分,内容取自厂商官方发布说明。
Qwen3.5 Plus 的价格是多少?
在 Synthorai 上,Qwen3.5 Plus 输入 $0.4/百万 token、输出 $2.4/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.115/M 计费。
Qwen3.5 Plus 支持提示词缓存(prompt caching)吗?
支持:自动缓存默认开启,另有显式模式可获得确定性折扣。缓存命中的输入 token 按 $0.115/M 计费(未命中 $0.4/M)(TTL explicit: 5m, reset on hit)。 提示词缓存指南 →
如何开通 Qwen3.5 Plus?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "qwen3.5-plus" 即可。一把 API key 通用网关上的全部模型。