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

GPT-6 Astra

發布於 2026-09-03

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

GPT-6 Astra 是 OpenAI 的 GPT-6 旗艦,也是該世代首個在 API 上開放的模型。

輸入
文字 影像 $10/M
輸出
文字 $50/M
快取讀取
$1/M
上下文
1.1M
知識截止
2026-04

輸入超過 272K tokens 時,整筆按輸入 $20/M、輸出 $75/M 計價

Benchmark 成績

高於同儕均值僅 4 項可比
GPT-6 Astra 其他被測模型 同儕均值 無人分數更高
HealthBench
58.1%

廠商公布: Alibaba (Qwen) Anthropic OpenAI

價格在同類中的位置

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

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

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

規格與限制

Token

上下文視窗(廠商規格) 1,050,000
最大輸出(廠商規格) 128,000
知識截止 2026-04

提示詞快取

快取方式 自動
最低前綴 1,024
存活時間 5–10 分鐘,最長 1 小時

思考

廠商參數 reasoning.effort
可選值 none · low · medium · high · xhigh · max
預設值 medium 請求未指定時生效
可關閉 支援
參數 reasoning_effort
取值 minimal · low · medium · high 閘道側參數面——以上方廠商映射為準

模型

模態 文字 + 影像 → 文字
  • OpenAI's GPT-6 flagship. Upstream exposes only the suffixed gpt-6-astra id
  • there is no bare gpt-6 alias. 1.05M context / 128k max output (the output ceiling is the value upstream itself reports when asked for more). Prompts over 272k input tokens move the whole request onto the long-context rate. Two upstream restrictions carry over from the GPT-5.6 family: temperature accepts only its default, and function tools cannot be combined with reasoning on Chat Completions

依據 OpenAI 官方文件 ↗

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

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

GPT-6 Astra 通過 · 3 sentences

Enabling reasoning makes the model do more work per request, often generating internal reasoning tokens that are billed even though they do not appear in the final answer. If traffic, model choice, and pricing stayed the same, those extra tokens likely explain why our bill doubled—not longer answers or more users. We should verify the usage breakdown, then reserve higher reasoning levels for tasks where improved results justify the added cost.

輸出 283 tok (+196 思考) 延遲 17.2 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. 檢查 修復通過測試

GPT-6 Astra 通過 · 8/8 cases

```python def longest_run(xs): if not xs: return 0 best = 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 original code counts equal adjacent pairs rather than items, so every nonempty run is undercounted by one: a single-element input returns `0`, and a run of three equal items returns `2`. Starting and resetting `cur` to `1` counts the first item of each run, while the empty-input check preserves a result of `0`. Updating `best` after each iteration includes runs ending at the last index without needing a final flush; the original also updated during trailing runs, but undercounted them.

輸出 321 tok (+131 思考) 延遲 13.5 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 精確

GPT-6 Astra 通過 · 5/5 fields, guidance "Formal guidance is withheld pending the "

{ "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": null, "growth_pct": "eleven and change", "guidance": "Formal guidance is withheld pending the Q4 close." }

輸出 329 tok (+267 思考) 延遲 16.9 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 個禁用詞

GPT-6 Astra 通過 · 120 words, 0 banned, 1 question

Introducing Cross Provider Prompt Cache, a new API gateway feature that reuses eligible prompt content across supported AI providers. Why pay to process the same context every time? Configure caching once at the gateway, then route requests between models while keeping shared instructions, reference material, and conversation prefixes ready for reuse. Caching controls let teams set expiration windows, isolate tenants, and exclude sensitive content. Cache analytics show hit rates, estimated savings, and latency trends, helping developers tune performance with confidence. Existing routing policies continue to work, so adoption fits your current architecture. Start with a single application, measure the results, and expand as needed. Available today in the dashboard and API, with documentation and examples to guide your first deployment.

輸出 665 tok (+516 思考) 延遲 19.3 s

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

30 秒用上 GPT-6 Astra

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="gpt-6-astra",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

關於 GPT-6 Astra

  • 上游只發布帶後綴的 gpt-6-astra 識別碼,沒有可回退的裸 gpt-6 別名。
  • 它將 1,050,000 token 上下文視窗與 128K 最大輸出 token 結合——這個輸出上限由 API 自身確認,超過時會明確報出限制——並支援文字與圖像輸入、結構化輸出、串流、工具呼叫、提示詞快取與批次處理。
  • 計價依上下文長度分級:輸入不超過 272K token 的提示詞按短上下文價計費,超過則整個請求轉入長上下文價,輸入約為兩倍、輸出約為 1.5 倍。
  • 有兩條來自 GPT-5.6 家族的上游限制值得提前規劃:temperature 只接受預設值,且在 Chat Completions 上函式工具不能與推理同時使用——需要工具時請改用 Responses API 或關閉推理。
  • Synthorai 透過與其餘模型相同的 OpenAI 相容 API 提供 GPT-6 Astra。

常見問題

GPT-6 Astra API 可以免費試用嗎?

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

GPT-6 Astra 最擅長什麼?

OpenAI 的 GPT-6 旗艦,僅以 gpt-6-astra 形式開放、1.05M 上下文,128K 輸出上限由 API 自身確認、以 272K 輸入 token 為界的短/長上下文分級計價。完整能力請見「關於」一節,內容取自廠商官方發布說明。

GPT-6 Astra 的價格是多少?

在 Synthorai 上,GPT-6 Astra 輸入 $10/百萬 token、輸出 $50/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $1/M 計費。

GPT-6 Astra 支援提示詞快取(prompt caching)嗎?

支援,且全自動:由 OpenAI 供應的提示詞會自動快取,無需改程式碼。快取命中的輸入 token 以 $1/M 計費(未命中 $10/M);提示詞需有 1,024 個 token 以上的穩定前綴才能命中快取(TTL 5–10 分鐘,最長 1 小時)。 提示詞快取指南 →

如何開通 GPT-6 Astra?

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

GPT-6 Astra 的知識截止日期是什麼時候?

GPT-6 Astra 的知識截止日期為 2026-04,依據廠商官方文件(資料核驗於 2026-09-07)。

相關模型

對比

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

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