All models
Model card on Hugging Face
Qwen-Image 2512
by Alibaba
Image
Qwen-Image 2512 is Alibaba's high-fidelity text-to-image model, notable for rendering legible text within images. It targets detailed, prompt-faithful generation for design and content work.
- Publisher
- Alibaba
- Sizes
- 20B
- Licence
- Apache 2.0
Run Qwen-Image 2512
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="qwen-image-2512",
prompt="A misty Welsh valley at dawn",
size="1024x1024",
)
pathlib.Path("out.png").write_bytes(base64.b64decode(result.data[0].b64_json))
Run Qwen-Image 2512 on your own UK infrastructure
Deploy a worker, install Qwen-Image 2512, and start serving it through one sovereign API endpoint.