All models

SDXL Turbo

by Stability AI

Image

SDXL Turbo is Stability AI's real-time text-to-image model, distilled from SDXL to generate images in as little as one to four steps. It's ideal for interactive and preview use where speed matters most.

Publisher
Stability AI
Sizes
3.5B
Licence
sai-nc-community
Model card on Hugging Face

Run SDXL Turbo

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="sdxl-turbo",
    prompt="A misty Welsh valley at dawn",
    size="1024x1024",
)

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

Run SDXL Turbo on your own UK infrastructure

Deploy a worker, install SDXL Turbo, and start serving it through one sovereign API endpoint.