composio-langgraph 0.5.6__tar.gz → 0.5.7__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.
Potentially problematic release.
This version of composio-langgraph might be problematic. Click here for more details.
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/PKG-INFO +2 -2
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph/toolset.py +5 -39
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph.egg-info/PKG-INFO +2 -2
- composio_langgraph-0.5.7/composio_langgraph.egg-info/requires.txt +2 -0
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/setup.py +2 -2
- composio_langgraph-0.5.6/composio_langgraph.egg-info/requires.txt +0 -2
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/README.md +0 -0
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph/__init__.py +0 -0
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph.egg-info/SOURCES.txt +0 -0
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph.egg-info/dependency_links.txt +0 -0
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph.egg-info/top_level.txt +0 -0
- {composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: composio_langgraph
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.7
|
|
4
4
|
Summary: Use Composio to get array of tools with LnagGraph Agent Workflows
|
|
5
5
|
Home-page: https://github.com/ComposioHQ/composio
|
|
6
6
|
Author: Sawradip
|
|
@@ -10,7 +10,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.9,<4
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
-
Requires-Dist: composio_langchain==0.5.
|
|
13
|
+
Requires-Dist: composio_langchain==0.5.7
|
|
14
14
|
Requires-Dist: langgraph
|
|
15
15
|
|
|
16
16
|
## 🦜🕸️ Using Composio With LangGraph
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
import typing as t
|
|
2
|
-
|
|
3
|
-
from composio import WorkspaceConfigType
|
|
4
|
-
from composio.constants import DEFAULT_ENTITY_ID
|
|
5
|
-
from composio.tools.toolset import MetadataType, ProcessorsType
|
|
6
|
-
|
|
7
1
|
from composio_langchain import ComposioToolSet as BaseComposioToolSet
|
|
8
2
|
|
|
9
3
|
|
|
10
|
-
class ComposioToolSet(
|
|
4
|
+
class ComposioToolSet(
|
|
5
|
+
BaseComposioToolSet,
|
|
6
|
+
runtime="langgraph",
|
|
7
|
+
description_char_limit=1024,
|
|
8
|
+
):
|
|
11
9
|
"""
|
|
12
10
|
Composio toolset for LangGraph framework.
|
|
13
11
|
|
|
@@ -95,35 +93,3 @@ class ComposioToolSet(BaseComposioToolSet):
|
|
|
95
93
|
app = workflow.compile()
|
|
96
94
|
```
|
|
97
95
|
"""
|
|
98
|
-
|
|
99
|
-
def __init__(
|
|
100
|
-
self,
|
|
101
|
-
api_key: t.Optional[str] = None,
|
|
102
|
-
base_url: t.Optional[str] = None,
|
|
103
|
-
entity_id: str = DEFAULT_ENTITY_ID,
|
|
104
|
-
output_in_file: bool = False,
|
|
105
|
-
workspace_config: t.Optional[WorkspaceConfigType] = None,
|
|
106
|
-
workspace_id: t.Optional[str] = None,
|
|
107
|
-
metadata: t.Optional[MetadataType] = None,
|
|
108
|
-
processors: t.Optional[ProcessorsType] = None,
|
|
109
|
-
) -> None:
|
|
110
|
-
"""
|
|
111
|
-
Initialize composio toolset.
|
|
112
|
-
|
|
113
|
-
:param api_key: Composio API key
|
|
114
|
-
:param base_url: Base URL for the Composio API server
|
|
115
|
-
:param entity_id: Entity ID for making function calls
|
|
116
|
-
:param output_in_file: Whether to write output to a file
|
|
117
|
-
"""
|
|
118
|
-
super().__init__(
|
|
119
|
-
api_key=api_key,
|
|
120
|
-
base_url=base_url,
|
|
121
|
-
entity_id=entity_id,
|
|
122
|
-
output_in_file=output_in_file,
|
|
123
|
-
workspace_config=workspace_config,
|
|
124
|
-
workspace_id=workspace_id,
|
|
125
|
-
metadata=metadata,
|
|
126
|
-
processors=processors,
|
|
127
|
-
)
|
|
128
|
-
|
|
129
|
-
self._runtime = "langgraph"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: composio_langgraph
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.7
|
|
4
4
|
Summary: Use Composio to get array of tools with LnagGraph Agent Workflows
|
|
5
5
|
Home-page: https://github.com/ComposioHQ/composio
|
|
6
6
|
Author: Sawradip
|
|
@@ -10,7 +10,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.9,<4
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
-
Requires-Dist: composio_langchain==0.5.
|
|
13
|
+
Requires-Dist: composio_langchain==0.5.7
|
|
14
14
|
Requires-Dist: langgraph
|
|
15
15
|
|
|
16
16
|
## 🦜🕸️ Using Composio With LangGraph
|
|
@@ -9,7 +9,7 @@ from setuptools import setup
|
|
|
9
9
|
|
|
10
10
|
setup(
|
|
11
11
|
name="composio_langgraph",
|
|
12
|
-
version="0.5.
|
|
12
|
+
version="0.5.7",
|
|
13
13
|
author="Sawradip",
|
|
14
14
|
author_email="sawradip@composio.dev",
|
|
15
15
|
description="Use Composio to get array of tools with LnagGraph Agent Workflows",
|
|
@@ -23,7 +23,7 @@ setup(
|
|
|
23
23
|
],
|
|
24
24
|
python_requires=">=3.9,<4",
|
|
25
25
|
install_requires=[
|
|
26
|
-
"composio_langchain==0.5.
|
|
26
|
+
"composio_langchain==0.5.7",
|
|
27
27
|
"langgraph",
|
|
28
28
|
],
|
|
29
29
|
include_package_data=True,
|
|
File without changes
|
|
File without changes
|
{composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{composio_langgraph-0.5.6 → composio_langgraph-0.5.7}/composio_langgraph.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|