From 2014fe83a33e7caed119b8421ae678ad90aadb09 Mon Sep 17 00:00:00 2001 From: Ahmad Alghooneh Date: Tue, 28 Jan 2025 18:29:56 -0500 Subject: [PATCH] fixed the import error --- application/tts/elevenlabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/tts/elevenlabs.py b/application/tts/elevenlabs.py index 0d982d31..2e8159b8 100644 --- a/application/tts/elevenlabs.py +++ b/application/tts/elevenlabs.py @@ -3,7 +3,7 @@ import websockets import json import base64 from io import BytesIO -from base import BaseTTS +from application.tts.base import BaseTTS class ElevenlabsTTS(BaseTTS):