| @@ -133,7 +133,7 @@ class ModelPropertyKey(Enum): | |||
| DEFAULT_VOICE = "default_voice" | |||
| VOICES = "voices" | |||
| WORD_LIMIT = "word_limit" | |||
| AUDOI_TYPE = "audio_type" | |||
| AUDIO_TYPE = "audio_type" | |||
| MAX_WORKERS = "max_workers" | |||
| @@ -94,8 +94,8 @@ class TTSModel(AIModel): | |||
| """ | |||
| model_schema = self.get_model_schema(model, credentials) | |||
| if model_schema and ModelPropertyKey.AUDOI_TYPE in model_schema.model_properties: | |||
| return model_schema.model_properties[ModelPropertyKey.AUDOI_TYPE] | |||
| if model_schema and ModelPropertyKey.AUDIO_TYPE in model_schema.model_properties: | |||
| return model_schema.model_properties[ModelPropertyKey.AUDIO_TYPE] | |||
| def _get_model_word_limit(self, model: str, credentials: dict) -> int: | |||
| """ | |||
| @@ -628,7 +628,7 @@ TTS_BASE_MODELS = [ | |||
| }, | |||
| ], | |||
| ModelPropertyKey.WORD_LIMIT: 120, | |||
| ModelPropertyKey.AUDOI_TYPE: 'mp3', | |||
| ModelPropertyKey.AUDIO_TYPE: 'mp3', | |||
| ModelPropertyKey.MAX_WORKERS: 5 | |||
| }, | |||
| pricing=PriceConfig( | |||
| @@ -682,7 +682,7 @@ TTS_BASE_MODELS = [ | |||
| }, | |||
| ], | |||
| ModelPropertyKey.WORD_LIMIT: 120, | |||
| ModelPropertyKey.AUDOI_TYPE: 'mp3', | |||
| ModelPropertyKey.AUDIO_TYPE: 'mp3', | |||
| ModelPropertyKey.MAX_WORKERS: 5 | |||
| }, | |||
| pricing=PriceConfig( | |||