Skip to content

Commit cd95f3e

Browse files
authored
fix!: Improve PyPI package name. (#17)
1 parent f470833 commit cd95f3e

File tree

16 files changed

+35
-34
lines changed

16 files changed

+35
-34
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you are still having issues, please be sure to include as much information as
2020
- OS type and version:
2121
- Python version: `python --version`
2222
- pip version: `pip --version`
23-
- `toolbox-langchain-sdk` version: `pip show toolbox-langchain-sdk`
23+
- `toolbox-langchain` version: `pip show toolbox-langchain`
2424

2525
#### Steps to reproduce
2626

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ jobs:
7575
- name: Run type-check
7676
env:
7777
MYPYPATH: './src'
78-
run: mypy --install-types --non-interactive --cache-dir=.mypy_cache/ -p toolbox_langchain_sdk
78+
run: mypy --install-types --non-interactive --cache-dir=.mypy_cache/ -p toolbox_langchain

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ applications, enabling advanced orchestration and interaction with GenAI models.
3939
Here's a minimal example to get you started:
4040

4141
```py
42-
from toolbox_langchain_sdk import ToolboxClient
42+
from toolbox_langchain import ToolboxClient
4343
from langchain_google_vertexai import ChatVertexAI
4444

4545
toolbox = ToolboxClient("http://127.0.0.1:5000")
@@ -60,15 +60,15 @@ print(result)
6060
You can install the Toolbox SDK for LangChain using `pip`.
6161

6262
```bash
63-
pip install toolbox-langchain-sdk
63+
pip install toolbox-langchain
6464
```
6565

6666
## Usage
6767

6868
Import and initialize the toolbox client.
6969

7070
```py
71-
from toolbox_langchain_sdk import ToolboxClient
71+
from toolbox_langchain import ToolboxClient
7272

7373
# Replace with your Toolbox service's URL
7474
toolbox = ToolboxClient("http://127.0.0.1:5000")
@@ -126,7 +126,7 @@ guide](https://langchain-ai.github.io/langgraph/) with minimal changes.
126126
Represent each tool as a LangGraph node, encapsulating the tool's execution within the node's functionality:
127127

128128
```py
129-
from toolbox_langchain_sdk import ToolboxClient
129+
from toolbox_langchain import ToolboxClient
130130
from langgraph.graph import StateGraph, MessagesState
131131
from langgraph.prebuilt import ToolNode
132132

@@ -245,7 +245,8 @@ auth_tools = toolbox.load_toolset(auth_tokens={"my_auth": get_auth_token})
245245
### Complete Example
246246

247247
```py
248-
from toolbox_langchain_sdk import ToolboxClient
248+
import asyncio
249+
from toolbox_langchain import ToolboxClient
249250

250251
async def get_auth_token():
251252
# ... Logic to retrieve ID token (e.g., from local storage, OAuth flow)
@@ -324,7 +325,7 @@ use the asynchronous interfaces of the `ToolboxClient`.
324325
325326
```py
326327
import asyncio
327-
from toolbox_langchain_sdk import ToolboxClient
328+
from toolbox_langchain import ToolboxClient
328329

329330
async def main():
330331
toolbox = ToolboxClient("http://127.0.0.1:5000")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "toolbox-langchain-sdk"
2+
name = "toolbox-langchain"
33
version="0.0.1"
44
description = "Python SDK for interacting with the Toolbox service with LangChain"
55
license = {file = "LICENSE"}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)