Unverified Commit 8f9125b0 authored by 呆萌闷油瓶's avatar 呆萌闷油瓶 Committed by GitHub

fix:typo (#2808)

parent e5e97c0a
...@@ -133,7 +133,7 @@ class ModelPropertyKey(Enum): ...@@ -133,7 +133,7 @@ class ModelPropertyKey(Enum):
DEFAULT_VOICE = "default_voice" DEFAULT_VOICE = "default_voice"
VOICES = "voices" VOICES = "voices"
WORD_LIMIT = "word_limit" WORD_LIMIT = "word_limit"
AUDOI_TYPE = "audio_type" AUDIO_TYPE = "audio_type"
MAX_WORKERS = "max_workers" MAX_WORKERS = "max_workers"
......
...@@ -94,8 +94,8 @@ class TTSModel(AIModel): ...@@ -94,8 +94,8 @@ class TTSModel(AIModel):
""" """
model_schema = self.get_model_schema(model, credentials) model_schema = self.get_model_schema(model, credentials)
if model_schema and ModelPropertyKey.AUDOI_TYPE in model_schema.model_properties: if model_schema and ModelPropertyKey.AUDIO_TYPE in model_schema.model_properties:
return model_schema.model_properties[ModelPropertyKey.AUDOI_TYPE] return model_schema.model_properties[ModelPropertyKey.AUDIO_TYPE]
def _get_model_word_limit(self, model: str, credentials: dict) -> int: def _get_model_word_limit(self, model: str, credentials: dict) -> int:
""" """
......
...@@ -628,7 +628,7 @@ TTS_BASE_MODELS = [ ...@@ -628,7 +628,7 @@ TTS_BASE_MODELS = [
}, },
], ],
ModelPropertyKey.WORD_LIMIT: 120, ModelPropertyKey.WORD_LIMIT: 120,
ModelPropertyKey.AUDOI_TYPE: 'mp3', ModelPropertyKey.AUDIO_TYPE: 'mp3',
ModelPropertyKey.MAX_WORKERS: 5 ModelPropertyKey.MAX_WORKERS: 5
}, },
pricing=PriceConfig( pricing=PriceConfig(
...@@ -682,7 +682,7 @@ TTS_BASE_MODELS = [ ...@@ -682,7 +682,7 @@ TTS_BASE_MODELS = [
}, },
], ],
ModelPropertyKey.WORD_LIMIT: 120, ModelPropertyKey.WORD_LIMIT: 120,
ModelPropertyKey.AUDOI_TYPE: 'mp3', ModelPropertyKey.AUDIO_TYPE: 'mp3',
ModelPropertyKey.MAX_WORKERS: 5 ModelPropertyKey.MAX_WORKERS: 5
}, },
pricing=PriceConfig( pricing=PriceConfig(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment