Skip to content

    NVIDIA Parakeet TDT 0.6B v3

    Transcription

    parakeet-tdt-0.6b-v3

    NVIDIA Parakeet TDT 0.6B v3 on FlexAI: NVIDIA ASR, CC-BY-4.0 license, served via the OpenAI-compatible Token Factory at the live market-tracked rate.

    Pricing

    Price

    $0.0014 / min

    Pricing source

    API endpoint

    /v1/audio/transcriptions

    Compatibility

    OpenAI

    Parameters

    600M

    License

    CC-BY-4.0

    Hardware

    H100

    Quantization

    FP16

    Estimate your monthly cost

    min
    1,000 × $0.0014/min$1.35
    Estimated monthly cost$1.35

    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="parakeet-tdt-0.6b-v3",
            file=f,
        )
    
    print(response.text)