Skip to content

Commit 8a17e91

Browse files
authored
doc: Update README installation instructions (#57)
* doc: Update README installation instructions Remove the temporary instructions of installing the package locally now that the SDK is available as a PyPI package. * doc: Remove redundant line in README.
1 parent 030a17f commit 8a17e91

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

README.md

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ applications, enabling advanced orchestration and interaction with GenAI models.
88
## Table of Contents
99
<!-- TOC -->
1010

11-
- [Quickstart](#quickstart)
1211
- [Installation](#installation)
12+
- [Quickstart](#quickstart)
1313
- [Usage](#usage)
1414
- [Loading Tools](#loading-tools)
1515
- [Load a toolset](#load-a-toolset)
@@ -34,6 +34,12 @@ applications, enabling advanced orchestration and interaction with GenAI models.
3434

3535
<!-- /TOC -->
3636

37+
## Installation
38+
39+
```bash
40+
pip install toolbox-langchain
41+
```
42+
3743
## Quickstart
3844

3945
Here's a minimal example to get you started using
@@ -60,18 +66,6 @@ for s in agent.stream({"messages": [("user", prompt)]}, stream_mode="values"):
6066
message.pretty_print()
6167
```
6268

63-
## Installation
64-
65-
> [!IMPORTANT]
66-
> This SDK is not yet available on PyPI. For now, install it from source by
67-
> following these [installation instructions](DEVELOPER.md).
68-
69-
You can install the Toolbox SDK for LangChain using `pip`.
70-
71-
```bash
72-
pip install toolbox-langchain
73-
```
74-
7569
## Usage
7670

7771
Import and initialize the toolbox client.
@@ -344,4 +338,4 @@ async def main():
344338

345339
if __name__ == "__main__":
346340
asyncio.run(main())
347-
```
341+
```

0 commit comments

Comments
 (0)