Seedream 4.5 vs Seedream 5.0 Lite
何時該用哪一個 — 綜合評斷,而非基準測試數據表
較新的 seedream-5-0-260128 同時也是較便宜的一個,每次呼叫 $0.035 對 $0.04,並把輸出拓寬到 2K/3K/4K,自訂尺寸從 2560x1440 到 4096x4096、比例最高 16:1,而 seedream-4-5-251128 只有 2K 和 4K。它還能輸出 png 而不只是 jpeg。參考圖處理完全一致——2–14 張參考圖、每次請求最多 15 張——所以除了重現你已經發布過的產出,沒有理由繼續用舊的那個。
定價
| Seedream 4.5 | Seedream 5.0 Lite | Δ | |
|---|---|---|---|
| 每張生成圖片 | $0.04 | $0.035 | 1.1× |
費率取自建置時的即時目錄;各模型頁面皆附有目前的費率卡。
它們的相對位置 — 在此計費單位下,所有 8 個 圖像生成 模型的 每張生成圖片的價格(對數尺度)
規格
| Seedream 4.5 | Seedream 5.0 Lite | |
|---|---|---|
| 輸入模態 | 文字 影像 | 文字 影像 |
| 輸出模態 | 影像 | 影像 |
| 發布日期 | 2025-12 | 2026-01 |
| 輸出尺寸 |
|
|
| 輸入模式 | text-to-image, single-image image-to-image, multi-reference image-to-image (2–14 refs), batch/sequential image sets | text-to-image, single-image image-to-image, multi-reference image-to-image (2–14 refs), batch/sequential image sets |
| 每次請求圖片數 | 15 | 15 |
| 格式 | jpeg | png, jpeg |
| 備註 | 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 | 2K/3K/4K output, png/jpeg text-to-image + single/multi-reference image editing batch generation with reference + generated images <=15 500 max IPM |
規格摘錄自各供應商的文件;供應商未發布的資料列會直接省略,而非自行推測。 完整來源: Seedream 4.5 · Seedream 5.0 Lite
單一提示詞,兩款模型 — 經由閘道測量
單一提示詞,每個模型一次請求,不重試且不擇優挑選——皆為各模型回傳的第一個結果。尺寸與長度皆未強制指定:每個模型均使用其預設值,因為若將請求調整為迎合所有模型,反而無法展現任何一方的優勢。此處的檔案皆已針對網頁重新編碼,因此請評斷其構圖與提示詞遵循度,而非壓縮品質。
只需一行程式碼即可在兩者間切換
以下每個頁籤中都有這兩個 ID — 醒目提示的這兩行是唯一的修改處。相同的端點,相同的金鑰,相同的請求結構。
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",
# 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-4-5-251128",
// 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-4-5-251128",
# "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-4-5-251128",
// 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-4-5-251128")
// .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 4.5 和 Seedream 5.0 Lite 哪個比較便宜?
Seedream 5.0 Lite 在 每張生成圖片 上較便宜($0.035 對比 $0.04,相差 1.1×)。其他項目可能呈現相反結果 — 上表提供完整資訊,實際成本取決於您的使用組合。
我可以在不進行兩次整合的情況下,對 Seedream 4.5 和 Seedream 5.0 Lite 進行 A/B 測試嗎?
可以。兩者皆透過同一個相容 OpenAI 的端點提供服務,並使用同一把 API 金鑰 — 切換只需更改一行的模型字串,因此您可以將部分流量分別導向兩者並直接比較帳單。
價格會隨圖片大小改變嗎?
這取決於模型的計費方式。按圖片計費的模型無論提示或輸出大小為何,收費皆相同;按 token 計費的模型則會根據您生成的解析度等比例縮放,因此 4K 圖片的成本會是小圖片的數倍。上表顯示了各模型適用的計費方式。