All models

FLUX.1 [schnell]

by Black Forest Labs

Image

FLUX.1 [schnell] is Black Forest Labs' fast text-to-image model, distilled to generate high-quality images in just a few diffusion steps. Its speed and permissive Apache-2.0 licence make it a strong default for quick drafts and interactive generation.

Publisher
Black Forest Labs
Sizes
12B
Licence
Apache 2.0
Model card on Hugging Face

Run FLUX.1 [schnell]

Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.

from pendra import Pendra
import base64, pathlib

client = Pendra(api_key="pdr_sk_...")

result = client.images.generations.create(
    model="flux.1-schnell",
    prompt="A misty Welsh valley at dawn",
    size="1024x1024",
)

pathlib.Path("out.png").write_bytes(base64.b64decode(result.data[0].b64_json))

Run FLUX.1 [schnell] on your own UK infrastructure

Deploy a worker, install FLUX.1 [schnell], and start serving it through one sovereign API endpoint.