Seedream 4.5
ByteDance image
價格$0.04/image
廠商牌價,無平台加價,按用量計費。 以下為官方 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
編輯一致性保留細節與光照
人像增強與小字生成
最多 14 張參考圖,2K 或 4K
Seedream 4.5 是字節跳動在 BytePlus ModelArk 上的影像生成模型,作為 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 依每張生成圖片 $0.04 計費,按用量計費,無平台加價,無需訂閱。
如何呼叫 Seedream 4.5 API 生成圖片?
向 Synthorai 的 /v1/images/generations 發送 POST,model="seedream-4-5-251128"。這是標準 OpenAI images API 形式,無需廠商 SDK。
如何開通 Seedream 4.5?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "seedream-4-5-251128" 即可。一組 API key 通用閘道上的所有模型。