glaip-sdk 0.6.24__py3-none-any.whl → 0.6.26__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.
- glaip_sdk/cli/commands/agents/__init__.py +119 -0
- glaip_sdk/cli/commands/agents/_common.py +561 -0
- glaip_sdk/cli/commands/agents/create.py +151 -0
- glaip_sdk/cli/commands/agents/delete.py +64 -0
- glaip_sdk/cli/commands/agents/get.py +89 -0
- glaip_sdk/cli/commands/agents/list.py +129 -0
- glaip_sdk/cli/commands/agents/run.py +264 -0
- glaip_sdk/cli/commands/agents/sync_langflow.py +72 -0
- glaip_sdk/cli/commands/agents/update.py +112 -0
- glaip_sdk/cli/commands/mcps/__init__.py +98 -0
- glaip_sdk/cli/commands/mcps/_common.py +490 -0
- glaip_sdk/cli/commands/mcps/connect.py +82 -0
- glaip_sdk/cli/commands/mcps/create.py +153 -0
- glaip_sdk/cli/commands/mcps/delete.py +73 -0
- glaip_sdk/cli/commands/mcps/get.py +212 -0
- glaip_sdk/cli/commands/mcps/list.py +69 -0
- glaip_sdk/cli/commands/mcps/tools.py +235 -0
- glaip_sdk/cli/commands/mcps/update.py +146 -0
- glaip_sdk/cli/commands/shared/__init__.py +21 -0
- glaip_sdk/cli/commands/shared/formatters.py +91 -0
- glaip_sdk/cli/commands/tools/__init__.py +69 -0
- glaip_sdk/cli/commands/tools/_common.py +80 -0
- glaip_sdk/cli/commands/tools/create.py +228 -0
- glaip_sdk/cli/commands/tools/delete.py +61 -0
- glaip_sdk/cli/commands/tools/get.py +103 -0
- glaip_sdk/cli/commands/tools/list.py +69 -0
- glaip_sdk/cli/commands/tools/script.py +49 -0
- glaip_sdk/cli/commands/tools/update.py +102 -0
- glaip_sdk/cli/commands/transcripts/__init__.py +90 -0
- glaip_sdk/cli/commands/transcripts/_common.py +9 -0
- glaip_sdk/cli/commands/transcripts/clear.py +5 -0
- glaip_sdk/cli/commands/transcripts/detail.py +5 -0
- glaip_sdk/client/_agent_payloads.py +32 -500
- glaip_sdk/client/agents.py +1 -1
- glaip_sdk/client/main.py +1 -1
- glaip_sdk/client/mcps.py +44 -13
- glaip_sdk/client/payloads/agent/__init__.py +23 -0
- glaip_sdk/client/payloads/agent/requests.py +495 -0
- glaip_sdk/client/payloads/agent/responses.py +43 -0
- glaip_sdk/client/tools.py +38 -3
- glaip_sdk/registry/tool.py +54 -5
- glaip_sdk/tools/base.py +41 -10
- glaip_sdk/utils/import_resolver.py +40 -2
- {glaip_sdk-0.6.24.dist-info → glaip_sdk-0.6.26.dist-info}/METADATA +1 -1
- {glaip_sdk-0.6.24.dist-info → glaip_sdk-0.6.26.dist-info}/RECORD +49 -17
- glaip_sdk/cli/commands/agents.py +0 -1502
- glaip_sdk/cli/commands/mcps.py +0 -1355
- glaip_sdk/cli/commands/tools.py +0 -575
- /glaip_sdk/cli/commands/{transcripts.py → transcripts_original.py} +0 -0
- {glaip_sdk-0.6.24.dist-info → glaip_sdk-0.6.26.dist-info}/WHEEL +0 -0
- {glaip_sdk-0.6.24.dist-info → glaip_sdk-0.6.26.dist-info}/entry_points.txt +0 -0
- {glaip_sdk-0.6.24.dist-info → glaip_sdk-0.6.26.dist-info}/top_level.txt +0 -0
glaip_sdk/registry/tool.py
CHANGED
|
@@ -66,9 +66,16 @@ class ToolRegistry(BaseRegistry["Tool"]):
|
|
|
66
66
|
Raises:
|
|
67
67
|
ValueError: If name cannot be extracted from the reference.
|
|
68
68
|
"""
|
|
69
|
+
# Lazy import to avoid circular dependency
|
|
70
|
+
from glaip_sdk.tools.base import Tool # noqa: PLC0415
|
|
71
|
+
|
|
69
72
|
if isinstance(ref, str):
|
|
70
73
|
return ref
|
|
71
74
|
|
|
75
|
+
# Tool instance (from Tool.from_langchain() or Tool.from_native())
|
|
76
|
+
if isinstance(ref, Tool):
|
|
77
|
+
return ref.get_name()
|
|
78
|
+
|
|
72
79
|
# Dict from API response - extract name or id
|
|
73
80
|
if isinstance(ref, dict):
|
|
74
81
|
return ref.get("name") or ref.get("id") or ""
|
|
@@ -101,17 +108,61 @@ class ToolRegistry(BaseRegistry["Tool"]):
|
|
|
101
108
|
ValueError: If the tool cannot be resolved.
|
|
102
109
|
"""
|
|
103
110
|
# Lazy imports to avoid circular dependency
|
|
111
|
+
from glaip_sdk.tools.base import Tool as ToolClass # noqa: PLC0415
|
|
112
|
+
from glaip_sdk.tools.base import ToolType # noqa: PLC0415
|
|
104
113
|
from glaip_sdk.utils.discovery import find_tool # noqa: PLC0415
|
|
105
114
|
from glaip_sdk.utils.sync import update_or_create_tool # noqa: PLC0415
|
|
106
115
|
|
|
107
|
-
#
|
|
116
|
+
# Tool instance from Tool.from_native() or Tool.from_langchain()
|
|
117
|
+
# Use try/except to handle mocked Tool class in tests
|
|
118
|
+
try:
|
|
119
|
+
is_tool_instance = isinstance(ref, ToolClass)
|
|
120
|
+
except TypeError:
|
|
121
|
+
is_tool_instance = False
|
|
122
|
+
|
|
123
|
+
if is_tool_instance:
|
|
124
|
+
# If Tool has an ID, it's already deployed - return as-is
|
|
125
|
+
if ref.id is not None:
|
|
126
|
+
logger.debug("Caching already deployed tool: %s", name)
|
|
127
|
+
self._cache[name] = ref
|
|
128
|
+
# Also cache by id for consistency with other resolution branches
|
|
129
|
+
self._cache[ref.id] = ref
|
|
130
|
+
return ref
|
|
131
|
+
|
|
132
|
+
# Tool.from_native() - look up on platform
|
|
133
|
+
if ref.tool_type == ToolType.NATIVE:
|
|
134
|
+
logger.info("Looking up native tool: %s", name)
|
|
135
|
+
tool = find_tool(name)
|
|
136
|
+
if tool:
|
|
137
|
+
self._cache[name] = tool
|
|
138
|
+
return tool
|
|
139
|
+
raise ValueError(f"Native tool not found on platform: {name}")
|
|
140
|
+
|
|
141
|
+
# Tool.from_langchain() - upload the tool_class
|
|
142
|
+
if ref.tool_class is not None:
|
|
143
|
+
logger.info("Uploading custom tool: %s", name)
|
|
144
|
+
tool = update_or_create_tool(ref.tool_class)
|
|
145
|
+
self._cache[name] = tool
|
|
146
|
+
if tool.id:
|
|
147
|
+
self._cache[tool.id] = tool
|
|
148
|
+
return tool
|
|
149
|
+
|
|
150
|
+
# Unresolvable Tool instance - neither native nor has tool_class
|
|
151
|
+
raise ValueError(
|
|
152
|
+
f"Cannot resolve Tool instance: {ref}. "
|
|
153
|
+
f"Tool has no id, is not NATIVE type, and has no tool_class. "
|
|
154
|
+
f"Ensure Tool is created via Tool.from_native() or Tool.from_langchain()."
|
|
155
|
+
)
|
|
156
|
+
|
|
157
|
+
# Already deployed tool (not a ToolClass, but has id/name) - just cache and return
|
|
158
|
+
# This handles API response objects and backward compatibility
|
|
108
159
|
if hasattr(ref, "id") and hasattr(ref, "name") and not isinstance(ref, type):
|
|
109
160
|
if ref.id is not None:
|
|
110
161
|
logger.debug("Caching already deployed tool: %s", name)
|
|
111
162
|
self._cache[name] = ref
|
|
112
163
|
return ref
|
|
113
164
|
|
|
114
|
-
# Tool without ID (
|
|
165
|
+
# Tool without ID (backward compatibility) - look up on platform
|
|
115
166
|
logger.info("Looking up native tool: %s", name)
|
|
116
167
|
tool = find_tool(name)
|
|
117
168
|
if tool:
|
|
@@ -132,9 +183,7 @@ class ToolRegistry(BaseRegistry["Tool"]):
|
|
|
132
183
|
if isinstance(ref, dict):
|
|
133
184
|
tool_id = ref.get("id")
|
|
134
185
|
if tool_id:
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
tool = Tool(id=tool_id, name=ref.get("name", ""))
|
|
186
|
+
tool = ToolClass(id=tool_id, name=ref.get("name", ""))
|
|
138
187
|
self._cache[name] = tool
|
|
139
188
|
return tool
|
|
140
189
|
raise ValueError(f"Tool dict missing 'id': {ref}")
|
glaip_sdk/tools/base.py
CHANGED
|
@@ -256,6 +256,9 @@ class Tool:
|
|
|
256
256
|
Returns:
|
|
257
257
|
A Tool reference that will be uploaded during Agent.deploy().
|
|
258
258
|
|
|
259
|
+
Raises:
|
|
260
|
+
ValueError: If the tool class has no valid string 'name' attribute or field.
|
|
261
|
+
|
|
259
262
|
Example:
|
|
260
263
|
>>> from langchain_core.tools import BaseTool
|
|
261
264
|
>>>
|
|
@@ -267,7 +270,42 @@ class Tool:
|
|
|
267
270
|
>>>
|
|
268
271
|
>>> greeting_tool = Tool.from_langchain(GreetingTool)
|
|
269
272
|
"""
|
|
270
|
-
|
|
273
|
+
# Extract name from tool_class to populate the name attribute
|
|
274
|
+
tool_name = cls._extract_tool_name(tool_class)
|
|
275
|
+
return cls(name=tool_name, tool_class=tool_class, type=ToolType.CUSTOM)
|
|
276
|
+
|
|
277
|
+
@staticmethod
|
|
278
|
+
def _extract_tool_name(tool_class: type) -> str:
|
|
279
|
+
"""Extract tool name from a LangChain tool class.
|
|
280
|
+
|
|
281
|
+
Args:
|
|
282
|
+
tool_class: A LangChain BaseTool subclass.
|
|
283
|
+
|
|
284
|
+
Returns:
|
|
285
|
+
The extracted tool name.
|
|
286
|
+
|
|
287
|
+
Raises:
|
|
288
|
+
ValueError: If name cannot be extracted or is not a valid string.
|
|
289
|
+
"""
|
|
290
|
+
# Try model_fields first (Pydantic v2)
|
|
291
|
+
if hasattr(tool_class, "model_fields"):
|
|
292
|
+
name_field = tool_class.model_fields.get("name")
|
|
293
|
+
if name_field and name_field.default:
|
|
294
|
+
# Validate that default is actually a string
|
|
295
|
+
if isinstance(name_field.default, str):
|
|
296
|
+
return name_field.default
|
|
297
|
+
|
|
298
|
+
# Try direct name attribute
|
|
299
|
+
if hasattr(tool_class, "name"):
|
|
300
|
+
name_attr = getattr(tool_class, "name")
|
|
301
|
+
if isinstance(name_attr, str):
|
|
302
|
+
return name_attr
|
|
303
|
+
|
|
304
|
+
# If we can't extract the name, raise an error
|
|
305
|
+
raise ValueError(
|
|
306
|
+
f"Cannot extract name from tool class {tool_class.__name__}. "
|
|
307
|
+
f"Ensure the tool class has a 'name' attribute or field with a valid string value."
|
|
308
|
+
)
|
|
271
309
|
|
|
272
310
|
def get_import_path(self) -> str | None:
|
|
273
311
|
"""Get the import path for custom tools.
|
|
@@ -292,15 +330,8 @@ class Tool:
|
|
|
292
330
|
return self.name
|
|
293
331
|
|
|
294
332
|
if self.tool_class is not None:
|
|
295
|
-
#
|
|
296
|
-
|
|
297
|
-
name_field = self.tool_class.model_fields.get("name")
|
|
298
|
-
if name_field and name_field.default:
|
|
299
|
-
return name_field.default
|
|
300
|
-
|
|
301
|
-
# Direct name attribute
|
|
302
|
-
if hasattr(self.tool_class, "name"):
|
|
303
|
-
return self.tool_class.name
|
|
333
|
+
# Reuse extraction logic for consistency
|
|
334
|
+
return self._extract_tool_name(self.tool_class)
|
|
304
335
|
|
|
305
336
|
raise ValueError(f"Cannot determine name for tool: {self}")
|
|
306
337
|
|
|
@@ -215,11 +215,49 @@ class ImportResolver:
|
|
|
215
215
|
True if import should be skipped.
|
|
216
216
|
"""
|
|
217
217
|
if isinstance(node, ast.ImportFrom):
|
|
218
|
-
return
|
|
218
|
+
return self._should_skip_import_from(node)
|
|
219
219
|
if isinstance(node, ast.Import):
|
|
220
|
-
return
|
|
220
|
+
return self._should_skip_regular_import(node)
|
|
221
221
|
return False
|
|
222
222
|
|
|
223
|
+
def _should_skip_import_from(self, node: ast.ImportFrom) -> bool:
|
|
224
|
+
"""Check if ImportFrom node should be skipped.
|
|
225
|
+
|
|
226
|
+
Args:
|
|
227
|
+
node: ImportFrom node to check.
|
|
228
|
+
|
|
229
|
+
Returns:
|
|
230
|
+
True if import should be skipped.
|
|
231
|
+
"""
|
|
232
|
+
if not node.module:
|
|
233
|
+
return False
|
|
234
|
+
return self._is_module_excluded(node.module)
|
|
235
|
+
|
|
236
|
+
def _should_skip_regular_import(self, node: ast.Import) -> bool:
|
|
237
|
+
"""Check if Import node should be skipped.
|
|
238
|
+
|
|
239
|
+
Args:
|
|
240
|
+
node: Import node to check.
|
|
241
|
+
|
|
242
|
+
Returns:
|
|
243
|
+
True if any alias should be skipped.
|
|
244
|
+
"""
|
|
245
|
+
return any(self._is_module_excluded(alias.name) for alias in node.names)
|
|
246
|
+
|
|
247
|
+
def _is_module_excluded(self, module_name: str) -> bool:
|
|
248
|
+
"""Check if a module name should be excluded.
|
|
249
|
+
|
|
250
|
+
Args:
|
|
251
|
+
module_name: Module name to check.
|
|
252
|
+
|
|
253
|
+
Returns:
|
|
254
|
+
True if module is excluded.
|
|
255
|
+
"""
|
|
256
|
+
# Exact match for glaip_sdk or match excluded submodules with boundary
|
|
257
|
+
if module_name == "glaip_sdk":
|
|
258
|
+
return True
|
|
259
|
+
return any(module_name == m or module_name.startswith(m + ".") for m in self.EXCLUDED_MODULES)
|
|
260
|
+
|
|
223
261
|
@staticmethod
|
|
224
262
|
def _build_import_strings(future_imports: list, regular_imports: list) -> list[str]:
|
|
225
263
|
"""Build formatted import strings from import nodes.
|
|
@@ -26,14 +26,43 @@ glaip_sdk/cli/update_notifier.py,sha256=fO1xbSBF8cHukEN_FZDJuhDRqOYubB1CoPYOgvy9
|
|
|
26
26
|
glaip_sdk/cli/validators.py,sha256=k4J2ACYJPF6UmWJfENt9OHWdp4RNArVxR3hoeqauO88,5629
|
|
27
27
|
glaip_sdk/cli/commands/__init__.py,sha256=6Z3ASXDut0lAbUX_umBFtxPzzFyqoiZfVeTahThFu1A,219
|
|
28
28
|
glaip_sdk/cli/commands/accounts.py,sha256=vUZYt5Ii-nWKJ1nXRU684NHILpPXj40Xfh4qN1tZsNc,24685
|
|
29
|
-
glaip_sdk/cli/commands/agents.py,sha256=8F4WZbfXPfvB5Vvy2YuOoUxG_3uC3hCrLJbv3X_q7to,48512
|
|
30
29
|
glaip_sdk/cli/commands/common_config.py,sha256=seZUw_3kV7GlDH31uYHnT_Khq6B3oEuO-fIerXasgEI,3730
|
|
31
30
|
glaip_sdk/cli/commands/configure.py,sha256=ZToy6LSQ3ulEBrB9YpuWiIAiOQ2XQ11MxPNtN3V1V_A,30273
|
|
32
|
-
glaip_sdk/cli/commands/mcps.py,sha256=e2d4ZbvTQ-lrlC-VB2XaOqksJXvwwJfD1Hxz9vPQEbA,42623
|
|
33
31
|
glaip_sdk/cli/commands/models.py,sha256=kZKqwv2uzfyz8n_7b0hYTT8waaVZMDzVoSXtRvWa9jk,2042
|
|
34
|
-
glaip_sdk/cli/commands/
|
|
35
|
-
glaip_sdk/cli/commands/transcripts.py,sha256=6KEAP_mMdoNgydpunxLjYl6QJIY-CJorwLTBSF3Cfuo,26416
|
|
32
|
+
glaip_sdk/cli/commands/transcripts_original.py,sha256=6KEAP_mMdoNgydpunxLjYl6QJIY-CJorwLTBSF3Cfuo,26416
|
|
36
33
|
glaip_sdk/cli/commands/update.py,sha256=SMO_Hr9WEolqvpFhEXY3TboBLHBfXIvBvwovbONEs7Y,6329
|
|
34
|
+
glaip_sdk/cli/commands/agents/__init__.py,sha256=V-tRAqMcY4amDygp16clkEfQS4Sqw0vOR4BzAGHzNg0,3436
|
|
35
|
+
glaip_sdk/cli/commands/agents/_common.py,sha256=2Zg_LctV6CCyZVrXz3xFs6fDX624jVTDzv9VYHMq2JM,17812
|
|
36
|
+
glaip_sdk/cli/commands/agents/create.py,sha256=8IFWXZJexspy1M2059CUygVd_xmXXg3JZtVUskVwHMI,4819
|
|
37
|
+
glaip_sdk/cli/commands/agents/delete.py,sha256=WgNOr_JHqD8EF4jBU0vmUphIyAlbLHWbx68KuINxnz0,1684
|
|
38
|
+
glaip_sdk/cli/commands/agents/get.py,sha256=vwYa2GIFgxGPTmNiIPv3EceJ2NI3S92e6qaAVrgJm48,2682
|
|
39
|
+
glaip_sdk/cli/commands/agents/list.py,sha256=u4gGYYMLJZatKVtpIovcxqzU8caIyvZCuou1GzePcAo,4696
|
|
40
|
+
glaip_sdk/cli/commands/agents/run.py,sha256=XtahMOHhh8K3kaUODXGxbuvA4FfcVEO8yBGfCPqP8zY,8187
|
|
41
|
+
glaip_sdk/cli/commands/agents/sync_langflow.py,sha256=NVejCglmKAzy9WUnj_VkutyOl-jF8ro4Rh_JLul3xxs,2329
|
|
42
|
+
glaip_sdk/cli/commands/agents/update.py,sha256=uMX_-DFhOTBS-tboG-JEkGLlf1q-cfj1FGABGIQSh9g,3441
|
|
43
|
+
glaip_sdk/cli/commands/mcps/__init__.py,sha256=7gcylRGrFoqex-JhKN4-_sNQr_bY-xwwFuP3UPs5_sw,3020
|
|
44
|
+
glaip_sdk/cli/commands/mcps/_common.py,sha256=-D6F_TfEDt_PozhUnwUCK4HjancGVRbI5ZSFAM4HtOM,15577
|
|
45
|
+
glaip_sdk/cli/commands/mcps/connect.py,sha256=dxz4Y43boZivRGwe5jWM5KwwUNNqiZE6HLKb_BZWgD8,2416
|
|
46
|
+
glaip_sdk/cli/commands/mcps/create.py,sha256=8w_munynS9ShPVF09Zy9Egao4ZijX12y3JrhUObWvf0,4955
|
|
47
|
+
glaip_sdk/cli/commands/mcps/delete.py,sha256=yIEFuzY6DswVblTdEql3k6b6JSNstNqIHg0vZqazTXc,1945
|
|
48
|
+
glaip_sdk/cli/commands/mcps/get.py,sha256=XQns1wfydmN-7fiNGzlXLWTktLr4pwgW1jhoHVf9NYM,7072
|
|
49
|
+
glaip_sdk/cli/commands/mcps/list.py,sha256=e0qtTtkmOsZVsBNu_ytfyFPV0eDtdlVrUfTfcoI8Ivk,2051
|
|
50
|
+
glaip_sdk/cli/commands/mcps/tools.py,sha256=iMi2mfwQS-lE4yhhHRiBrVeK6qG-IfVKGyV1P4stZVs,7089
|
|
51
|
+
glaip_sdk/cli/commands/mcps/update.py,sha256=dzNeb2zjdrEKLblfys8pYENXihANozzypiursjqepU4,4895
|
|
52
|
+
glaip_sdk/cli/commands/shared/__init__.py,sha256=LA1GQMwBSNpeSHifPOJ9V4VjOuGAlVOyD1MIQO1z1ms,465
|
|
53
|
+
glaip_sdk/cli/commands/shared/formatters.py,sha256=QWjVTihmQV7O6MjMI_8tnTycu0rgGHKF5vMh_FanZMg,2499
|
|
54
|
+
glaip_sdk/cli/commands/tools/__init__.py,sha256=KkcMYJNe164V25Eqp2Bygwf49LIcyECm3r5k59p6cQU,2111
|
|
55
|
+
glaip_sdk/cli/commands/tools/_common.py,sha256=IFJEoyP-lphu0X3eR6txr4QD8Qr1g-AP1kLtahZ29Fo,2190
|
|
56
|
+
glaip_sdk/cli/commands/tools/create.py,sha256=h00UlpoIBXFUQ_tYaQnMHyWyqd1AMT7xsC7ZgpSJ_pM,7134
|
|
57
|
+
glaip_sdk/cli/commands/tools/delete.py,sha256=lSACJivmpT4Z7KVWOYVErdcWb487UpnlBpjCrlMI_lM,1696
|
|
58
|
+
glaip_sdk/cli/commands/tools/get.py,sha256=VBexy7ZJI418OCYBGQhn5vUO9r22kTctGrTih78qDa8,3530
|
|
59
|
+
glaip_sdk/cli/commands/tools/list.py,sha256=cHHc5pj-NWJaGXpAgdbtuA1gOrqjecUk83eUOuFrp78,1991
|
|
60
|
+
glaip_sdk/cli/commands/tools/script.py,sha256=6mKmMlTkIc0rhvF4l3k4Tyf2d0nOtSJNVd12uR7iF18,1523
|
|
61
|
+
glaip_sdk/cli/commands/tools/update.py,sha256=fptBM6AnrkZQkHaqvDSR149kwFJXBGujpKJ8q9WadDQ,3599
|
|
62
|
+
glaip_sdk/cli/commands/transcripts/__init__.py,sha256=CSipOETWNbnzXts12qis35lkLChAf8-tJJ3Jlz4si6k,2870
|
|
63
|
+
glaip_sdk/cli/commands/transcripts/_common.py,sha256=O70Xg9jFXpz_zDzgWDSJxTmkEl-VkfegAGxzJsa1jDY,238
|
|
64
|
+
glaip_sdk/cli/commands/transcripts/clear.py,sha256=5E-gpazli2Y-KwRnZ44BRgDlFUYQErfc7wEGQ9QzrCc,157
|
|
65
|
+
glaip_sdk/cli/commands/transcripts/detail.py,sha256=tLahGWMPZxXk9xlvM2ye8elgq_b73QQLKzHBO8nCJ_g,159
|
|
37
66
|
glaip_sdk/cli/core/__init__.py,sha256=HTQqpijKNts6bYnwY97rpP3J324phoQmGFi6OXqi0E4,2116
|
|
38
67
|
glaip_sdk/cli/core/context.py,sha256=I22z5IhZ09g5FPtMycDGU9Aj20Qv3TOQLhA5enaU2qk,3970
|
|
39
68
|
glaip_sdk/cli/core/output.py,sha256=hj5F1M_rEqr4CChmdyW1QzGiWL0Mwzf-BFw-d6pjhjY,28304
|
|
@@ -62,18 +91,21 @@ glaip_sdk/cli/transcript/history.py,sha256=IAUaY41QCr9jKgQ1t8spDJiO3Me5r1vAoTX47
|
|
|
62
91
|
glaip_sdk/cli/transcript/launcher.py,sha256=z5ivkPXDQJpATIqtRLUK8jH3p3WIZ72PvOPqYRDMJvw,2327
|
|
63
92
|
glaip_sdk/cli/transcript/viewer.py,sha256=Y4G40WR6v1g4TfxRbGSZqdrqhLcqBxoWkQgToQoGGxM,13198
|
|
64
93
|
glaip_sdk/client/__init__.py,sha256=s2REOumgE8Z8lA9dWJpwXqpgMdzSELSuCQkZ7sYngX0,381
|
|
65
|
-
glaip_sdk/client/_agent_payloads.py,sha256=
|
|
94
|
+
glaip_sdk/client/_agent_payloads.py,sha256=ElpukrTQo2mUrtQ5TrIPIxuoAHnk8NXYaRP7s7dUpGg,1423
|
|
66
95
|
glaip_sdk/client/_schedule_payloads.py,sha256=9BXa75CCx3clsKgwmG9AWyvhPY6kVwzQtoLvTTw40CQ,2759
|
|
67
96
|
glaip_sdk/client/agent_runs.py,sha256=tZSFEZZ3Yx0uYRgnwkLe-X0TlmgKJQ-ivzb6SrVnxY8,4862
|
|
68
|
-
glaip_sdk/client/agents.py,sha256=
|
|
97
|
+
glaip_sdk/client/agents.py,sha256=jR6DmpW1XRvpa_ewtXfzOH-q2ipTIF--yHZDdasq5Mk,48249
|
|
69
98
|
glaip_sdk/client/base.py,sha256=BhNaC2TJJ2jVWRTYmfxD3WjYgAyIuWNz9YURdNXXjJo,18245
|
|
70
|
-
glaip_sdk/client/main.py,sha256=
|
|
71
|
-
glaip_sdk/client/mcps.py,sha256
|
|
99
|
+
glaip_sdk/client/main.py,sha256=hhMw2c64BfxYavvA2Hz0xCTQPe7EcOXjGKIahwsX_DI,9269
|
|
100
|
+
glaip_sdk/client/mcps.py,sha256=-JdaIkg0QE3egJ8p93eoOPULup8KbM2WRCcwlvqlqrA,14492
|
|
72
101
|
glaip_sdk/client/run_rendering.py,sha256=kERp78v50jojsNWHrjNEkbC8sgOpMacaqUdw5YZuK6A,26074
|
|
73
102
|
glaip_sdk/client/schedules.py,sha256=ZfPzCYzk4YRuPkjkTTgLe5Rqa07mi-h2WmP4H91mMZ0,14113
|
|
74
103
|
glaip_sdk/client/shared.py,sha256=esHlsR0LEfL-pFDaWebQjKKOLl09jsRY-2pllBUn4nU,522
|
|
75
|
-
glaip_sdk/client/tools.py,sha256=
|
|
104
|
+
glaip_sdk/client/tools.py,sha256=PcMy4dwqLDaN62Ej_ZPzhtXuWJryNtLDaku9db5EQ38,23984
|
|
76
105
|
glaip_sdk/client/validators.py,sha256=ioF9VCs-LG2yLkaRDd7Hff74lojDZZ0_Q3CiLbdm1RY,8381
|
|
106
|
+
glaip_sdk/client/payloads/agent/__init__.py,sha256=gItEH2zt2secVq6n60oGA-ztdE5mc0GLECn-QMX47ew,558
|
|
107
|
+
glaip_sdk/client/payloads/agent/requests.py,sha256=5FuGEuypaEXlWBhB07JrDca_ecLg4bvo8mjyFBxAV9U,17139
|
|
108
|
+
glaip_sdk/client/payloads/agent/responses.py,sha256=1eRMI4JAIGqTB5zY_7D9ILQDRHPXR06U7JqHSmRp3Qs,1243
|
|
77
109
|
glaip_sdk/config/constants.py,sha256=Y03c6op0e7K0jTQ8bmWXhWAqsnjWxkAhWniq8Z0iEKY,1081
|
|
78
110
|
glaip_sdk/hitl/__init__.py,sha256=sg92Rpu8_vJIGi1ZEhx0-qWa1nGdvfrKyJAxtoDSKzo,494
|
|
79
111
|
glaip_sdk/hitl/local.py,sha256=rzmaRK15BxgRX7cmklUcGQUotMYg8x2Gd9BWf39k6hw,5661
|
|
@@ -92,7 +124,7 @@ glaip_sdk/registry/__init__.py,sha256=mjvElYE-wwmbriGe-c6qy4on0ccEuWxW_EWWrSbptC
|
|
|
92
124
|
glaip_sdk/registry/agent.py,sha256=F0axW4BIUODqnttIOzxnoS5AqQkLZ1i48FTeZNnYkhA,5203
|
|
93
125
|
glaip_sdk/registry/base.py,sha256=0x2ZBhiERGUcf9mQeWlksSYs5TxDG6FxBYQToYZa5D4,4143
|
|
94
126
|
glaip_sdk/registry/mcp.py,sha256=kNJmiijIbZL9Btx5o2tFtbaT-WG6O4Xf_nl3wz356Ow,7978
|
|
95
|
-
glaip_sdk/registry/tool.py,sha256=
|
|
127
|
+
glaip_sdk/registry/tool.py,sha256=rLORO-Y5z-zo_qcomF-VKsfZrNKiZ1o36MMg86L1X9w,9885
|
|
96
128
|
glaip_sdk/runner/__init__.py,sha256=8RrngoGfpF8x9X27RPdX4gJjch75ZvhtVt_6UV0ULLQ,1615
|
|
97
129
|
glaip_sdk/runner/base.py,sha256=KIjcSAyDCP9_mn2H4rXR5gu1FZlwD9pe0gkTBmr6Yi4,2663
|
|
98
130
|
glaip_sdk/runner/deps.py,sha256=Du3hr2R5RHOYCRAv7RVmx661x-ayVXIeZ8JD7ODirTA,3884
|
|
@@ -107,7 +139,7 @@ glaip_sdk/runner/tool_adapter/langchain_tool_adapter.py,sha256=goSSDOpubuplsKpfe
|
|
|
107
139
|
glaip_sdk/schedules/__init__.py,sha256=Ty__lE8ta3a6O7EiEsSXliVOwA3EBLKxKRsjAJt2WUg,482
|
|
108
140
|
glaip_sdk/schedules/base.py,sha256=ZRKWknoxQOYMhX8mjQ7S7oqpy6Wr0xdbzcgIrycsEQ8,9727
|
|
109
141
|
glaip_sdk/tools/__init__.py,sha256=rhGzEqQFCzeMrxmikBuNrMz4PyYczwic28boDKVmoHs,585
|
|
110
|
-
glaip_sdk/tools/base.py,sha256=
|
|
142
|
+
glaip_sdk/tools/base.py,sha256=hkz2NZFHW1PqsRiXh3kKTVLIjMPR274Uwml944vH5tg,16325
|
|
111
143
|
glaip_sdk/utils/__init__.py,sha256=ntohV7cxlY2Yksi2nFuFm_Mg2XVJbBbSJVRej7Mi9YE,2770
|
|
112
144
|
glaip_sdk/utils/agent_config.py,sha256=RhcHsSOVwOaSC2ggnPuHn36Aa0keGJhs8KGb2InvzRk,7262
|
|
113
145
|
glaip_sdk/utils/bundler.py,sha256=fQWAv0e5qNjF1Lah-FGoA9W5Q59YaHbQfX_4ZB84YRw,9120
|
|
@@ -119,7 +151,7 @@ glaip_sdk/utils/display.py,sha256=zu3SYqxj9hPyEN8G1vIXv_yXBkV8jLLCXEg2rs8NlzM,44
|
|
|
119
151
|
glaip_sdk/utils/export.py,sha256=1NxxE3wGsA1auzecG5oJw5ELB4VmPljoeIkGhrGOh1I,5006
|
|
120
152
|
glaip_sdk/utils/general.py,sha256=3HSVIopUsIymPaim-kP2lqLX75TkkdIVLe6g3UKabZ0,1507
|
|
121
153
|
glaip_sdk/utils/import_export.py,sha256=RCvoydm_6_L7_J1igcE6IYDunqgS5mQUbWT4VGrytMw,5510
|
|
122
|
-
glaip_sdk/utils/import_resolver.py,sha256=
|
|
154
|
+
glaip_sdk/utils/import_resolver.py,sha256=x--2oo_QXqmESd8gdYzYD3gGIWOkC-IgfTziA300r5w,17358
|
|
123
155
|
glaip_sdk/utils/instructions.py,sha256=MTk93lsq3I8aRnvnRMSXXNMzcpnaIM_Pm3Aiiiq3GBc,2997
|
|
124
156
|
glaip_sdk/utils/resource_refs.py,sha256=vF34kyAtFBLnaKnQVrsr2st1JiSxVbIZ4yq0DelJvCI,5966
|
|
125
157
|
glaip_sdk/utils/run_renderer.py,sha256=d_VMI6LbvHPUUeRmGqh5wK_lHqDEIAcym2iqpbtDad0,1365
|
|
@@ -160,8 +192,8 @@ glaip_sdk/utils/rendering/steps/format.py,sha256=Chnq7OBaj8XMeBntSBxrX5zSmrYeGcO
|
|
|
160
192
|
glaip_sdk/utils/rendering/steps/manager.py,sha256=BiBmTeQMQhjRMykgICXsXNYh1hGsss-fH9BIGVMWFi0,13194
|
|
161
193
|
glaip_sdk/utils/rendering/viewer/__init__.py,sha256=XrxmE2cMAozqrzo1jtDFm8HqNtvDcYi2mAhXLXn5CjI,457
|
|
162
194
|
glaip_sdk/utils/rendering/viewer/presenter.py,sha256=mlLMTjnyeyPVtsyrAbz1BJu9lFGQSlS-voZ-_Cuugv0,5725
|
|
163
|
-
glaip_sdk-0.6.
|
|
164
|
-
glaip_sdk-0.6.
|
|
165
|
-
glaip_sdk-0.6.
|
|
166
|
-
glaip_sdk-0.6.
|
|
167
|
-
glaip_sdk-0.6.
|
|
195
|
+
glaip_sdk-0.6.26.dist-info/METADATA,sha256=d91d_r-S4PqMnNMU_yAeZhf6VX3TGyIhj01O0cjCF2A,8299
|
|
196
|
+
glaip_sdk-0.6.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
197
|
+
glaip_sdk-0.6.26.dist-info/entry_points.txt,sha256=65vNPUggyYnVGhuw7RhNJ8Fp2jygTcX0yxJBcBY3iLU,48
|
|
198
|
+
glaip_sdk-0.6.26.dist-info/top_level.txt,sha256=td7yXttiYX2s94-4wFhv-5KdT0rSZ-pnJRSire341hw,10
|
|
199
|
+
glaip_sdk-0.6.26.dist-info/RECORD,,
|