langchain-arcade: remove langgraph dependency (#342)

This commit is contained in:
Vadym Barda 2025-04-03 08:25:37 -04:00 committed by GitHub
parent 2dd7719517
commit daa57bc7ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View file

@ -60,6 +60,10 @@ langchain_tools = manager.to_langchain()
### 2. Use with LangGraph
```bash
pip install langgraph
```
Here's a simple example of using Arcade tools with LangGraph:
```python

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-arcade"
version = "1.3.0"
version = "1.3.1"
description = "An integration package connecting Arcade and Langchain/LangGraph"
authors = ["Arcade <dev@arcade.dev>"]
readme = "README.md"
@ -10,7 +10,7 @@ license = "MIT"
[tool.poetry.dependencies]
python = ">=3.10,<4"
arcadepy = "1.3.*"
langgraph = ">=0.2.67,<0.3.0"
langchain-core = ">=0.3.49,<0.4"
[tool.poetry.group.dev.dependencies]
@ -20,6 +20,7 @@ mypy = "^1.5.1"
pre-commit = "^3.4.0"
tox = "^4.11.1"
pytest-asyncio = "^0.23.7"
langgraph = ">=0.3.23,<0.4"
[tool.mypy]