Merge pull request #1790 from AngeloGiacco/angelo/fix-api-key

[elevenlabs tts ] fix api key
This commit is contained in:
Mark Backman
2025-05-10 19:16:27 -04:00
committed by GitHub

View File

@@ -334,7 +334,9 @@ class ElevenLabsTTSService(AudioContextWordTTSService):
) )
# Set max websocket message size to 16MB for large audio responses # Set max websocket message size to 16MB for large audio responses
self._websocket = await websockets.connect(url, max_size=16 * 1024 * 1024) self._websocket = await websockets.connect(
url, max_size=16 * 1024 * 1024, extra_headers={"xi-api-key": self._api_key}
)
except Exception as e: except Exception as e:
logger.error(f"{self} initialization error: {e}") logger.error(f"{self} initialization error: {e}")
@@ -425,7 +427,7 @@ class ElevenLabsTTSService(AudioContextWordTTSService):
if self._websocket: if self._websocket:
if not self._context_id: if not self._context_id:
# First message for a new context - need a space to initialize # First message for a new context - need a space to initialize
msg = {"text": " ", "context_id": str(uuid.uuid4()), "xi_api_key": self._api_key} msg = {"text": " ", "context_id": str(uuid.uuid4())}
# Add voice settings only in first message for a context # Add voice settings only in first message for a context
if self._voice_settings: if self._voice_settings: