All models

Whisper

by OpenAI

Transcription

OpenAI Whisper speech-to-text, served in-process by the Pendra (whisper.cpp) backend.

Publisher
OpenAI
Model card on Hugging Face

Run Whisper

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_...")

with open("meeting.mp3", "rb") as f:
    result = client.audio.transcriptions.create(
        model="whisper-large-v3",
        file=f,
    )

print(result.text)

Run Whisper on your own UK infrastructure

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

Related models