All models

Qwen 3 TTS

by Alibaba

Speech

Qwen 3 TTS is Alibaba's open-weight text-to-speech model, generating natural, expressive speech across ten languages including English, Chinese, Japanese and Korean. This CustomVoice edition ships nine built-in speakers, male and female, and each can voice any of the supported languages. Built on a compact 1.7B talker, it targets fast, low-footprint speech synthesis that runs comfortably on modest GPUs.

Publisher
Alibaba
API model name
qwen3-tts:1.7b-bf16
Sizes
1.7B
Licence
Apache 2.0
Model card on Hugging Face

Run Qwen 3 TTS

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

from pendra import Pendra

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

response = client.chat.completions.create(
    model="qwen3-tts:1.7b-bf16",
    messages=[{"role": "user", "content": "Hello!"}],
)

print(response.choices[0].message.content)

Run Qwen 3 TTS on your own UK infrastructure

Deploy a worker, install Qwen 3 TTS, and start serving it through one sovereign API endpoint.