Seedream 5.0 Lite
ByteDance image
價格$0.035/image
廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。
30 秒用上 Seedream 5.0 Lite
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-5-0-260128",
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-5-0-260128",
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-5-0-260128",
"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-5-0-260128",
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-5-0-260128")
.prompt("a watercolor lighthouse at dawn")
.size("1024x1024")
.build());
System.out.println(resp.data().orElseThrow().get(0).b64Json().orElseThrow().substring(0, 80));關於 Seedream 5.0 Lite
面向專業場景增強參考一致性
流式交付,PNG 或 JPEG 輸出
高解析度結果最高 4K
Seedream 5.0 屬於字節跳動在 BytePlus ModelArk 上的 Dola Seedream 5.0 一代,官方模型目錄稱它是領先的影像生成模型,面向專業場景增強了參考一致性並提升了生成品質。
- 它支援文生圖、單參考與多參考圖生圖以及批量出圖,提供流式交付、可選的 PNG 或 JPEG 輸出,系列內高解析度結果最高 4K。
- 在 Synthorai 上,請求透過平臺的 OpenAI 相容 API 到達它。
規格與限制
| 模態 | text + image → image |
| 特性 | vision |
| 圖像能力 | 2K/3K/4K output, png/jpeg; text-to-image + single/multi-reference image editing; batch generation with reference + generated images <=15; 500 max IPM |
| 備註 | Lite tier of the Seedream 5.0 family (alias seedream-5-0-lite-260128; version date 260128 encoded in the model id); a higher-end seedream-5-0-pro-260628 exists separately. |
常見問題
Seedream 5.0 Lite API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。足以在新增付款方式之前,用真實工作負載試試 Seedream 5.0 Lite。
Seedream 5.0 Lite 最擅長什麼?
面向專業場景增強參考一致性,以及流式交付,PNG 或 JPEG 輸出和高解析度結果最高 4K。完整能力請見 About 一節,內容取自廠商官方發布說明。
Seedream 5.0 Lite 的價格是多少?
在 Synthorai 上,Seedream 5.0 Lite 依每張生成圖片 $0.035 計費,按用量計費,無平台加價,無需訂閱。
如何呼叫 Seedream 5.0 Lite API 生成圖片?
向 Synthorai 的 /v1/images/generations 發送 POST,model="seedream-5-0-260128"。這是標準 OpenAI images API 形式,無需廠商 SDK。
如何開通 Seedream 5.0 Lite?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "seedream-5-0-260128" 即可。一組 API key 通用閘道上的所有模型。