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 通用网关上的全部模型。