Skip to main content
OpenAI logo

Whisper-Large-V3

ReadySpeech-to-textby OpenAI

Overview

About this model

Whisper-Large-V3 transcribes speech to text, served on EcoHash through an OpenAI-compatible API.

View model card on HuggingFace

Specifications

Model details

Provider
OpenAI
Modality
Speech-to-text
Pricing
$4.00 / 1M tok

Modalities: audio → text

API

Call it in code

One OpenAI-compatible API. Swap the model id and you're done.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.ecohash.com/v1",
    api_key="YOUR_API_KEY",
)

transcript = client.audio.transcriptions.create(
    model="whisper-large-v3",
    file=open("audio.mp3", "rb"),
)

More models

Other speech-to-text models

Start building

Grab an API key and call this model in minutes.