Skip to content

    Whisper Large V3 Turbo

    Transcription

    whisper-large-v3-turbo

    Whisper Large V3 Turbo on FlexAI: OpenAI ASR, MIT license, served via the OpenAI-compatible Token Factory at the live market-tracked rate.

    Pricing

    Price

    $0.0006 / min

    Pricing source

    API endpoint

    /v1/audio/transcriptions

    Compatibility

    OpenAI

    Parameters

    809M

    License

    MIT

    Hardware

    H100

    Quantization

    FP16

    Estimate your monthly cost

    min
    1,000 × $0.0006/min$0.6
    Estimated monthly cost$0.6

    Estimate only, at the current market-tracked rate. Usage-based; no minimums.

    Get an API key

    Quick Start

    from openai import OpenAI
    
    client = OpenAI(base_url="https://tokens.flex.ai/v1", api_key="your-api-key")
    
    with open("audio.mp3", "rb") as f:
        response = client.audio.transcriptions.create(
            model="whisper-large-v3-turbo",
            file=f,
        )
    
    print(response.text)