Spaces:
Building
Building
Update tts_interface.py
Browse files- tts_interface.py +1 -1
tts_interface.py
CHANGED
@@ -44,7 +44,7 @@ class ElevenLabsTTS(TTSInterface):
|
|
44 |
def __init__(self, api_key: str):
|
45 |
self.api_key = api_key
|
46 |
self.base_url = "https://api.elevenlabs.io/v1"
|
47 |
-
self.default_voice_id = "
|
48 |
|
49 |
# Debug log
|
50 |
masked_key = f"{api_key[:4]}...{api_key[-4:]}" if len(api_key) > 8 else "***"
|
|
|
44 |
def __init__(self, api_key: str):
|
45 |
self.api_key = api_key
|
46 |
self.base_url = "https://api.elevenlabs.io/v1"
|
47 |
+
self.default_voice_id = "21m00Tcm4TlvDq8ikWAM" # Rache voice
|
48 |
|
49 |
# Debug log
|
50 |
masked_key = f"{api_key[:4]}...{api_key[-4:]}" if len(api_key) > 8 else "***"
|