Seedream 5.0 Lite
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 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 について
Seedream 5.0 は BytePlus ModelArk 上の ByteDance の 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 は生成画像 1 枚あたり $0.035 です。従量課金でプラットフォーム手数料なし、サブスクリプションも不要です。
Seedream 5.0 Lite API で画像を生成するには?
Synthorai の /v1/images/generations に model="seedream-5-0-260128" を指定して POST するだけです。OpenAI images API と同じ形式で、ベンダー SDK は不要です。
Seedream 5.0 Lite を利用するには?
お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="seedream-5-0-260128" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。