doc: Update README to improve Toolbox LangChain SDK installation instructions (#287)

Add the bash command to `pip install` the package directly in the README
for a quicker start.

Also add “SDK” after “Toolbox LangChain” to clearly show that “Toolbox
LangChain” is an SDK.

> [!NOTE]
> We had released the PyPI package for Toolbox LangChain SDK as
`toolbox-langchain` and not `toolbox-langchain-sdk` but it still makes
sense to call it “Toolbox LangChain SDK” in natural language.
This commit is contained in:
Anubhav Dhawan
2025-02-10 21:04:27 +05:30
committed by GitHub
parent 0bb5010a52
commit 941745b3a3
3 changed files with 17 additions and 15 deletions

View File

@@ -78,5 +78,5 @@ You can load toolsets by name:
all_tools = await client.aload_toolset()
# This will only load the tools listed in 'my_second_toolset'
my_second_toolset = await aclient.load_toolset("my_second_toolset")
my_second_toolset = await client.aload_toolset("my_second_toolset")
```