feat: Add ElevenLabs multilingual TTS/STT evaluation (EN/HI/ES)#113
Open
hopessugar wants to merge 1 commit into
Open
feat: Add ElevenLabs multilingual TTS/STT evaluation (EN/HI/ES)#113hopessugar wants to merge 1 commit into
hopessugar wants to merge 1 commit into
Conversation
- Add ElevenLabsTTSProvider using Flash v2.5 model - Add ElevenLabsSTTProvider using Scribe v1 model - Add multilingual benchmark test for EN/HI/ES - Add results for all 3 languages (TTS + STT) - Update requirements.txt with elevenlabs dependency - TTS fast for HI/ES (~647-682ms), EN slower (1762ms) - STT perfect for EN/ES (WER 0.0), Hindi very good (WER 0.089) - Major improvement over Cartesia Hindi STT (1.04 -> 0.089)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds ElevenLabs TTS and STT evaluation for multilingual support
as part of the ongoing speech provider benchmarking initiative.
Changes
providers/elevenlabs.py— ElevenLabsTTSProvider (Flash v2.5) + ElevenLabsSTTProvider (Scribe v1)tests/test_elevenlabs_multilingual.py— benchmark runner for EN/HI/ESresults/elevenlabs/— JSON results + README with findingsrequirements.txt— added elevenlabs dependencyResults
Key Findings
Latency Measurement
latency_ms = (end_time - start_time) × 1000 (Python time module)