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
单个 Prompt,两个模型 —— 通过网关实测
统一提示词,每个模型单次请求,无重试且无择优挑选 —— 均为各模型返回的首个结果。尺寸与时长均未固定:各模型使用自身的默认值,因为试图适配所有模型的请求参数无法展现任何模型的优势。此处文件已为 Web 重新编码,因此请评判构图与提示词遵循度,而非压缩质量。
只需一行代码即可在它们之间切换
两个 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 图像的成本是小尺寸图像的数倍。上方表格标明了各个模型适用的计费方式。