新用戶 免費註冊,送 10 次呼叫,最高 $1,免綁卡。

Qwen3.8 Flash

發布於 2026-08-27

chat影像理解程式碼推理工具呼叫提示詞快取

Qwen3.8 Flash 是阿里巴巴通義千問 Qwen3.8 世代中速度快、成本低的一檔,於 2026 年 8 月 27 日發布。

輸入
文字 影像 影片 $0.15/M
輸出
文字 $0.47/M
快取讀取
$0.016/M
上下文
984K
相較 GPT-4o
便宜約 97%

Benchmark 成績

高於同儕均值無人分數更高13 / 163 / 16
Qwen3.8 Flash 其他被測模型 同儕均值 無人分數更高
SWE-Bench Pro
62.5%
OSWorld 2.0 partial
52.3%
JobBench
55.7%
GPQA Diamond
91.7%
ERQA
無人分數更高 72.3%
Agents' Last Exam Pass
24.3%
LVBench
76.6%

廠商公布: Alibaba (Qwen) Anthropic ByteDance DeepSeek Google MiniMax Moonshot OpenAI Tencent Z.ai

價格在同類中的位置

價格在 66 個同類模型中的位置

輸入$0.15/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
輸出$0.47/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
快取讀取$0.016/M
$0.0028 · DeepSeek V4 Flash GPT-5.4 Pro · $15

這條線顯示該模型的價格,在 Synthorai 上同類模型裡處於什麼位置。兩端標出了最便宜和最貴的那個。這裡是基礎價,批次、區域與快取寫入的折扣見價格頁。

規格與限制

Token

上下文視窗(廠商規格) 1,000,000
最大輸出(廠商規格) 131,072

提示詞快取

快取方式 自動 + 顯式
最低前綴 1,024
存活時間 顯式模式:5 分鐘,命中即重置
寫入成本 1.25x

思考

廠商參數 enable_thinking + thinking_budget + preserve_thinking
可選值 enable_thinking true · false; thinking_budget in tokens; preserve_thinking true · false
預設值 on; qwen3.8-flash is hybrid thinking with thinking enabled by default, thinking_budget defaults to the 262,144-token chain maximum, and preserve_thinking is off 請求未指定時生效
可關閉 支援
思考行為 Trace returns in reasoning_content and is dropped from later turns unless preserve_thinking is true, which appends it to the input and bills it as input tokens; qwen3.8-flash is on Alibaba's preserve_thinking list.
參數 reasoning_effort
取值 minimal · low · medium · high 閘道側參數面——以上方廠商映射為準

模型

模態 文字 + 影像 + 影片 → 文字
參數量 總參數 125B · 啟用 6B MoE
  • Multimodal Flash model on the Qwen3.8-Flash-Next architecture (Gated DeltaNet with Qwen Sparse Attention, n-gram embeddings; 51B n-gram embedding parameters on top of the 125B MoE)
  • text, image and video in, text out
  • max input 991,808 tokens, 983,616 in thinking mode
  • reasoning chain up to 262,144 tokens
  • one price for thinking and non-thinking calls with no length tiers
  • batch inference not offered

依據 Alibaba 官方文件 ↗

單一提示詞 — 經由閘道測量

提示詞 Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. 檢查 恰好 3 句

Qwen3.8 Flash 通過 · 3 sentences

Enabling reasoning makes the model spend additional output tokens to plan and validate answers before responding, and those tokens are billed. It also increases compute and latency per request, so each task consumes more capacity than a non-reasoning call. As a result, billable tokens and compute roughly doubled, directly driving the higher invoice.

輸出 330 tok (+262 思考) 延遲 8.9 s

指令遵循(恰好三句,可數)、受眾適配(面向 CFO 的語氣),以及下方 token 計量所暴露的隱藏思考計費缺口。

提示詞 This function is supposed to return the longest run of consecutive equal items, but callers report it is off by one on single-element inputs and misses runs that end at the last index. Fix it and explain the bug in one paragraph. 檢查 修復通過測試

Qwen3.8 Flash 通過 · 8/8 cases

```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 ``` The bug is that the original version counts adjacent equal pairs rather than items in a run, starting both `cur` and `best` at `0`, and it resets `cur` to `0` after a mismatch, thereby discarding the first element of the new run. That makes single-element inputs return `0`, and because every run is effectively measured in “steps” between equal elements, the last element is not counted—particularly noticeable when the longest run ends at the final index.

輸出 2123 tok (+1933 思考) 延遲 43.8 s

修復是否真的正確(可執行)、解釋的資訊密度,以及在一個邊界明確的任務上的 token 效率。

提示詞 Extract a JSON object with fields {company, quarter, revenue_usd_m, growth_pct, guidance} from this text. Use null for anything not stated; add no other fields. 檢查 合法 JSON,schema 精確

