Whisper 1
OpenAI
openai/whisper-1
Speech-to-text model
Context Window
—
Max Output
—
About this model
Industry-leading speech-to-text transcription
Access it through Chuizi.AI with a single ck- API key — no separate OpenAI account needed.
Highlights
Multi-cloud failover
Unified billing via Chuizi.AI
Best For
Meeting transcriptionVoice note appsPodcast indexingVoice commands
2023-03-01
Capabilities
STT
Aliases
whisper-1Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.0000 |
| Output / 1M | $0.0000 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) with open("audio.mp3", "rb") as f: transcript = client.audio.transcriptions.create( model="openai/whisper-1", file=f, ) print(transcript.text)