ByteDance Seed 1.8
廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。 以 70% 快取命中率計算的等效輸入價:$0.11/M. Seed 語言模型預設開啟隱式前綴快取(最小 1,024 token,無儲存費);另有顯式的上下文快取 API。媒體模型(影像 / ASR)不可快取。
30 秒用上 ByteDance Seed 1.8
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="ByteDance-Seed-1.8",
messages=[{"role": "user", "content": "Summarize this diff"}],
)
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: "ByteDance-Seed-1.8",
messages: [{ role: "user", content: "Summarize this diff" }],
});
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": "ByteDance-Seed-1.8",
"messages": [{"role": "user", "content": "Hello"}]
}'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: "ByteDance-Seed-1.8",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("ByteDance-Seed-1.8")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));關於 ByteDance Seed 1.8
ByteDance-Seed-1.8 是 BytePlus ModelArk 上的深度思考模型,目前處於 beta 階段。
- 其模型頁稱它具備更強的多模態理解與智慧體能力,並在大量複雜真實任務中表現出色;釋出說明還提到升級的多模態理解和更靈活的上下文管理。
- 它接受文本、影像和影片輸入並輸出文本,提供 256K 上下文視窗、224K 最大輸入、64K 輸出(含 32K 思維鏈預算),並支援函式呼叫、結構化輸出和上下文快取。
- Synthorai 透過其 OpenAI 相容閘道器端點提供該模型。
規格與限制
| 最大輸出(廠商規格) | 65,536 |
| 模態 | text + image + video → text |
| 特性 | tools · structured_output · streaming · vision · batch · reasoning · caching |
| 備註 | Generalized agentic model (search/code/GUI-agent capabilities, native vision); ModelArk id seed-1-8 (version seed-1-8-251228, Beta); 256K context, 64K max output incl. CoT; deep reasoning minimal/low/medium/high; strict-mode function calling. |
| 提示詞快取 | 自動 + 顯式 · 最小前綴 1,024 token |
常見問題
ByteDance Seed 1.8 API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。以輸入 $0.25/M 計算,光是這筆額度就足以對 ByteDance Seed 1.8 發出約 500 次 ~8K token 的請求。
ByteDance Seed 1.8 最擅長什麼?
更強的多模態理解與智慧體能力,以及文本、影像、影片輸入和256K 上下文,32K 思維鏈預算。完整能力請見 About 一節,內容取自廠商官方發布說明。
ByteDance Seed 1.8 的價格是多少?
在 Synthorai 上,ByteDance Seed 1.8 輸入 $0.25/百萬 token、輸出 $2/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.05/M 計費。
ByteDance Seed 1.8 支援提示詞快取(prompt caching)嗎?
支援:自動快取預設開啟,另有顯式模式可獲得確定的折扣。快取命中的輸入 token 以 $0.05/M 計費(未命中 $0.25/M);提示詞需有 1,024 個 token 以上的穩定前綴才能命中快取。 提示詞快取指南 →
如何開通 ByteDance Seed 1.8?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "ByteDance-Seed-1.8" 即可。一組 API key 通用閘道上的所有模型。