diff --git a/api/services/configuration/options/__init__.py b/api/services/configuration/options/__init__.py index 5bd5bc20..c30b128c 100644 --- a/api/services/configuration/options/__init__.py +++ b/api/services/configuration/options/__init__.py @@ -44,6 +44,7 @@ from .sarvam import ( from .smallest import ( SMALLEST_TTS_LANGUAGES, SMALLEST_TTS_MODELS, + SMALLEST_TTS_PRO_VOICES, SMALLEST_TTS_VOICES, ) from .speechmatics import SPEECHMATICS_STT_LANGUAGES @@ -87,6 +88,7 @@ __all__ = [ "SARVAM_V3_VOICES", "SMALLEST_TTS_LANGUAGES", "SMALLEST_TTS_MODELS", + "SMALLEST_TTS_PRO_VOICES", "SMALLEST_TTS_VOICES", "SPEECHMATICS_STT_LANGUAGES", ] diff --git a/api/services/configuration/options/smallest.py b/api/services/configuration/options/smallest.py index 7072349d..70b90f56 100644 --- a/api/services/configuration/options/smallest.py +++ b/api/services/configuration/options/smallest.py @@ -16,6 +16,15 @@ SMALLEST_TTS_VOICES = ( "mia", "maithili", ) +# Premium voices for lightning_v3.1_pro (American, British, Indian accents; English + Hindi only) +SMALLEST_TTS_PRO_VOICES = ( + "meher", + "rhea", + "aviraj", + "cressida", + "willow", + "maverick", +) SMALLEST_TTS_LANGUAGES = ( "en", "hi", diff --git a/api/services/configuration/registry.py b/api/services/configuration/registry.py index 0b4438ee..99172cc1 100644 --- a/api/services/configuration/registry.py +++ b/api/services/configuration/registry.py @@ -41,6 +41,7 @@ from api.services.configuration.options import ( SARVAM_V3_VOICES, SMALLEST_TTS_LANGUAGES, SMALLEST_TTS_MODELS, + SMALLEST_TTS_PRO_VOICES, SMALLEST_TTS_VOICES, SPEECHMATICS_STT_LANGUAGES, ) @@ -1194,8 +1195,15 @@ class SmallestAITTSConfiguration(BaseTTSConfiguration): ) voice: str = Field( default="sophia", - description="Smallest AI voice ID.", - json_schema_extra={"examples": SMALLEST_TTS_VOICES, "allow_custom_input": True}, + description="Smallest AI voice ID. Available voices differ by model: lightning_v3.1 has a broad multilingual pool; lightning_v3.1_pro has premium American, British, and Indian accent voices (English + Hindi only).", + json_schema_extra={ + "examples": list(SMALLEST_TTS_VOICES), + "allow_custom_input": True, + "model_options": { + "lightning_v3.1": list(SMALLEST_TTS_VOICES), + "lightning_v3.1_pro": list(SMALLEST_TTS_PRO_VOICES), + }, + }, ) language: str = Field( default="en",