Seedream 4.0
ByteDance image
价格$0.03/image
厂商牌价,无平台加价,按量付费。 以下为官方 list 价。登录客户可在 /console/pricing 查看含工作空间折扣的实际价格。
30 秒用上 Seedream 4.0
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-0-250828",
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-0-250828",
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-0-250828",
"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-0-250828",
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-0-250828")
.prompt("a watercolor lighthouse at dawn")
.size("1024x1024")
.build());
System.out.println(resp.data().orElseThrow().get(0).b64Json().orElseThrow().substring(0, 80));关于 Seedream 4.0
原生文本、单图、多图输入
主体一致的多图融合
1K 至 4K 输出,14 张参考图
Seedream 4.0 是字节跳动在 BytePlus ModelArk 上的 SOTA 级多模态图像创作模型,官方页面称它原生支持文本、单图和多图输入,突破了传统文生图模型的创作边界。
- 它在一个模型内覆盖主体一致的多图融合、图像编辑和组图生成,输出 1K 至 4K 的 JPEG 图像,参考图最多 14 张。
- 它提供流式生成和更快的 prompt 优化模式。
- Synthorai 把它调度在 OpenAI 兼容图像接口之后。
规格与限制
| 模态 | text + image → image |
| 特性 | vision |
| 图像能力 | 1K-4K output (up to 4096x4096), jpeg; unified text-to-image + single/multi-reference image editing; batch generation with reference + generated images <=15; $0.03/image, 500 IPM |
| 备注 | Officially announced on the ByteDance Seed blog 2025-09-09; version date 250828 encoded in the model id. |
常见问题
Seedream 4.0 API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。足够在添加付款方式之前,用真实工作负载试一试 Seedream 4.0。
Seedream 4.0 最擅长什么?
原生文本、单图、多图输入,以及主体一致的多图融合和1K 至 4K 输出,14 张参考图。完整能力请见 About 部分,内容取自厂商官方发布说明。
Seedream 4.0 的价格是多少?
在 Synthorai 上,Seedream 4.0 按每张生成图 $0.03 计费,按量付费,无平台加价,无需订阅。
如何调用 Seedream 4.0 API 生成图片?
向 Synthorai 的 /v1/images/generations 发送 POST,model="seedream-4-0-250828",即标准 OpenAI images API 形态,无需厂商 SDK。
如何开通 Seedream 4.0?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "seedream-4-0-250828" 即可。一把 API key 通用网关上的全部模型。