Seedream 4.5
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。
30 秒で Seedream 4.5 を使う
OpenAI 互換。base_url を差し替えるだけで、SDK はそのまま。POST /v1/images/generations
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.images.generate(
model="seedream-4-5-251128",
prompt="a watercolor lighthouse at dawn",
size="1024x1024",
)
print(resp.data[0].b64_json[:80])import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.images.generate({
model: "seedream-4-5-251128",
prompt: "a watercolor lighthouse at dawn",
size: "1024x1024",
});
console.log(resp.data?.[0]?.b64_json?.slice(0, 80));curl https://synthorai.io/v1/images/generations \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "seedream-4-5-251128",
"prompt": "a watercolor lighthouse at dawn",
"size": "1024x1024"
}'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.Images.Generate(context.TODO(), openai.ImageGenerateParams{
Model: "seedream-4-5-251128",
Prompt: "a watercolor lighthouse at dawn",
Size: "1024x1024",
})
fmt.Println(resp.Data[0].B64JSON[:80])
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.images.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ImagesResponse resp = client.images().generate(
ImageGenerateParams.builder()
.model("seedream-4-5-251128")
.prompt("a watercolor lighthouse at dawn")
.size("1024x1024")
.build());
System.out.println(resp.data().orElseThrow().get(0).b64Json().orElseThrow().substring(0, 80));Seedream 4.5 について
Seedream 4.5 は BytePlus ModelArk 上の ByteDance の画像生成モデルで、Seedream 4.0 のアップグレードとしてリリースされました。
- 公式リリースノートは、被写体のディテールや照明・色調の保持といった編集の一貫性の大幅な改善に加え、ポートレートの強化と小さなテキストの生成を挙げています。
- テキストから画像、最大 14 枚の参照画像による単一および複数参照の画像から画像、バッチ画像生成、ストリーミング出力、2K または 4K の結果に対応し、高品質な標準モード生成に注力します。
- Synthorai は OpenAI 互換の画像生成エンドポイント経由で利用できるようにします。
スペックと制限
| モダリティ | text + image → image |
| 機能 | vision |
| 画像機能 | 2K/4K output, jpeg; text-to-image, single and multi-reference image-to-image, batch generation; improved text rendering and multi-image consistency; 500 max IPM |
| 特記事項 | Released December 2025 (version date 251128 encoded in the model id); no dedicated docs model page (console-only detail). |
よくある質問
Seedream 4.5 API は無料で試せますか?
はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。支払い方法を追加する前に、実際のワークロードで Seedream 4.5 を試すには十分な量です。
Seedream 4.5 は何が得意ですか?
ディテールと照明を保持する編集の一貫性、さらにポートレート強化と小さなテキストの生成と最大 14 枚の参照画像、2K または 4K。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。
Seedream 4.5 の料金はいくらですか?
Synthorai 上の Seedream 4.5 は生成画像 1 枚あたり $0.04 です。従量課金でプラットフォーム手数料なし、サブスクリプションも不要です。
Seedream 4.5 API で画像を生成するには?
Synthorai の /v1/images/generations に model="seedream-4-5-251128" を指定して POST するだけです。OpenAI images API と同じ形式で、ベンダー SDK は不要です。
Seedream 4.5 を利用するには?
お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="seedream-4-5-251128" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。