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 8bfb692 commit 26c1d59Copy full SHA for 26c1d59
repro.py
@@ -0,0 +1,5 @@
1
+from elevenlabs import ElevenLabs
2
+
3
+client = ElevenLabs(api_key="foo")
4
5
+client.conversational_ai.agents.list()
src/elevenlabs/__init__.py
@@ -6,7 +6,7 @@
6
import typing
7
from importlib import import_module
8
9
-_REQUIRED_RECURSION_LIMIT = 2_000
+_REQUIRED_RECURSION_LIMIT = 10_000
10
if sys.getrecursionlimit() < _REQUIRED_RECURSION_LIMIT:
11
sys.setrecursionlimit(_REQUIRED_RECURSION_LIMIT)
12
0 commit comments