Qwen3 Max
廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。 以 70% 快取命中率計算的等效輸入價:$0.6113/M. 隱式上下文快取自動生效;顯式 cache_control 模式提供更深折扣(最小塊 1,024 token,5 分鐘 TTL、命中即重置)。各模型快取讀取價見價格表。
30 秒用上 Qwen3 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-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-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-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-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-max")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));關於 Qwen3 Max
Qwen3-Max 是 Qwen 團隊的萬億引數級旗艦,在官方文章「Qwen3-Max: Just Scale」中釋出,具備 256K token 上下文。
- 阿里報告它在自家的知識、推理、編碼、指令遵循、智慧體任務和多語言理解評測中取得最先進的結果。
- 該產品線提供 Instruct 形態,另有整合程式碼直譯器和自適應工具使用的 Thinking 變體,用於更難的推理問題。
- 作為 Qwen3 系列最大的模型,它面向高要求的生產負載。
- Synthorai 透過 OpenAI 相容 chat 端點提供它。
規格與限制
| 最大輸出(廠商規格) | 65,536 |
| 模態 | text → text |
| 參數量 | 總參數 1T+ (MoE) |
| 特性 | tools · structured_output · streaming · batch · reasoning · parallel_tool_calls · caching |
| 備註 | First trillion-plus-parameter Qwen flagship (closed weights), text-only; officially positioned for agentic coding and tool calling; hybrid thinking, disabled by default. |
| 提示詞快取 | 自動 + 顯式 · TTL explicit: 5m, reset on hit |
常見問題
Qwen3 Max API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。以輸入 $1.2/M 計算,光是這筆額度就足以對 Qwen3 Max 發出約 104 次 ~8K token 的請求。
Qwen3 Max 最擅長什麼?
萬億引數級旗艦,256K 上下文,以及Thinking 變體整合程式碼直譯器和自適應工具使用應對難題。完整能力請見 About 一節,內容取自廠商官方發布說明。
Qwen3 Max 的價格是多少?
在 Synthorai 上,Qwen3 Max 輸入 $1.2/百萬 token、輸出 $6/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.359/M 計費。
Qwen3 Max 支援提示詞快取(prompt caching)嗎?
支援:自動快取預設開啟,另有顯式模式可獲得確定的折扣。快取命中的輸入 token 以 $0.359/M 計費(未命中 $1.2/M)(TTL explicit: 5m, reset on hit)。 提示詞快取指南 →
如何開通 Qwen3 Max?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "qwen3-max" 即可。一組 API key 通用閘道上的所有模型。