We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 447362d commit 2620cdeCopy full SHA for 2620cde
src/elevenlabs/conversational_ai/conversation.py
@@ -272,7 +272,7 @@ def wait_for_session_end(self) -> Optional[str]:
272
return self._conversation_id
273
274
def _run(self, ws_url: str):
275
- with connect(ws_url) as ws:
+ with connect(ws_url, max_size=16 * 1024 * 1024) as ws:
276
ws.send(
277
json.dumps(
278
{
0 commit comments