FLUX1.1 [pro] is here

Flux 1.1 Pro

If you’re paying attention to text-to-image AI leaderboards, you may recently have noticed a mysterious model named “blueberry” topping the charts.

Well, today the cat’s out of the bag: blueberry is the codename for a new series of Flux models from our friends at Black Forest Labs.

These new models are more powerful than any other open-source image generation models out there, and they are available to run on Replicate today:

🫐 replicate.com/black-forest-labs/flux-1.1-pro

🫐 replicate.com/black-forest-labs/flux-pro

FLUX1.1 [pro] is a new model

Flux 1.1 Pro example

FLUX1.1 [pro] is a new, faster, more powerful version of FLUX.1 [pro].

It generates images six times faster than its predecessor FLUX.1 [pro] with higher image quality, better prompt adherence, and more output diversity. Independent benchmarks show it generates the highest quality images compared to other open source models, as of Oct 1, 2024.

Pricing for FLUX1.1 [pro] on Replicate is $0.04 per image.

Here’s an example of how to run FLUX1.1 [pro] using Replicate’s JavaScript client:

import Replicate from "replicate"
const replicate = new Replicate()

const model = "black-forest-labs/flux-1.1-pro"
const input = {
  prompt: "A giant blueberry with a neon sign that says 'World's Juiciest Berries' floating above it",
  aspect_ratio: "1:1",
  output_format: "webp",
  output_quality: 80
}

const output = await replicate.run(model, { input })
console.log(output)

Check out the model at replicate.com/black-forest-labs/flux-1.1-pro.

Flux 1.1 Pro portrait example

Prompt upsampling

FLUX1.1 [pro] includes a new prompt upsampling feature. It uses a large language model to automatically expand your prompt into a longer, more detailed one. You can use prompt upsampling to get a greater variety of outputs from your prompt.

In the example below, the bottom row is generating images with the prompt “bird”, while the top row is enhancing the prompt using the upsampling feature.

Flux 1.1 Pro upsampling example

The existing FLUX.1 [pro] model is now twice as fast

The existing FLUX.1 [pro] model is also getting a nice upgrade, with a new version that is twice as fast (at constant quality).

Pricing for FLUX.1 [pro] on Replicate is $0.055 per image.

Here’s an example of how to run FLUX.1 [pro] using Replicate’s JavaScript client:

import Replicate from "replicate"
const replicate = new Replicate()

const model = "black-forest-labs/flux-pro"
const input = {
  prompt: "A cool blueberry wearing sunglasses, surfing on a tidal wave of blueberry jam",
  aspect_ratio: "1:1",
  output_format: "webp",
  output_quality: 80
}

const output = await replicate.run(model, { input })
console.log(output)

Check out the model at replicate.com/black-forest-labs/flux-pro.

More Flux stuff

We’ve been big fans of Flux since it was released, and we’re creating a lot of content around it.

To learn more about Flux and get started creating your own fine-tunes, check out these guides: