langchain-arcade 1.3.0__tar.gz → 1.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/PKG-INFO +6 -2
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/README.md +4 -0
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/pyproject.toml +3 -2
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/LICENSE +0 -0
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/langchain_arcade/__init__.py +0 -0
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/langchain_arcade/_utilities.py +0 -0
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/langchain_arcade/manager.py +0 -0
- {langchain_arcade-1.3.0 → langchain_arcade-1.3.1}/langchain_arcade/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: langchain-arcade
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: An integration package connecting Arcade and Langchain/LangGraph
|
|
5
5
|
Home-page: https://github.com/arcadeai/arcade-ai/tree/main/contrib/langchain
|
|
6
6
|
License: MIT
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Requires-Dist: arcadepy (==1.3.*)
|
|
17
|
-
Requires-Dist:
|
|
17
|
+
Requires-Dist: langchain-core (>=0.3.49,<0.4)
|
|
18
18
|
Project-URL: Repository, https://github.com/arcadeai/arcade-ai/tree/main/contrib/langchain
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
|
|
@@ -80,6 +80,10 @@ langchain_tools = manager.to_langchain()
|
|
|
80
80
|
|
|
81
81
|
### 2. Use with LangGraph
|
|
82
82
|
|
|
83
|
+
```bash
|
|
84
|
+
pip install langgraph
|
|
85
|
+
```
|
|
86
|
+
|
|
83
87
|
Here's a simple example of using Arcade tools with LangGraph:
|
|
84
88
|
|
|
85
89
|
```python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "langchain-arcade"
|
|
3
|
-
version = "1.3.
|
|
3
|
+
version = "1.3.1"
|
|
4
4
|
description = "An integration package connecting Arcade and Langchain/LangGraph"
|
|
5
5
|
authors = ["Arcade <dev@arcade.dev>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -10,7 +10,7 @@ license = "MIT"
|
|
|
10
10
|
[tool.poetry.dependencies]
|
|
11
11
|
python = ">=3.10,<4"
|
|
12
12
|
arcadepy = "1.3.*"
|
|
13
|
-
|
|
13
|
+
langchain-core = ">=0.3.49,<0.4"
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
[tool.poetry.group.dev.dependencies]
|
|
@@ -20,6 +20,7 @@ mypy = "^1.5.1"
|
|
|
20
20
|
pre-commit = "^3.4.0"
|
|
21
21
|
tox = "^4.11.1"
|
|
22
22
|
pytest-asyncio = "^0.23.7"
|
|
23
|
+
langgraph = ">=0.3.23,<0.4"
|
|
23
24
|
|
|
24
25
|
|
|
25
26
|
[tool.mypy]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|