Qwen3.7 Max
廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。 以 70% 快取命中率計算的等效輸入價:$1.1/M. 隱式上下文快取自動生效;顯式 cache_control 模式提供更深折扣(最小塊 1,024 token,5 分鐘 TTL、命中即重置)。各模型快取讀取價見價格表。
30 秒用上 Qwen3.7 Max
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-max",
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-max",
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-max",
"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-max",
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-max")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));關於 Qwen3.7 Max
Qwen3.7 Max 是 Qwen 團隊「智慧體前沿」一代的旗艦,被阿里描述為其迄今最先進、最全面的智慧體模型。
- 它帶來 1M token 上下文視窗,是上一代預覽版上限的兩倍,為跨越數百甚至數千步的長程自主執行而生,包括編碼除錯和辦公流程自動化。
- 它聚焦文本輸入,具備深度推理與工具呼叫。
- Synthorai 把 Qwen3.7 Max 放在其 OpenAI 相容 API 之後,接入無縫。
規格與限制
| 最大輸出(廠商規格) | 65,536 |
| 模態 | text → text |
| 特性 | tools · streaming · batch · reasoning · parallel_tool_calls · caching |
| 備註 | "Agent Frontier" flagship: text-only, thinking on by default, 1M-token context; built for long-horizon autonomous agent runs (officially demonstrated 35-hour session with 1,158 tool calls); not listed for JSON mode. |
| 提示詞快取 | 自動 + 顯式 · TTL explicit: 5m, reset on hit |
常見問題
Qwen3.7 Max API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。以輸入 $2.5/M 計算,光是這筆額度就足以對 Qwen3.7 Max 發出約 49 次 ~8K token 的請求。
Qwen3.7 Max 最擅長什麼?
1M 上下文,前代預覽上限的兩倍,以及長程執行跨越數千步和迄今最先進最全面的智慧體模型。完整能力請見 About 一節,內容取自廠商官方發布說明。
Qwen3.7 Max 的價格是多少?
在 Synthorai 上,Qwen3.7 Max 輸入 $2.5/百萬 token、輸出 $7.5/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.5/M 計費。
Qwen3.7 Max 支援提示詞快取(prompt caching)嗎?
支援:自動快取預設開啟,另有顯式模式可獲得確定的折扣。快取命中的輸入 token 以 $0.5/M 計費(未命中 $2.5/M)(TTL explicit: 5m, reset on hit)。 提示詞快取指南 →
如何開通 Qwen3.7 Max?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "qwen3.7-max" 即可。一組 API key 通用閘道上的所有模型。