Qwen3 VL Flash
廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。 以 70% 快取命中率計算的等效輸入價:$0.0304/M. 隱式上下文快取自動生效;顯式 cache_control 模式提供更深折扣(最小塊 1,024 token,5 分鐘 TTL、命中即重置)。各模型快取讀取價見價格表。
30 秒用上 Qwen3 VL Flash
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-vl-flash",
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-vl-flash",
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-vl-flash",
"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-vl-flash",
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-vl-flash")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));關於 Qwen3 VL Flash
Qwen3-VL Flash 是 Qwen3-VL 視覺語言系列中快速、高性價比的檔位,具備 256K token 上下文。
- 按官方 Model Studio 文件,它可處理單圖與多圖輸入、影片幀分析、影像描述、視覺問答、2D 與 3D 目標定位,以及把文件解析為 HTML 或 Markdown。
- 它是混合思考模型:既可先逐步推理再作答,也可直接回復,思考預設關閉。
- Synthorai 透過 OpenAI 相容端點為多模態聊天提供它。
規格與限制
| 模態 | text + image + video → text |
| 特性 | tools · structured_output · streaming · vision · batch · reasoning · parallel_tool_calls · caching |
| 備註 | Small-size Qwen3-VL visual-understanding model; hybrid thinking (off by default); video input up to 1 hour / 2GB; structured output in non-thinking mode only. |
| 提示詞快取 | 自動 + 顯式 · TTL explicit: 5m, reset on hit |
常見問題
Qwen3 VL Flash API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。以輸入 $0.05/M 計算,光是這筆額度就足以對 Qwen3 VL Flash 發出約 2,500 次 ~8K token 的請求。
Qwen3 VL Flash 最擅長什麼?
2D 與 3D 目標定位,以及文件解析為 HTML 或 Markdown和混合思考,預設關閉。完整能力請見 About 一節,內容取自廠商官方發布說明。
Qwen3 VL Flash 的價格是多少?
在 Synthorai 上,Qwen3 VL Flash 輸入 $0.05/百萬 token、輸出 $0.4/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.022/M 計費。
Qwen3 VL Flash 支援提示詞快取(prompt caching)嗎?
支援:自動快取預設開啟,另有顯式模式可獲得確定的折扣。快取命中的輸入 token 以 $0.022/M 計費(未命中 $0.05/M)(TTL explicit: 5m, reset on hit)。 提示詞快取指南 →
如何開通 Qwen3 VL Flash?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "qwen3-vl-flash" 即可。一組 API key 通用閘道上的所有模型。