alita-sdk 0.3.153__py3-none-any.whl → 0.3.154__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.
- alita_sdk/runtime/toolkits/tools.py +10 -10
- {alita_sdk-0.3.153.dist-info → alita_sdk-0.3.154.dist-info}/METADATA +3 -4
- {alita_sdk-0.3.153.dist-info → alita_sdk-0.3.154.dist-info}/RECORD +6 -6
- {alita_sdk-0.3.153.dist-info → alita_sdk-0.3.154.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.153.dist-info → alita_sdk-0.3.154.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.153.dist-info → alita_sdk-0.3.154.dist-info}/top_level.txt +0 -0
@@ -14,7 +14,7 @@ from .vectorstore import VectorStoreToolkit
|
|
14
14
|
from ..tools.mcp_server_tool import McpServerTool
|
15
15
|
# Import community tools
|
16
16
|
from ...community import get_toolkits as community_toolkits, get_tools as community_tools
|
17
|
-
from ...tools.memory import MemoryToolkit
|
17
|
+
# from ...tools.memory import MemoryToolkit
|
18
18
|
|
19
19
|
logger = logging.getLogger(__name__)
|
20
20
|
|
@@ -25,7 +25,7 @@ def get_toolkits():
|
|
25
25
|
# DatasourcesToolkit.toolkit_config_schema(),
|
26
26
|
# ApplicationToolkit.toolkit_config_schema(),
|
27
27
|
ArtifactToolkit.toolkit_config_schema(),
|
28
|
-
MemoryToolkit.toolkit_config_schema(),
|
28
|
+
# MemoryToolkit.toolkit_config_schema(),
|
29
29
|
VectorStoreToolkit.toolkit_config_schema()
|
30
30
|
]
|
31
31
|
|
@@ -67,14 +67,14 @@ def get_tools(tools_list: list, alita_client, llm, memory_store: BaseStore = Non
|
|
67
67
|
selected_tools=[],
|
68
68
|
llm=llm
|
69
69
|
))
|
70
|
-
elif tool['type'] == 'memory':
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
70
|
+
# elif tool['type'] == 'memory':
|
71
|
+
# if memory_store is None:
|
72
|
+
# raise ToolException(f"Memory store is not provided for memory tool: {tool['name']}")
|
73
|
+
# tools += MemoryToolkit.get_toolkit(
|
74
|
+
# namespace=tool['settings'].get('namespace', str(tool['id'])),
|
75
|
+
# store=memory_store,
|
76
|
+
# toolkit_name=tool.get('toolkit_name', '')
|
77
|
+
# ).get_tools()
|
78
78
|
elif tool['type'] == 'artifact':
|
79
79
|
tools.extend(ArtifactToolkit.get_toolkit(
|
80
80
|
client=alita_client,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alita_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.154
|
4
4
|
Summary: SDK for building langchain agents using resources from Alita
|
5
5
|
Author-email: Artem Rozumenko <artyom.rozumenko@gmail.com>, Mikalai Biazruchka <mikalai_biazruchka@epam.com>, Roman Mitusov <roman_mitusov@epam.com>, Ivan Krakhmaliuk <lifedjik@gmail.com>
|
6
6
|
License-Expression: Apache-2.0
|
@@ -31,12 +31,11 @@ Requires-Dist: langchain_community~=0.3.7; extra == "runtime"
|
|
31
31
|
Requires-Dist: langchain-openai~=0.3.0; extra == "runtime"
|
32
32
|
Requires-Dist: langgraph-checkpoint-sqlite~=2.0.0; extra == "runtime"
|
33
33
|
Requires-Dist: langgraph-checkpoint-postgres~=2.0.1; extra == "runtime"
|
34
|
-
Requires-Dist: langsmith
|
35
|
-
Requires-Dist: langgraph
|
34
|
+
Requires-Dist: langsmith==0.1.144; extra == "runtime"
|
35
|
+
Requires-Dist: langgraph~=0.2.53; extra == "runtime"
|
36
36
|
Requires-Dist: langchain_chroma~=0.2.2; extra == "runtime"
|
37
37
|
Requires-Dist: langchain-unstructured~=0.1.6; extra == "runtime"
|
38
38
|
Requires-Dist: langchain-postgres~=0.0.13; extra == "runtime"
|
39
|
-
Requires-Dist: langmem==0.0.27; extra == "runtime"
|
40
39
|
Requires-Dist: keybert==0.8.3; extra == "runtime"
|
41
40
|
Requires-Dist: charset_normalizer==3.3.2; extra == "runtime"
|
42
41
|
Requires-Dist: unstructured[local-inference]==0.16.23; extra == "runtime"
|
@@ -102,7 +102,7 @@ alita_sdk/runtime/toolkits/artifact.py,sha256=7fTr9VpGd2zwCB3EwW4aqWa5jVKRTunqV3
|
|
102
102
|
alita_sdk/runtime/toolkits/datasource.py,sha256=qk78OdPoReYPCWwahfkKLbKc4pfsu-061oXRryFLP6I,2498
|
103
103
|
alita_sdk/runtime/toolkits/prompt.py,sha256=WIpTkkVYWqIqOWR_LlSWz3ug8uO9tm5jJ7aZYdiGRn0,1192
|
104
104
|
alita_sdk/runtime/toolkits/subgraph.py,sha256=ZYqI4yVLbEPAjCR8dpXbjbL2ipX598Hk3fL6AgaqFD4,1758
|
105
|
-
alita_sdk/runtime/toolkits/tools.py,sha256=
|
105
|
+
alita_sdk/runtime/toolkits/tools.py,sha256=jGjavYf6tugvLJOU-Vc1L9bDtN295dVK9aqUk8dy490,6114
|
106
106
|
alita_sdk/runtime/toolkits/vectorstore.py,sha256=BGppQADa1ZiLO17fC0uCACTTEvPHlodEDYEzUcBRbAA,2901
|
107
107
|
alita_sdk/runtime/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
108
|
alita_sdk/runtime/tools/agent.py,sha256=m98QxOHwnCRTT9j18Olbb5UPS8-ZGeQaGiUyZJSyFck,3162
|
@@ -316,8 +316,8 @@ alita_sdk/tools/zephyr_enterprise/api_wrapper.py,sha256=Ir3zHljhbZQJRJJQOBzS_GL5
|
|
316
316
|
alita_sdk/tools/zephyr_enterprise/zephyr_enterprise.py,sha256=hV9LIrYfJT6oYp-ZfQR0YHflqBFPsUw2Oc55HwK0H48,6809
|
317
317
|
alita_sdk/tools/zephyr_scale/__init__.py,sha256=2NTcdrfkx4GSegqyXhsPLsEpc4FlACuDy85b0fk6cAo,4572
|
318
318
|
alita_sdk/tools/zephyr_scale/api_wrapper.py,sha256=UHVQUVqcBc3SZvDfO78HSuBzwAsRw2cCDQa-xMOzndE,68663
|
319
|
-
alita_sdk-0.3.
|
320
|
-
alita_sdk-0.3.
|
321
|
-
alita_sdk-0.3.
|
322
|
-
alita_sdk-0.3.
|
323
|
-
alita_sdk-0.3.
|
319
|
+
alita_sdk-0.3.154.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
320
|
+
alita_sdk-0.3.154.dist-info/METADATA,sha256=6mzJR0_IeWi5sbSXoR5ysc_CBzo8GprlOedjcRwC-QI,18667
|
321
|
+
alita_sdk-0.3.154.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
322
|
+
alita_sdk-0.3.154.dist-info/top_level.txt,sha256=0vJYy5p_jK6AwVb1aqXr7Kgqgk3WDtQ6t5C-XI9zkmg,10
|
323
|
+
alita_sdk-0.3.154.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|