1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-05-24 22:43:26 +00:00

fix: [#47] remove debug code

This commit is contained in:
ksieuk 2023-10-13 19:54:32 +03:00
parent cd96624135
commit 7285af0f97

View File

@ -24,7 +24,6 @@ class TTSElevenLabsRepository(tts_repositories_base.TTSBaseRepository):
async def get_all_models_dict_from_api(self) -> list[dict[str, typing.Any]]: async def get_all_models_dict_from_api(self) -> list[dict[str, typing.Any]]:
response = await self.http_client.get("/models") response = await self.http_client.get("/models")
print(response)
return response.json() return response.json()
async def get_audio_as_bytes(self, request: models.TTSCreateRequestModel) -> models.TTSCreateResponseModel: async def get_audio_as_bytes(self, request: models.TTSCreateRequestModel) -> models.TTSCreateResponseModel: