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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: langchain-arcade
3
- Version: 1.3.0
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: langgraph (>=0.2.67,<0.3.0)
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
@@ -60,6 +60,10 @@ langchain_tools = manager.to_langchain()
60
60
 
61
61
  ### 2. Use with LangGraph
62
62
 
63
+ ```bash
64
+ pip install langgraph
65
+ ```
66
+
63
67
  Here's a simple example of using Arcade tools with LangGraph:
64
68
 
65
69
  ```python
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "langchain-arcade"
3
- version = "1.3.0"
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
- langgraph = ">=0.2.67,<0.3.0"
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]