All models
Model card on Hugging Face
Krea 2 Turbo
by Krea
Image
Krea 2 Turbo is Krea's distilled text-to-image model, a ~13B diffusion transformer tuned to render high-quality images in only a few steps. It pairs a Qwen3-VL text encoder with a Wan 2.1 VAE and targets fast, near-interactive generation rather than long multi-step sampling. Turbo trades a little peak fidelity for speed, making it a strong default for quick drafts and iteration.
- Publisher
- Krea
- API model name
- krea-2-turbo-q4-k-m
- Sizes
- 13B
- Licence
- krea-2-community-license
Run Krea 2 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="krea-2-turbo-q4-k-m",
prompt="A misty Welsh valley at dawn",
size="1024x1024",
)
pathlib.Path("out.png").write_bytes(base64.b64decode(result.data[0].b64_json))
Run Krea 2 Turbo on your own UK infrastructure
Deploy a worker, install Krea 2 Turbo, and start serving it through one sovereign API endpoint.