OpenPixels

FLUX.1.1 [pro] Performance

Author:Black Forest Labs
Type:Image
Providers:fal.ai (Flat rate: $0.04 per invocation), Replicate (Flat rate: $0.04 per invocation), Together (~$0.04 at 1024x1024)
Aliases:flux-pro-1.1, blackforestlabs/flux-1.1-pro, flux-pro

Parameter Playground

Generated image will appear here

Arguments

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

import { OpenPixels } from "openpixels"

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

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