From 9eaae0559ed0a3ad1f1e2beb46c811054b35f67a Mon Sep 17 00:00:00 2001 From: rootflo-hardik Date: Thu, 19 Feb 2026 13:07:00 +0530 Subject: [PATCH] added elevenlabs in language validation --- .../voice_agents_module/utils/language_validation.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wavefront/server/modules/voice_agents_module/voice_agents_module/utils/language_validation.py b/wavefront/server/modules/voice_agents_module/voice_agents_module/utils/language_validation.py index 2fe4a60c..a5f219cc 100644 --- a/wavefront/server/modules/voice_agents_module/voice_agents_module/utils/language_validation.py +++ b/wavefront/server/modules/voice_agents_module/voice_agents_module/utils/language_validation.py @@ -62,13 +62,16 @@ 'fi', 'fil', 'fr', + 'gu', 'hi', 'hr', 'hu', 'id', 'it', 'ja', + 'kn', 'ko', + 'ml', 'ms', 'nl', 'no', @@ -79,6 +82,7 @@ 'sk', 'sv', 'ta', + 'te', 'tr', 'uk', 'vi', @@ -236,6 +240,8 @@ def get_stt_supported_languages(provider: str) -> Set[str]: return DEEPGRAM_STT_LANGUAGES elif provider == 'sarvam': return SARVAM_LANGUAGES + elif provider == 'elevenlabs': + return ELEVENLABS_LANGUAGES elif provider in ['assemblyai', 'whisper', 'google', 'azure']: # For providers not yet fully implemented, skip validation return set()