From d70375956c33b5caeba25a0081d2967980c19e0f Mon Sep 17 00:00:00 2001 From: ksieuk Date: Wed, 4 Oct 2023 18:49:23 +0300 Subject: [PATCH] fix(typo): [#28] audio_content -> text --- src/assistant/lib/tts/models/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assistant/lib/tts/models/models.py b/src/assistant/lib/tts/models/models.py index 1b28da1..2cf44bb 100644 --- a/src/assistant/lib/tts/models/models.py +++ b/src/assistant/lib/tts/models/models.py @@ -7,7 +7,7 @@ class TTSRequestModel(pydantic.BaseModel): model_config = pydantic.ConfigDict(use_enum_values=True) voice_model_name: tts_models_voice.YandexVoiceModelNamesString - audio_content: bytes + text: str class TTSResponseModel(pydantic.BaseModel):