Get started
The interactive UI guides you through the full evaluation process:
- Language selection — pick from 10+ supported Indic languages
- Provider selection — choose providers (only those supporting your language are shown)
- Input directory — path to the directory containing your audio files and reference transcripts
All audio files should be in WAV format. The evaluation script expects files
at
audios/<id>.wav where <id> matches the id column in your CSV.- Output directory — where results will be saved (defaults to
./out) - API keys — enter the API keys for the selected providers
Evaluator configuration
By default, a text LLM judge — routed through OpenRouter (setOPENROUTER_API_KEY in your environment) — evaluates whether each transcription matches the reference text semantically using the built-in semantic_match evaluator; expand Default evaluator: semantic_match below for the exact system_prompt from the codebase. You can customize the judge model and add multiple evaluators by passing an optional config file with --config:
system_prompt is sent as the system message to its own dedicated LLM judge call (one call per evaluator, run in parallel). The user message contains the source/transcription pair.
The config file supports:
Each evaluator also accepts:
Binary evaluators produce per-row pass/fail and a mean pass-rate. Rating evaluators produce an integer score on your scale and a mean score in the leaderboard.
When multiple evaluators are defined, each is scored independently — one LLM call per evaluator per row, all run in parallel — and appears as a separate column in the results and leaderboard.
Refer to the sample config for a template.
The
--config flag is optional. When omitted, a single built-in
semantic_match evaluator scores semantic match between source and
transcription.semantic_match (default evaluator system prompt)
semantic_match (default evaluator system prompt)
Matches
DEFAULT_STT_EVALUATOR in calibrate/judges.py when no --config is passed.Output
Once all the providers have completed, it displays a leaderboard measuring key metrics along with bar charts for better visualization. Each provider output directory includes:results.csvwith one row per input audio. In addition toid,gt,pred, WER, evaluator scores, and evaluator reasoning, STT runs includeaudio_duration_seconds.metrics.jsonwith aggregatewer, evaluator summaries, and acostobject. The cost object includesprovider,pricing_model,currency,billing_unit,total_seconds,audio_minutes, the native per-minute rate (cost_per_minute_currency, denominated incurrency), andcost_usd. Providers billed in a non-USD currency (e.g. Sarvam in INR) report the native-currency totalcost_in_currencyand, when the live exchange rate is reachable, theconversion_rateused (native-currency units per 1 USD) andcost_usd. If the exchange rate can’t be fetched, the native-currency cost is still reported andcost_usdis omitted, so that provider is left out of the USD comparison rather than failing the run. Cost is a proportional estimate from bundled rates; provider invoices may differ because of per-file rounding, minimums, tiers, or regional pricing.leaderboard/stt_leaderboard.xlsxwith acost_usdcolumn in the summary sheet (the one cost figure comparable across providers; per-unit rates and native-currency figures stay in each provider’smetrics.json).


Learn more about metrics
Detailed explanation of all metrics and why using an LLM Judge is necessary
Resources
Integrations
See the full list of supported providers and their configuration options