langchain-arcade 1.0.0__py3-none-any.whl → 1.1.0__py3-none-any.whl
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/manager.py +3 -3
- {langchain_arcade-1.0.0.dist-info → langchain_arcade-1.1.0.dist-info}/METADATA +11 -12
- langchain_arcade-1.1.0.dist-info/RECORD +8 -0
- langchain_arcade-1.0.0.dist-info/RECORD +0 -8
- {langchain_arcade-1.0.0.dist-info → langchain_arcade-1.1.0.dist-info}/LICENSE +0 -0
- {langchain_arcade-1.0.0.dist-info → langchain_arcade-1.1.0.dist-info}/WHEEL +0 -0
langchain_arcade/manager.py
CHANGED
|
@@ -200,14 +200,14 @@ class ArcadeToolManager:
|
|
|
200
200
|
if toolkits:
|
|
201
201
|
for tk in toolkits:
|
|
202
202
|
# tools.list(...) returns a paginated response (SyncOffsetPage),
|
|
203
|
-
#
|
|
203
|
+
# which has an __iter__ method that automatically iterates over all pages.
|
|
204
204
|
paginated_tools = self.client.tools.list(toolkit=tk)
|
|
205
|
-
all_tools.extend(paginated_tools
|
|
205
|
+
all_tools.extend(paginated_tools)
|
|
206
206
|
|
|
207
207
|
# If no specific tools or toolkits were requested, retrieve *all* tools.
|
|
208
208
|
if not tools and not toolkits:
|
|
209
209
|
paginated_all_tools = self.client.tools.list()
|
|
210
|
-
all_tools.extend(paginated_all_tools
|
|
210
|
+
all_tools.extend(paginated_all_tools)
|
|
211
211
|
# Build a dictionary that maps the "full_tool_name" to the tool definition.
|
|
212
212
|
tool_definitions: dict[str, ToolDefinition] = {}
|
|
213
213
|
for tool in all_tools:
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: langchain-arcade
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: An integration package connecting Arcade and
|
|
3
|
+
Version: 1.1.0
|
|
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
|
|
7
|
-
Author: Arcade
|
|
8
|
-
Author-email: dev@arcade
|
|
7
|
+
Author: Arcade
|
|
8
|
+
Author-email: dev@arcade.dev
|
|
9
9
|
Requires-Python: >=3.10,<3.13
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
-
Requires-Dist: arcadepy (
|
|
15
|
+
Requires-Dist: arcadepy (==1.1.*)
|
|
16
16
|
Requires-Dist: langgraph (>=0.2.67,<0.3.0)
|
|
17
17
|
Project-URL: Repository, https://github.com/arcadeai/arcade-ai/tree/main/contrib/langchain
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
@@ -20,12 +20,12 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
<h3 align="center">
|
|
21
21
|
<a name="readme-top"></a>
|
|
22
22
|
<img
|
|
23
|
-
src="https://docs.arcade
|
|
23
|
+
src="https://docs.arcade.dev/images/logo/arcade-logo.png"
|
|
24
24
|
>
|
|
25
25
|
</h3>
|
|
26
26
|
<div align="center">
|
|
27
|
-
<h3>
|
|
28
|
-
<a href="https://github.com/arcadeai/arcade
|
|
27
|
+
<h3>Arcade Langchain Integration</h3>
|
|
28
|
+
<a href="https://github.com/arcadeai/langchain-arcade/blob/main/LICENSE">
|
|
29
29
|
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
|
|
30
30
|
</a>
|
|
31
31
|
<a href="https://pepy.tech/project/langchain-arcade">
|
|
@@ -35,16 +35,15 @@ Description-Content-Type: text/markdown
|
|
|
35
35
|
</div>
|
|
36
36
|
|
|
37
37
|
<p align="center">
|
|
38
|
-
<a href="https://docs.arcade
|
|
39
|
-
<a href="https://docs.arcade
|
|
40
|
-
<a href="https://github.com/ArcadeAI/cookbook" target="_blank">Cookbook</a> •
|
|
38
|
+
<a href="https://docs.arcade.dev" target="_blank">Arcade Documentation</a> •
|
|
39
|
+
<a href="https://docs.arcade.dev/toolkits" target="_blank">Toolkits</a> •
|
|
41
40
|
<a href="https://github.com/ArcadeAI/arcade-py" target="_blank">Python Client</a> •
|
|
42
41
|
<a href="https://github.com/ArcadeAI/arcade-js" target="_blank">JavaScript Client</a>
|
|
43
42
|
</p>
|
|
44
43
|
|
|
45
44
|
## Overview
|
|
46
45
|
|
|
47
|
-
`langchain-arcade` allows you to use Arcade
|
|
46
|
+
`langchain-arcade` allows you to use Arcade tools in your LangChain and LangGraph applications.
|
|
48
47
|
|
|
49
48
|
## Installation
|
|
50
49
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
langchain_arcade/__init__.py,sha256=nYAKEQBNNacNjGU6r_UY3lpkNzurGdujh2AsmdOky78,72
|
|
2
|
+
langchain_arcade/_utilities.py,sha256=LvT3kYS1urBftixyzOlQbzYsBQC5zn8_VE9xkIxCfRY,5946
|
|
3
|
+
langchain_arcade/manager.py,sha256=hltA3Tmv4ak_aRvkvu5DXv2nXbYP63Wm0V6YkkoR_vk,8222
|
|
4
|
+
langchain_arcade/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
langchain_arcade-1.1.0.dist-info/LICENSE,sha256=f4Q0XUZJ2MqZBO1XsqqHhuZfSs2ar1cZEJ45150zERo,1067
|
|
6
|
+
langchain_arcade-1.1.0.dist-info/METADATA,sha256=ZHojv1k2g_vKrt1IpTG66U8Rp_Tls3py8uiS7SmpeSg,1914
|
|
7
|
+
langchain_arcade-1.1.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
8
|
+
langchain_arcade-1.1.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
langchain_arcade/__init__.py,sha256=nYAKEQBNNacNjGU6r_UY3lpkNzurGdujh2AsmdOky78,72
|
|
2
|
-
langchain_arcade/_utilities.py,sha256=LvT3kYS1urBftixyzOlQbzYsBQC5zn8_VE9xkIxCfRY,5946
|
|
3
|
-
langchain_arcade/manager.py,sha256=eTPeAxT7s2vBOio6Pik8hjXvsVIrFlNvM4M2MoQFSyA,8222
|
|
4
|
-
langchain_arcade/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
langchain_arcade-1.0.0.dist-info/LICENSE,sha256=f4Q0XUZJ2MqZBO1XsqqHhuZfSs2ar1cZEJ45150zERo,1067
|
|
6
|
-
langchain_arcade-1.0.0.dist-info/METADATA,sha256=RWHefz0bobB_gzCYxXP41cDGAphijosVV1CIdIFX_CQ,2004
|
|
7
|
-
langchain_arcade-1.0.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
8
|
-
langchain_arcade-1.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|