Qwen3.8 Flash 通過 · 5/5 fields, guidance null

{ "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": 412, "growth_pct": 11, "guidance": null }

輸出 519 tok (+463 思考) 延遲 10.5 s

schema 服從度(不臆造欄位)、幻覺壓力(guidance 明確被暫緩給出),以及結構化輸出路徑的差異。

提示詞 Write a 120-word product announcement for an API gateway feature that caches prompts across providers. Forbidden words: "seamless", "unlock", "game-changer", "revolutionize", "empower". Exactly one sentence must be a question. 檢查 120 詞,0 個禁用詞

Qwen3.8 Flash 通過 · 120 words, 0 banned, 1 question

We are announcing prompt caching across providers in our API gateway. Store approved prompt outputs once and reuse them across supported model providers, cutting latency, cost, and duplicate token spend. The feature matches identical requests, checks validity, and returns cached results while preserving routing controls. Developers keep existing endpoints; the gateway manages storage, invalidation, and provider differences. This reduces noisy repeat calls, improves steady responses, and frees teams to focus on better agent workflows. OpenAI, Anthropic, Google, Mistral, and custom routes are supported. Cache hits appear in analytics with latency, token, and cost reductions visible. Check retention and privacy rules before enabling it. Ready to add cache controls to your gateway? Enable it in settings and watch spend drop now.

輸出 5958 tok (+5805 思考) 延遲 88.8 s

約束服從度(字數預算、禁用詞表、唯一的那句問句)、文風指紋,以及長度控制。

30 秒用上 Qwen3.8 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.8-flash",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

關於 Qwen3.8 Flash

  • 它建立在一套新架構上,千問團隊稱之為未來 Qwen4 底座的實驗性預覽:混合專家(MoE)模型,總參數 1250 億、每個 token 啟用 60 億,另有 510 億參數的 n-gram 嵌入,並將 Gated DeltaNet 層與新的 Qwen Sparse Attention 搭配使用,阿里表示這能顯著降低長輸入的延遲。
  • 該架構的開源權重版本是 Qwen3.8-Flash-Next;託管模型被描述為它的正式生產版本,預設開啟 1M token 上下文,並附帶阿里的內建工具。
  • 它接受文字、圖像與影片輸入並回傳文字,輸出最高 131,072 token。
  • 思考為混合模式且預設開啟:enable_thinking 可依請求關閉,thinking_budget 可設定上限,思維軌跡於 reasoning_content 回傳並按輸出計費。
  • 它也在阿里的 preserve_thinking 支援清單中,因此智慧代理可以把先前的推理帶入後續輪次,而不必重新推導。
  • 官方列出的能力包括函式呼叫、結構化輸出、前綴續寫、聯網搜尋與上下文快取;不支援批次推理。
  • 阿里自己的選型建議將它列為從 Qwen3.7 Plus 降低成本、同時維持相近能力的選擇。
  • 計價比它之前的 Qwen3.7 Flash 更簡單——後者依上下文長度分三檔計費,而 Qwen3.8 Flash 在整個視窗內只有一個統一單價,思考與非思考呼叫同價,快取命中約為標準輸入價的十分之一,無論快取是自動建立還是顯式建立。
  • Synthorai 透過 OpenAI 相容的 chat completions 端點提供此模型。

常見問題

Qwen3.8 Flash API 可以免費試用嗎?

可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。以輸入 $0.15/M 計算,光是這筆額度就足以對 Qwen3.8 Flash 發出約 833 次 ~8K token 的請求。

Qwen3.8 Flash 最擅長什麼?

1250 億參數 MoE,每 token 啟用 60 億、文字、圖像與影片輸入,輸出最高 131K、1M 上下文內統一單價。完整能力請見「關於」一節,內容取自廠商官方發布說明。

Qwen3.8 Flash 的價格是多少?

在 Synthorai 上,Qwen3.8 Flash 輸入 $0.15/百萬 token、輸出 $0.47/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.016/M 計費。

Qwen3.8 Flash 支援提示詞快取(prompt caching)嗎?

支援:自動快取預設開啟,另有顯式模式可獲得確定的折扣。快取命中的輸入 token 以 $0.016/M 計費(未命中 $0.15/M);提示詞需有 1,024 個 token 以上的穩定前綴才能命中快取(TTL 顯式模式:5 分鐘,命中即重置)。 提示詞快取指南 →

如何開通 Qwen3.8 Flash?

把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "qwen3.8-flash" 即可。一組 API key 通用閘道上的所有模型。

相關模型

對比

本頁每個值都轉錄自廠商自己的文件(連結見上),並帶有核對日期。價格在全目錄範圍內比較;各廠商定義不同的規格值,只說明差異而不作圖表對比。此處沒有任何由我們測量的資料,也不做評分。

取得 API 金鑰 算算你的成本 →