OpenPixels

Seedream 4.5 Performance

Author:ByteDance
Type:Image
Providers:fal.ai (Flat rate: $0.04 per invocation), Replicate (Unknown - verify with provider), runware.ai (Unknown - verify with provider), WaveSpeed AI (Unknown - verify with provider)
Aliases:seedream-v4.5

Parameter Playground

Generated image will appear here

Arguments

  • promptRequiredfal, replicate, runware, wavespeed
    Type:string
    The prompt to generate an image from.
  • widthRequiredfal, replicate, runware, wavespeed
    Type:number
    The width of the image to generate.
  • heightRequiredfal, replicate, runware, wavespeed
    Type:number
    The height of the image to generate.
  • aspect_ratioRequiredfal, replicate, runware, wavespeed
    Type:string
    The aspect ratio of the image to generate.
  • resolutionRequiredfal, replicate, runware, wavespeed
    Type:string
    The resolution of the image to generate.
  • seedOptionalfal, replicate, runware, wavespeed
    Type:number
    The seed to generate the image with.
// npm install openpixels

import { OpenPixels } from "openpixels"

const client = new OpenPixels({
  apiKey: "sk-op-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
})

const result = await client.run({
  model: "seedream-4.5",
  prompt: "A beautiful sunset over a calm ocean",
  width: 1024,
  height: 1024,
  aspect_ratio: "1:1",
  resolution: "720p",
  seed: 42
})