agentkit-sdk-python 0.5.2__py3-none-any.whl → 0.5.4__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.
@@ -31,7 +31,7 @@ from google.adk.artifacts.in_memory_artifact_service import (
31
31
  from google.adk.auth.credential_service.in_memory_credential_service import (
32
32
  InMemoryCredentialService,
33
33
  )
34
- from google.adk.cli.adk_web_server import AdkWebServer
34
+ from google.adk.cli.adk_web_server import AdkWebServer, RunAgentRequest
35
35
  from google.adk.cli.utils.base_agent_loader import BaseAgentLoader
36
36
  from google.adk.evaluation.local_eval_set_results_manager import (
37
37
  LocalEvalSetResultsManager,
@@ -149,6 +149,92 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
149
149
 
150
150
  self.app = self.server.get_fast_api_app(lifespan=lifespan)
151
151
 
152
+ @self.app.post("/run_sse")
153
+ async def run_agent_sse(req: RunAgentRequest) -> StreamingResponse:
154
+ logger.info("Overriding run_agent_sse endpoint...")
155
+ # SSE endpoint
156
+ session = await self.server.session_service.get_session(
157
+ app_name=req.app_name,
158
+ user_id=req.user_id,
159
+ session_id=req.session_id,
160
+ )
161
+ if not session:
162
+ e = HTTPException(status_code=404, detail="Session not found")
163
+ telemetry.trace_agent_server_finish(
164
+ path="/run_sse", func_result="", exception=e
165
+ )
166
+ raise e
167
+
168
+ # Convert the events to properly formatted SSE
169
+ async def event_generator():
170
+ try:
171
+ stream_mode = (
172
+ StreamingMode.SSE if req.streaming else StreamingMode.NONE
173
+ )
174
+ runner = await self.server.get_runner_async(req.app_name)
175
+ async with Aclosing(
176
+ runner.run_async(
177
+ user_id=req.user_id,
178
+ session_id=req.session_id,
179
+ new_message=req.new_message,
180
+ state_delta=req.state_delta,
181
+ run_config=RunConfig(streaming_mode=stream_mode),
182
+ invocation_id=req.invocation_id,
183
+ )
184
+ ) as agen:
185
+ async for event in agen:
186
+ # ADK Web renders artifacts from `actions.artifactDelta`
187
+ # during part processing *and* during action processing
188
+ # 1) the original event with `artifactDelta` cleared (content)
189
+ # 2) a content-less "action-only" event carrying `artifactDelta`
190
+ events_to_stream = [event]
191
+ if (
192
+ event.actions.artifact_delta
193
+ and event.content
194
+ and event.content.parts
195
+ ):
196
+ content_event = event.model_copy(deep=True)
197
+ content_event.actions.artifact_delta = {}
198
+ artifact_event = event.model_copy(deep=True)
199
+ artifact_event.content = None
200
+ events_to_stream = [
201
+ content_event,
202
+ artifact_event,
203
+ ]
204
+ for event_to_stream in events_to_stream:
205
+ sse_event = event_to_stream.model_dump_json(
206
+ exclude_none=True,
207
+ by_alias=True,
208
+ )
209
+ logger.debug(
210
+ "Generated event in agent run streaming: %s",
211
+ sse_event,
212
+ )
213
+ yield f"data: {sse_event}\n\n"
214
+ except Exception as e:
215
+ logger.exception("Error in event_generator: %s", e)
216
+ telemetry.trace_agent_server_finish(
217
+ path="/run_sse", func_result="", exception=e
218
+ )
219
+ yield f"data: {json.dumps({'error': str(e)})}\n\n"
220
+ # Returns a streaming response with the proper media type for SSE
221
+
222
+ return StreamingResponse(
223
+ event_generator(),
224
+ media_type="text/event-stream",
225
+ )
226
+
227
+ # Move the custom /run_sse route to the beginning of the routes list for priority matching (without deleting the ADK default route)
228
+ routes = self.app.router.routes
229
+ for i, r in enumerate(routes):
230
+ if (
231
+ getattr(r, "path", None) == "/run_sse"
232
+ and "POST" in getattr(r, "methods", set())
233
+ and getattr(r, "endpoint", None) == run_agent_sse
234
+ ):
235
+ routes.insert(0, routes.pop(i))
236
+ break
237
+
152
238
  # Attach ASGI middleware for unified telemetry across all routes
153
239
  self.app.add_middleware(AgentkitTelemetryHTTPMiddleware)
154
240
 
@@ -163,13 +249,27 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
163
249
  for k, v in dict(headers).items()
164
250
  if k.lower() not in {"authorization", "token"}
165
251
  }
252
+ # trace request attributes on current span
253
+ telemetry.trace_agent_server(
254
+ func_name="_invoke_compat",
255
+ span=span,
256
+ headers=telemetry_headers,
257
+ text="",
258
+ )
259
+
166
260
  user_id = headers.get("user_id") or "agentkit_user"
167
261
  session_id = headers.get("session_id") or ""
168
262
 
169
263
  # Determine app_name from loader
170
264
  app_names = self.server.agent_loader.list_agents()
171
265
  if not app_names:
172
- raise HTTPException(status_code=404, detail="No agents configured")
266
+ exception = HTTPException(
267
+ status_code=404, detail="No agents configured"
268
+ )
269
+ telemetry.trace_agent_server_finish(
270
+ path="/invoke", func_result="", exception=exception
271
+ )
272
+ raise exception
173
273
  app_name = app_names[0]
174
274
 
175
275
  # Parse payload and convert to ADK Content
@@ -193,14 +293,6 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
193
293
  text = ""
194
294
  content = types.UserContent(parts=[types.Part(text=text or "")])
195
295
 
196
- # trace request attributes on current span
197
- telemetry.trace_agent_server(
198
- func_name="_invoke_compat",
199
- span=span,
200
- headers=telemetry_headers,
201
- text=text or "",
202
- )
203
-
204
296
  # Ensure session exists
205
297
  session = await self.server.session_service.get_session(
206
298
  app_name=app_name, user_id=user_id, session_id=session_id
@@ -232,10 +324,10 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
232
324
  # finish span on successful end of stream handled by middleware
233
325
  pass
234
326
  except Exception as e:
235
- yield f'data: {{"error": "{str(e)}"}}\n\n'
236
327
  telemetry.trace_agent_server_finish(
237
328
  path="/invoke", func_result="", exception=e
238
329
  )
330
+ yield f'data: {{"error": "{str(e)}"}}\n\n'
239
331
 
240
332
  return StreamingResponse(
241
333
  event_generator(),
@@ -105,8 +105,12 @@ class Telemetry:
105
105
  }
106
106
  if exception:
107
107
  self.handle_exception(span, exception)
108
- attributes["error_type"] = exception.__class__.__name__
109
-
108
+ if getattr(exception, "status_code", None):
109
+ attributes["error_type"] = (
110
+ f"{exception.__class__.__name__}_{exception.status_code}"
111
+ )
112
+ else:
113
+ attributes["error_type"] = exception.__class__.__name__
110
114
  # only record invoke request latency metrics
111
115
  if (
112
116
  hasattr(span, "start_time")
@@ -17,6 +17,7 @@ from __future__ import annotations
17
17
  from typing import Optional
18
18
 
19
19
  from agentkit.platform.configuration import VolcConfiguration, Endpoint, Credentials
20
+ from agentkit.platform.console_urls import agentkit_enable_services_url
20
21
  from agentkit.platform.provider import CloudProvider
21
22
  from agentkit.platform.constants import DEFAULT_REGION_RULES
22
23
 
@@ -27,6 +28,7 @@ __all__ = [
27
28
  "CloudProvider",
28
29
  "resolve_endpoint",
29
30
  "resolve_credentials",
31
+ "agentkit_enable_services_url",
30
32
  "DEFAULT_REGION_RULES",
31
33
  ]
32
34
 
@@ -0,0 +1,35 @@
1
+ from __future__ import annotations
2
+
3
+ import os
4
+ from typing import Optional
5
+ from urllib.parse import urlencode
6
+
7
+ from agentkit.platform.configuration import VolcConfiguration
8
+ from agentkit.platform.provider import CloudProvider
9
+
10
+
11
+ def agentkit_enable_services_url(
12
+ *,
13
+ region: Optional[str] = None,
14
+ project_name: Optional[str] = None,
15
+ platform_config: Optional[VolcConfiguration] = None,
16
+ ) -> str:
17
+ if platform_config is not None and region is not None:
18
+ raise ValueError("Only one of 'region' or 'platform_config' can be provided.")
19
+ cfg = platform_config or VolcConfiguration(region=region)
20
+ ep = cfg.get_service_endpoint("agentkit")
21
+
22
+ base = (
23
+ "https://console.byteplus.com"
24
+ if cfg.provider == CloudProvider.BYTEPLUS
25
+ else "https://console.volcengine.com"
26
+ )
27
+
28
+ path = f"/agentkit/region:agentkit+{ep.region}/auth"
29
+
30
+ if cfg.provider != CloudProvider.BYTEPLUS:
31
+ return f"{base}{path}"
32
+
33
+ project = project_name or os.getenv("AGENTKIT_CONSOLE_PROJECT_NAME") or "default"
34
+ query = urlencode({"projectName": project})
35
+ return f"{base}{path}?{query}"
@@ -64,6 +64,10 @@ class VeCPCRBuilderConfig(AutoSerializableMixin):
64
64
  default=None,
65
65
  metadata={"system": True, "description": "Resolved cloud provider"},
66
66
  )
67
+ agentkit_region: str = field(
68
+ default="",
69
+ metadata={"system": True, "description": "AgentKit service region"},
70
+ )
67
71
 
68
72
  tos_bucket: str = field(
69
73
  default=AUTO_CREATE_VE,
@@ -1054,8 +1058,28 @@ class VeCPCRBuilder(Builder):
1054
1058
 
1055
1059
  except Exception as e:
1056
1060
  if "AccountDisable" in str(e):
1061
+ from agentkit.platform import (
1062
+ VolcConfiguration,
1063
+ agentkit_enable_services_url,
1064
+ )
1065
+
1066
+ provider = getattr(config, "cloud_provider", None) or getattr(
1067
+ getattr(config, "common_config", None), "cloud_provider", None
1068
+ )
1069
+ region_hint = (
1070
+ getattr(config, "agentkit_region", None)
1071
+ or getattr(config, "cp_region", None)
1072
+ or getattr(config, "cr_region", None)
1073
+ or getattr(config, "tos_region", None)
1074
+ )
1075
+ url = agentkit_enable_services_url(
1076
+ platform_config=VolcConfiguration(
1077
+ region=region_hint or None, provider=provider or None
1078
+ )
1079
+ )
1057
1080
  raise Exception(
1058
- "Tos Service is not enabled, please enable it in the console. Enable services at: https://console.volcengine.com/agentkit/region:agentkit+cn-beijing/auth"
1081
+ "Tos Service is not enabled, please enable it in the console. "
1082
+ f"Enable services at: {url}"
1059
1083
  )
1060
1084
  if "TooManyBuckets" in str(e):
1061
1085
  raise Exception(
@@ -295,7 +295,13 @@ class BaseExecutor:
295
295
 
296
296
  if missing:
297
297
  self.logger.warning(f"Services not enabled: {missing}")
298
- return PreflightResult(passed=False, missing_services=missing)
298
+ from agentkit.platform import agentkit_enable_services_url
299
+
300
+ return PreflightResult(
301
+ passed=False,
302
+ missing_services=missing,
303
+ auth_url=agentkit_enable_services_url(region=region),
304
+ )
299
305
 
300
306
  self.logger.debug(f"All required services are enabled: {required_services}")
301
307
  return PreflightResult(passed=True, missing_services=[])
@@ -102,7 +102,13 @@ class LifecycleExecutor(BaseExecutor):
102
102
 
103
103
  if missing:
104
104
  self.logger.warning(f"Services not enabled: {missing}")
105
- return PreflightResult(passed=False, missing_services=missing)
105
+ from agentkit.platform import agentkit_enable_services_url
106
+
107
+ return PreflightResult(
108
+ passed=False,
109
+ missing_services=missing,
110
+ auth_url=agentkit_enable_services_url(region=region),
111
+ )
106
112
 
107
113
  self.logger.debug(f"All required services are enabled: {required_list}")
108
114
  return PreflightResult(passed=True, missing_services=[])
@@ -200,9 +200,7 @@ class PreflightResult:
200
200
 
201
201
  passed: bool
202
202
  missing_services: List[str] = field(default_factory=list)
203
- auth_url: str = (
204
- "https://console.volcengine.com/agentkit/region:agentkit+cn-beijing/auth"
205
- )
203
+ auth_url: str = ""
206
204
 
207
205
  @property
208
206
  def message(self) -> str:
@@ -301,6 +301,7 @@ class CloudStrategy(Strategy):
301
301
  return VeCPCRBuilderConfig(
302
302
  common_config=common_config,
303
303
  cloud_provider=resolved_provider,
304
+ agentkit_region=resolver.resolve("agentkit"),
304
305
  cp_region=resolver.resolve("cp"),
305
306
  tos_bucket=strategy_config.tos_bucket,
306
307
  tos_region=resolver.resolve("tos"),
agentkit/version.py CHANGED
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- VERSION = "0.5.2"
15
+ VERSION = "0.5.4"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentkit-sdk-python
3
- Version: 0.5.2
3
+ Version: 0.5.4
4
4
  Summary: Python SDK for transforming any AI agent into a production-ready application. Framework-agnostic primitives for runtime, memory, authentication, and tools with volcengine-managed infrastructure.
5
5
  Author-email: Xiangrui Cheng <innsdcc@gmail.com>, Yumeng Bao <baoyumeng.123@gmail.com>, Yaozheng Fang <fangyozheng@gmail.com>, Guodong Li <cu.eric.lee@gmail.com>
6
6
  License: Apache License
@@ -1,5 +1,5 @@
1
1
  agentkit/__init__.py,sha256=l27ZMDslc3VhmmnPZJyrqVvTDoZ0LqhCtM5hw0caHcU,1021
2
- agentkit/version.py,sha256=Z30JwytxxCQ41W2H2bjrFjoGCnbQ2tUZDLr26lTNoSo,653
2
+ agentkit/version.py,sha256=PXDQfD2g5-dYwHEggBaX8jxmHJ1nN1Jx9_igWSk3h-8,653
3
3
  agentkit/apps/__init__.py,sha256=-oXTjxV3gejpJ8pffTUcUAXw0LfxKCYZJk-_hIJhtLM,1921
4
4
  agentkit/apps/base_app.py,sha256=3hZZExL1wyTGWveJEZZoqXN086MzmkVS_WU1vyulIWg,754
5
5
  agentkit/apps/utils.py,sha256=IzimIDmT6FS6PV9MLimPh46mq5zT-EjVmnYPxBdyEq0,1934
@@ -7,9 +7,9 @@ agentkit/apps/a2a_app/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7
7
7
  agentkit/apps/a2a_app/a2a_app.py,sha256=mFuPFuqRlGdQ2VIjQq2_gtQKWwnkwSjSmIMRnammWJU,7605
8
8
  agentkit/apps/a2a_app/telemetry.py,sha256=vR8tf7EHLor62cxs5PBx4mrfHeOaV1a7Xryqlu8nGCU,4290
9
9
  agentkit/apps/agent_server_app/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
10
- agentkit/apps/agent_server_app/agent_server_app.py,sha256=9PQWdhNK5A7d8gYvtHPDqs_lRzPw03DLVbjclFuBfyk,9975
10
+ agentkit/apps/agent_server_app/agent_server_app.py,sha256=vGcf5qsOx9zmmZWoEGTUwf_n8nE4XjkIx1vKLQU79_c,14488
11
11
  agentkit/apps/agent_server_app/middleware.py,sha256=2gLCRN-JYjYsTQzHqRBU69S2OI8gD5AdbrFeoGzDcM0,2962
12
- agentkit/apps/agent_server_app/telemetry.py,sha256=js3byvtdPr_anbrptSHtIS3R9MtSPqtKLkVC9kwL7LU,4160
12
+ agentkit/apps/agent_server_app/telemetry.py,sha256=FLJsxJHj4Vg3sfIZnWYm442_Dv-zmxTIPqRgvgwVIFQ,4398
13
13
  agentkit/apps/mcp_app/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
14
14
  agentkit/apps/mcp_app/mcp_app.py,sha256=2ngFbKcC3OsWNPwU0aoS-D8JVBC7-mFpXqj7sgcvUY8,5886
15
15
  agentkit/apps/mcp_app/telemetry.py,sha256=ObzEoJrQK9Yu_3KsCslJejIhKkACZl5c87KHMFblvgI,3929
@@ -21,8 +21,9 @@ agentkit/client/__init__.py,sha256=WHKgNGkpYsJp0xD20drYcxAMDclwDqrfURqxEVv0V1Y,1
21
21
  agentkit/client/base_agentkit_client.py,sha256=OELc-y1aT-G2scAsS7p8gO4L4y9lA1ZqfDTLMt2Ajvc,2688
22
22
  agentkit/client/base_iam_client.py,sha256=F3ggcZjt14CAcgDYpncF2XGr1zTGnhaOzqEJl4NGHwU,2432
23
23
  agentkit/client/base_service_client.py,sha256=PvpsaCeZRYvhVcHh9ZKIVXV15wA_7Ip6W45i0CV0Tb0,8168
24
- agentkit/platform/__init__.py,sha256=UksDc9neLK8aDXgpk_ghR4BmKWhbM-CzczxQ0QXW7vM,3307
24
+ agentkit/platform/__init__.py,sha256=8wS2qwWQfhm3axoQl0h8drEvGcE4vo14dbXMoWIycAU,3415
25
25
  agentkit/platform/configuration.py,sha256=Gbig_-u5p1nMsIZKhhqedYB9ID86mZbUj0aYBzQ9INc,16761
26
+ agentkit/platform/console_urls.py,sha256=JcnjwyuxN5c4RuXcPevsxy6aInurVFtchqbibJBqjSk,1125
26
27
  agentkit/platform/constants.py,sha256=811u7xDM30YVj76kjuSoxjN48Qhd2j7GAYW3iIV8BxQ,3693
27
28
  agentkit/platform/context.py,sha256=eb6ub4nUhoV1hXawjSVdY7gfc5XcgHJjFIhrzOuQ2G0,1662
28
29
  agentkit/platform/provider.py,sha256=Yy5bYveVYQOJiR8_s_DW7rEDtK4cXZQSxLaUifDozuY,2245
@@ -52,12 +53,12 @@ agentkit/sdk/tools/types.py,sha256=KS00zJOMRyAxRIfein8-EpobZeKkfR4xKIXip7cU4CY,2
52
53
  agentkit/toolkit/__init__.py,sha256=VZkLRcjybKRHgWvGmLHAm0Gsb1FCUpKmKuJYfZmbfE0,1249
53
54
  agentkit/toolkit/context.py,sha256=6CPDjmUwB830JB0OrKGFVNUjeiJ17GPDtbbQBtt6L1w,7554
54
55
  agentkit/toolkit/errors.py,sha256=0FrOlMYtygZGwaxW0XBC0-aq98qfmbM4ylIH8qq0K74,4431
55
- agentkit/toolkit/models.py,sha256=2gm8FSeAuKKLXUx_e4V53Zcu66B6YK4FAXj2Q7e5GUA,18439
56
+ agentkit/toolkit/models.py,sha256=EfIO_dyNMcwQuF5vsEJ1kAo0qc14DevHK21KTyA5WTU,18352
56
57
  agentkit/toolkit/reporter.py,sha256=q3r2q9A3Ajmd4IVuaN-FDV3imxwf1eEDXupFerx6JyY,11351
57
58
  agentkit/toolkit/builders/__init__.py,sha256=iZp7tjp5HLnvqMohk82be7ct5qbrwvv0oExeP0oZHN4,1593
58
59
  agentkit/toolkit/builders/base.py,sha256=ayejVFm2DDBSL-S7egIkwHoUaNViap5AKKFULMwNlBQ,3881
59
60
  agentkit/toolkit/builders/local_docker.py,sha256=GBTLoQAUNjpWosw7NXCTL8ssYHRulSoZZAQRgQsPgdY,18025
60
- agentkit/toolkit/builders/ve_pipeline.py,sha256=EN-3huKEX38cSQMF_LruxFctNE4xM_TadIo9IvF3zkk,70463
61
+ agentkit/toolkit/builders/ve_pipeline.py,sha256=vJv5CDySrE4uLNsJJhZBOFmGfadITUsyJEAWlNB4bRM,71405
61
62
  agentkit/toolkit/cli/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
62
63
  agentkit/toolkit/cli/__main__.py,sha256=arwJ1gHkaaoQAXb0ezo_FeyxiMqVy0FXujB2WOX_ohU,775
63
64
  agentkit/toolkit/cli/cli.py,sha256=cdv1YWArDH4PcoCc9lbPZgcj3_C70ZI6uyOSntUvIA8,3767
@@ -101,12 +102,12 @@ agentkit/toolkit/docker/dockerfile/__init__.py,sha256=AMVZzFZE8YVBOK13KGzwW1UuF7
101
102
  agentkit/toolkit/docker/dockerfile/manager.py,sha256=iGE5KY8T8G4Q0c5Mo3pWhxf-Pq001XzPC1rZrdQsVUI,16148
102
103
  agentkit/toolkit/docker/dockerfile/metadata.py,sha256=O4TCK1RYHd_5W3Vry3fd4HBKRG3LWvUFwStyL9fJHME,9278
103
104
  agentkit/toolkit/executors/__init__.py,sha256=ocEKR3rqbIrNtHukTfx1yBYKziIJWNcT0bBOt-CoWiA,1737
104
- agentkit/toolkit/executors/base_executor.py,sha256=sIZyOYC5tBsUpRizpOH4DOxW2-y7YEUU4KsGH3XeYRo,21356
105
+ agentkit/toolkit/executors/base_executor.py,sha256=b-Mm_X_idN7hrL4d6wyER_ZQkIsdZEXvYxbgY8i6YlQ,21565
105
106
  agentkit/toolkit/executors/build_executor.py,sha256=BfTj-yVlmDJquzpsdXwl_npQJhkda-OY8Qb1cNH3B7M,7401
106
107
  agentkit/toolkit/executors/deploy_executor.py,sha256=aMF7uNznU_Toqomllel9Il86iSTycqmL76K_BfeTB6U,6694
107
108
  agentkit/toolkit/executors/init_executor.py,sha256=6p4H48viyKcIE4Lxj4otRHH2NJXmS-6hlB2KuAoau0c,31430
108
109
  agentkit/toolkit/executors/invoke_executor.py,sha256=xFqeFRAbt--PZeOzB6Sdij4JRTdOHt7bp4KoaCqOXY4,6545
109
- agentkit/toolkit/executors/lifecycle_executor.py,sha256=iwzeUADylhTz50pOpyl0web_f55510cA7oPY9LyBKSw,16719
110
+ agentkit/toolkit/executors/lifecycle_executor.py,sha256=J4bBJ8QomKCttuF_Ruqk27PeAcx78Dyrrnnc2kLgMWI,16928
110
111
  agentkit/toolkit/executors/status_executor.py,sha256=mFta-aBUzvrlkpvjmDiyFs-hq9FZMZdHfXd0F7wTZxs,5353
111
112
  agentkit/toolkit/resources/samples/a2a.py,sha256=eKM56lrjnNLD35lT3Py_E7sN9eCGU4HdLOHrVz_xLwg,2867
112
113
  agentkit/toolkit/resources/samples/agent_server.py,sha256=tVD79gT8qhP3dLncKJPWhCjXNDKmRYB0DSyZFoRKiS0,2282
@@ -158,7 +159,7 @@ agentkit/toolkit/sdk/bindings/__init__.py,sha256=sZVayHUi0CA2dwn1_fovKdb8z_y3k1-
158
159
  agentkit/toolkit/sdk/bindings/memory.py,sha256=85feCymQBkPA6djKOLiO4YhGxw1e89zENa89DWp_BTY,6068
159
160
  agentkit/toolkit/strategies/__init__.py,sha256=vgtqGePsuki2nYwd3ox3xILSrdijQmTaBMogygJ6DMc,1243
160
161
  agentkit/toolkit/strategies/base_strategy.py,sha256=l9att4i-YKJc4vUNlecKCu3ZQWQRgkdiJqovXiY8OWc,6753
161
- agentkit/toolkit/strategies/cloud_strategy.py,sha256=tjvo9hvHY_YhsD2126EYLHorjYEHLc0M31YDHDTwh0w,13690
162
+ agentkit/toolkit/strategies/cloud_strategy.py,sha256=Ixsjs3JXn9ykvt49qJtuMM4Wb8hiaARLuM5q0Wq9VUM,13748
162
163
  agentkit/toolkit/strategies/hybrid_strategy.py,sha256=V6ltVAR6k2320Qj4OrVTN-qtGVF9zi8bPr62YtrEZ5A,20082
163
164
  agentkit/toolkit/strategies/local_strategy.py,sha256=xK1kJwjY3QLpLBhlfAeYtSwjegfuzGWgi91yNavbqBQ,9950
164
165
  agentkit/toolkit/utils/__init__.py,sha256=uSaoOXTyarlItNRdkmpXAoUEDZDwFBSB146W9hJ_2_4,739
@@ -180,9 +181,9 @@ agentkit/utils/misc.py,sha256=FXMlcupj3KzxfJvMYFp0uTQk3FRMx8FiEXkYiy-UQ8w,3437
180
181
  agentkit/utils/request.py,sha256=IVoat3EavR9rQ_fXi0eA2rZPCJ9lVZAXXn7uIIX6bY4,1614
181
182
  agentkit/utils/template_utils.py,sha256=Qjg9V6dEpjAd_yYezIIPwuDsDeeMmp6XTMn5ZECifNc,6336
182
183
  agentkit/utils/ve_sign.py,sha256=nrYiS2bYncvWKQVpVMzwYwPDfkA0OJS7LO9l_wfW0xc,9310
183
- agentkit_sdk_python-0.5.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
184
- agentkit_sdk_python-0.5.2.dist-info/METADATA,sha256=i1vbmUhrYz5Q2m33V_p0nJd_b6VQb6kFPJ3xs3pzgLk,19394
185
- agentkit_sdk_python-0.5.2.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
186
- agentkit_sdk_python-0.5.2.dist-info/entry_points.txt,sha256=fhzZUsvsLXeB4mPaa0SBQiTBqFT404uDAKPaePAOUAE,58
187
- agentkit_sdk_python-0.5.2.dist-info/top_level.txt,sha256=ipy8JF-QQ-V0C1oRFLxsyaW8zwrasfJ-zjAh9vgOc7U,9
188
- agentkit_sdk_python-0.5.2.dist-info/RECORD,,
184
+ agentkit_sdk_python-0.5.4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
185
+ agentkit_sdk_python-0.5.4.dist-info/METADATA,sha256=4-AmxEStSPpVSwVgLTUwr3E0VoOkdDhAxf3VQwSp_Yc,19394
186
+ agentkit_sdk_python-0.5.4.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
187
+ agentkit_sdk_python-0.5.4.dist-info/entry_points.txt,sha256=fhzZUsvsLXeB4mPaa0SBQiTBqFT404uDAKPaePAOUAE,58
188
+ agentkit_sdk_python-0.5.4.dist-info/top_level.txt,sha256=ipy8JF-QQ-V0C1oRFLxsyaW8zwrasfJ-zjAh9vgOc7U,9
189
+ agentkit_sdk_python-0.5.4.dist-info/RECORD,,