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 748fad4 commit 515779cCopy full SHA for 515779c
README.md
@@ -37,9 +37,14 @@ Import and initialize the toolbox client.
37
from toolbox_langchain_sdk import ToolboxClient
38
39
# Replace with your Toolbox service's URL
40
-toolbox = ToolboxClient("http://localhost:5000")
+toolbox = ToolboxClient("http://127.0.0.1:5000")
41
```
42
43
+> [!IMPORTANT]
44
+> The toolbox client requires an asynchronous environment.
45
+> For guidance on running asynchronous Python programs, see
46
+> [running an async program in python](https://docs.python.org/3/library/asyncio-runner.html#running-an-asyncio-program).
47
+
48
> [!TIP]
49
> You can also pass your own `ClientSession` so that the `ToolboxClient` can
50
> reuse the same session.
0 commit comments