All models

Stable Diffusion 3.5 Large Turbo

by Stability AI

Image

Stable Diffusion 3.5 Large Turbo is Stability AI's distilled flagship text-to-image model, generating high-quality images in a handful of steps. It pairs the detail of SD 3.5 Large with fast, few-step inference.

Publisher
Stability AI
Sizes
8B
Licence
stabilityai-ai-community
Model card on Hugging Face

Run Stable Diffusion 3.5 Large 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="stable-diffusion-3.5-large-turbo",
    prompt="A misty Welsh valley at dawn",
    size="1024x1024",
)

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

Run Stable Diffusion 3.5 Large Turbo on your own UK infrastructure

Deploy a worker, install Stable Diffusion 3.5 Large Turbo, and start serving it through one sovereign API endpoint.