ByteDance Seed 1.8
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。 キャッシュヒット率 70% 時の実効入力単価:$0.11/M. Seed 言語モデルでは暗黙的プレフィックスキャッシュがデフォルトでオンになっており(1,024 トークン最小、ストレージ料金なし)、明示的なコンテキストキャッシュ 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 上のディープシンキング(deep-thinking)モデルで、現在ベータ段階です。
- モデルページでは、より強力なマルチモーダル理解とエージェント能力、そして幅広い複雑な実世界タスク全般での優れた性能を特長として挙げています。
- リリースノートには、アップグレードされたマルチモーダル理解とより柔軟なコンテキスト管理が追加されています。
- テキスト・画像・動画を入力として受け付けテキストを返し、256K コンテキストウィンドウ、最大 224K 入力、32K のチェーンオブソート予算を含む 64K 出力に加え、関数呼び出し、構造化出力、コンテキストキャッシュに対応します。
- 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 トークン |
よくある質問
ByteDance Seed 1.8 API は無料で試せますか?
はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。入力 $0.25/M で計算すると、このクレジットだけで ByteDance Seed 1.8 に対して約 500 回の ~8K トークンのリクエストを送れます。
ByteDance Seed 1.8 は何が得意ですか?
より強力なマルチモーダル理解とエージェント能力、さらにテキスト・画像・動画の入力と256K コンテキストと 32K チェーンオブソート予算。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。
ByteDance Seed 1.8 の料金はいくらですか?
Synthorai 上の ByteDance Seed 1.8 は入力 100 万トークンあたり $0.25、出力 100 万トークンあたり $2 です。ベンダー定価のままで、プラットフォーム手数料はありません。キャッシュ済み入力トークンは $0.05/M で課金されます。
ByteDance Seed 1.8 はプロンプトキャッシュに対応していますか?
はい。自動キャッシュがデフォルトで有効なうえ、確実な割引を得られる明示モードもあります。キャッシュ済み入力トークンは $0.05/M(未キャッシュは $0.25/M)で課金されます。なお、キャッシュには 1,024 トークン以上の安定したプレフィックスが必要です。 プロンプトキャッシュガイド →
ByteDance Seed 1.8 を利用するには?
お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="ByteDance-Seed-1.8" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。