aip-agents-binary 0.6.0__py3-none-macosx_13_0_arm64.whl → 0.6.2__py3-none-macosx_13_0_arm64.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.
Files changed (54) hide show
  1. aip_agents/agent/langgraph_react_agent.py +194 -2
  2. aip_agents/agent/langgraph_react_agent.pyi +40 -1
  3. aip_agents/examples/hello_world_ptc.py +49 -0
  4. aip_agents/examples/hello_world_ptc.pyi +5 -0
  5. aip_agents/ptc/__init__.py +48 -0
  6. aip_agents/ptc/__init__.pyi +10 -0
  7. aip_agents/ptc/doc_gen.py +122 -0
  8. aip_agents/ptc/doc_gen.pyi +40 -0
  9. aip_agents/ptc/exceptions.py +39 -0
  10. aip_agents/ptc/exceptions.pyi +22 -0
  11. aip_agents/ptc/executor.py +143 -0
  12. aip_agents/ptc/executor.pyi +73 -0
  13. aip_agents/ptc/mcp/__init__.py +45 -0
  14. aip_agents/ptc/mcp/__init__.pyi +7 -0
  15. aip_agents/ptc/mcp/sandbox_bridge.py +668 -0
  16. aip_agents/ptc/mcp/sandbox_bridge.pyi +47 -0
  17. aip_agents/ptc/mcp/templates/__init__.py +1 -0
  18. aip_agents/ptc/mcp/templates/__init__.pyi +0 -0
  19. aip_agents/ptc/mcp/templates/mcp_client.py.template +239 -0
  20. aip_agents/ptc/naming.py +184 -0
  21. aip_agents/ptc/naming.pyi +76 -0
  22. aip_agents/ptc/payload.py +26 -0
  23. aip_agents/ptc/payload.pyi +15 -0
  24. aip_agents/ptc/prompt_builder.py +571 -0
  25. aip_agents/ptc/prompt_builder.pyi +55 -0
  26. aip_agents/ptc/ptc_helper.py +16 -0
  27. aip_agents/ptc/ptc_helper.pyi +1 -0
  28. aip_agents/ptc/sandbox_bridge.py +58 -0
  29. aip_agents/ptc/sandbox_bridge.pyi +25 -0
  30. aip_agents/ptc/template_utils.py +33 -0
  31. aip_agents/ptc/template_utils.pyi +13 -0
  32. aip_agents/ptc/templates/__init__.py +1 -0
  33. aip_agents/ptc/templates/__init__.pyi +0 -0
  34. aip_agents/ptc/templates/ptc_helper.py.template +134 -0
  35. aip_agents/sandbox/__init__.py +43 -0
  36. aip_agents/sandbox/__init__.pyi +5 -0
  37. aip_agents/sandbox/defaults.py +9 -0
  38. aip_agents/sandbox/defaults.pyi +2 -0
  39. aip_agents/sandbox/e2b_runtime.py +267 -0
  40. aip_agents/sandbox/e2b_runtime.pyi +51 -0
  41. aip_agents/sandbox/template_builder.py +131 -0
  42. aip_agents/sandbox/template_builder.pyi +36 -0
  43. aip_agents/sandbox/types.py +24 -0
  44. aip_agents/sandbox/types.pyi +14 -0
  45. aip_agents/sandbox/validation.py +50 -0
  46. aip_agents/sandbox/validation.pyi +20 -0
  47. aip_agents/tools/__init__.py +2 -0
  48. aip_agents/tools/__init__.pyi +2 -1
  49. aip_agents/tools/execute_ptc_code.py +308 -0
  50. aip_agents/tools/execute_ptc_code.pyi +90 -0
  51. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.2.dist-info}/METADATA +1 -1
  52. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.2.dist-info}/RECORD +54 -8
  53. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.2.dist-info}/WHEEL +0 -0
  54. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,90 @@
1
+ from _typeshed import Incomplete
2
+ from aip_agents.mcp.client.base_mcp_client import BaseMCPClient as BaseMCPClient
3
+ from aip_agents.ptc.executor import PTCSandboxConfig as PTCSandboxConfig, PTCSandboxExecutor as PTCSandboxExecutor
4
+ from aip_agents.ptc.naming import sanitize_function_name as sanitize_function_name
5
+ from aip_agents.sandbox.e2b_runtime import E2BSandboxRuntime as E2BSandboxRuntime
6
+ from aip_agents.tools.tool_config_injector import TOOL_CONFIGS_KEY as TOOL_CONFIGS_KEY
7
+ from aip_agents.utils.logger import get_logger as get_logger
8
+ from langchain_core.tools import BaseTool
9
+ from pydantic import BaseModel
10
+ from typing import Any
11
+
12
+ logger: Incomplete
13
+
14
+ class PTCCodeInput(BaseModel):
15
+ """Input schema for PTCCodeTool."""
16
+ code: str
17
+
18
+ def merge_tool_configs(agent_configs: dict[str, Any] | None, runtime_configs: dict[str, Any] | None) -> dict[str, dict[str, Any]]:
19
+ '''Merge agent-level and runtime tool configs with sanitized keys.
20
+
21
+ Merges tool configurations from two sources:
22
+ 1. Agent-level defaults (from agent.tool_configs)
23
+ 2. Runtime overrides (from RunnableConfig.metadata["tool_configs"])
24
+
25
+ Both sources support two formats (matching LangGraphReactAgent behavior):
26
+ - Direct per-tool keys: {"time_tool": {"timezone": "UTC"}}
27
+ - Nested structure: {"tool_configs": {"time_tool": {"timezone": "UTC"}}}
28
+
29
+ The nested "tool_configs" key has higher precedence than direct keys.
30
+ Tool names are sanitized to match sandbox expectations (e.g., "Time Tool" -> "time_tool").
31
+
32
+ Args:
33
+ agent_configs: Agent-level tool configs (may be None or contain nested dicts)
34
+ runtime_configs: Runtime overrides from metadata (may be None)
35
+
36
+ Returns:
37
+ Merged dict with sanitized tool names as keys and config dicts as values.
38
+ Only includes entries that are dicts (non-dict values are agent-wide defaults).
39
+ '''
40
+
41
+ class PTCCodeTool(BaseTool):
42
+ """Tool for executing Python code with MCP tool access in a sandbox.
43
+
44
+ This tool uses BaseTool to properly access runtime config via run_manager.metadata.
45
+ The config parameter is NOT exposed to the LLM schema - it's extracted from
46
+ the callback manager during execution.
47
+ """
48
+ name: str
49
+ description: str
50
+ args_schema: type[BaseModel]
51
+ def __init__(self, executor: PTCSandboxExecutor, runtime: E2BSandboxRuntime, agent_tool_configs: dict[str, Any] | None = None, **kwargs: Any) -> None:
52
+ """Initialize the PTC code tool.
53
+
54
+ Args:
55
+ executor: The PTC sandbox executor.
56
+ runtime: The E2B sandbox runtime.
57
+ agent_tool_configs: Optional agent-level tool configs.
58
+ **kwargs: Additional keyword arguments passed to BaseTool.
59
+ """
60
+ async def cleanup(self) -> None:
61
+ """Clean up the sandbox runtime."""
62
+
63
+ def create_execute_ptc_code_tool(mcp_client: BaseMCPClient | None, config: PTCSandboxConfig | None = None, agent_tool_configs: dict[str, Any] | None = None) -> PTCCodeTool:
64
+ '''Create a tool that executes Python code with MCP tool access.
65
+
66
+ The code runs inside an E2B sandbox with access to generated MCP tool modules.
67
+ This tool is designed for LLM-generated code that needs to call multiple tools
68
+ programmatically in a single execution.
69
+
70
+ Args:
71
+ mcp_client: The MCP client with configured servers.
72
+ config: Optional sandbox executor configuration.
73
+ agent_tool_configs: Optional agent-level tool configs (from agent.tool_configs).
74
+ These are merged with runtime overrides from RunnableConfig.metadata.
75
+
76
+ Returns:
77
+ PTCCodeTool configured for PTC code execution.
78
+
79
+ Example:
80
+ ```python
81
+ from aip_agents.mcp.client import LangchainMCPClient
82
+ from aip_agents.tools.execute_ptc_code import create_execute_ptc_code_tool
83
+
84
+ mcp_client = LangchainMCPClient()
85
+ await mcp_client.add_server("yfinance", {...})
86
+
87
+ tool = create_execute_ptc_code_tool(mcp_client)
88
+ result = await tool.ainvoke({"code": "from tools.yfinance import get_stock\\\\nprint(get_stock(\'AAPL\'))"})
89
+ ```
90
+ '''
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aip-agents-binary
3
- Version: 0.6.0
3
+ Version: 0.6.2
4
4
  Summary: A library for managing agents in Gen AI applications.
5
5
  Author-email: Raymond Christopher <raymond.christopher@gdplabs.id>
6
6
  Requires-Python: <3.13,>=3.11
@@ -34,8 +34,8 @@ aip_agents/agent/langflow_agent.py,sha256=ZoJGOS8GcgGJ9Xfu4upzk3Nc1XVkpS8GSpcyKh
34
34
  aip_agents/agent/langflow_agent.pyi,sha256=z89Y7JifrsHi4Vn6LE_s0zbo77nLhkDKI-eRcxmnOr0,5667
35
35
  aip_agents/agent/langgraph_memory_enhancer_agent.py,sha256=EqH_olZ6Ue-SyQMrvYfuLkiCQAAZRMWx8izB19IYSlI,17426
36
36
  aip_agents/agent/langgraph_memory_enhancer_agent.pyi,sha256=e5sz1hbyOLw0eHo6fKf3HsCpyTe3yGqEidn9EOGb3QQ,2595
37
- aip_agents/agent/langgraph_react_agent.py,sha256=C1JSXFemfCdpv9CxAy1F62YqFa2uCidfPmXOWkudTR8,108486
38
- aip_agents/agent/langgraph_react_agent.pyi,sha256=z9qvkaDZZO0oSqX-2O_cacuXEtMSGY8bbcI4PAN6gUg,8356
37
+ aip_agents/agent/langgraph_react_agent.py,sha256=oKmrKm1qalpSpp4bMpg81fIbKa8Lx3QvA4VDIBqS8iI,116557
38
+ aip_agents/agent/langgraph_react_agent.pyi,sha256=15rZxqRKwjooqiwKUZoq2BJt6V32GhKi2IP_Xxl888E,10475
39
39
  aip_agents/agent/system_instruction_context.py,sha256=xTWdpKVJsWcR1uI0alCLnUsbP5sh_VWHxfF2zoi7NY0,1186
40
40
  aip_agents/agent/system_instruction_context.pyi,sha256=mdSg5sApS9G7-zr3d9BunJqwe2GB6dDD3DOCDfRrpkU,411
41
41
  aip_agents/agent/hitl/__init__.py,sha256=IyE9kWVPO-uI2_HowNm_aAxr9jyto0ZM0sZKVtpUpzo,826
@@ -209,6 +209,8 @@ aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.py,sha256=sppLD
209
209
  aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.pyi,sha256=zFNns9i-sPY8aBy4HaVS6tXDWTsU7f-ApLD8gDtb1uk,252
210
210
  aip_agents/examples/hello_world_pii_logger.py,sha256=pm9LK-doZwQL-VdJYFHziuvwH562c8wwAwmKZeAWQS0,584
211
211
  aip_agents/examples/hello_world_pii_logger.pyi,sha256=5gOVrvhQV2DxIwr7ocL1-oTUXsO8XSyl5WN70c7rl_w,134
212
+ aip_agents/examples/hello_world_ptc.py,sha256=A3aadYO3H41UgKZoHqrThXz2_hOFGX8-E4XwFnRi7P4,1410
213
+ aip_agents/examples/hello_world_ptc.pyi,sha256=Dbo4myHbndrL6PyA_mgf3HTIYqLudTaF4h_nsdqOyKs,231
212
214
  aip_agents/examples/hello_world_sentry.py,sha256=Gccr6WCevSnMFZYT5M6uJ_22EvLmAMUE8Et_H510_kM,3976
213
215
  aip_agents/examples/hello_world_sentry.pyi,sha256=k0wFj46QqXEjBU0CEERmiEf2bovVFkupzuzQzeD6h00,671
214
216
  aip_agents/examples/hello_world_step_limits.py,sha256=hRV9XERlq2qW_yZ4kHAe1hTgukrSZjThIrsY9NuTdJg,9809
@@ -352,6 +354,48 @@ aip_agents/middleware/manager.py,sha256=dlFhWC8fmKzbL6KIioeBv6cO8TSNfwmSYbciTxGN
352
354
  aip_agents/middleware/manager.pyi,sha256=a-OJeUVP6pIVvG9p8nyIC3oCOWfPVqH1EGykUeePXAs,3577
353
355
  aip_agents/middleware/todolist.py,sha256=BwElJRwn_hG-EC6YJOiaCG3zbAab03e0HkIbHv4LSik,10514
354
356
  aip_agents/middleware/todolist.pyi,sha256=AvRUtHdchxbP9A3ikJwF1EmQqJ-tbzy12eSXpQ-ZDiU,4195
357
+ aip_agents/ptc/__init__.py,sha256=khwauiDZ7ZozQaPmnkszDcwEwnBkfuhZ69_obuQVXWY,1410
358
+ aip_agents/ptc/__init__.pyi,sha256=oWHcEv30flFGfDSNHoOCbR_W5hLeyPPLSZcf02Qok9o,565
359
+ aip_agents/ptc/doc_gen.py,sha256=ym6psNvZ_8iKB3AGrb1TTFoQiXXLdP2zKp6c4SPf4JA,3382
360
+ aip_agents/ptc/doc_gen.pyi,sha256=fJ92pbil2mMPv_9AHctVqFNZVE7P8njisLrn9zSSmdA,1266
361
+ aip_agents/ptc/exceptions.py,sha256=iNO9Xmz5P34K6FLnxgiGxA9bjPceVf6rUqhrugc5Xq8,905
362
+ aip_agents/ptc/exceptions.pyi,sha256=VmypiFm4ZWv5KIYwxUMN9GWOmDMMzkdYdVSoKxfqLTw,664
363
+ aip_agents/ptc/executor.py,sha256=I9YqEZx1BN7QhU00TIOmIGQ5xY3-kxWlU0zNxp4SgeM,5063
364
+ aip_agents/ptc/executor.pyi,sha256=h9kAq8Un7ShSQxi-_JXFIXyCQz3pDCwx0zs5h56B3rQ,3251
365
+ aip_agents/ptc/naming.py,sha256=Cb0Q3SoBNPLGrmWG6Fn2KBzKoJIuSXzy-A_hUw0kWCg,5001
366
+ aip_agents/ptc/naming.pyi,sha256=TgIbV0lLStbtjTKadnGlgDVjH90L0IOHXd5W10YUpvg,2141
367
+ aip_agents/ptc/payload.py,sha256=DPEeunaKGk3iWxdpE-1YVD_iuHQPhWqIvcL2TaYPfig,835
368
+ aip_agents/ptc/payload.pyi,sha256=qPgwyDY14tAsx-r_nt3ACZAfgBmJiAPdH7MXBJJVqjk,631
369
+ aip_agents/ptc/prompt_builder.py,sha256=3Xu0Fi3j6yhxRWJAuST8yjYTRfTbYUEBdz53dXWwjMw,17640
370
+ aip_agents/ptc/prompt_builder.pyi,sha256=b0njp0fb0LmlqCJs59xCv-yc2hGzaadoXVQWTdfrKhU,2234
371
+ aip_agents/ptc/ptc_helper.py,sha256=DARdrCwEfuaKOGdVYE1YuudXCbIvkv6rSgcGYK7S_z8,439
372
+ aip_agents/ptc/ptc_helper.pyi,sha256=FOgjwJR_J15JQjjTNU9oTG-s6d7ocks364ijMuVTHT0,77
373
+ aip_agents/ptc/sandbox_bridge.py,sha256=DeLA1REOcaOfsHHGB_446VNRo9UfrgNExxx4eOWU-OM,1635
374
+ aip_agents/ptc/sandbox_bridge.pyi,sha256=RqZmnNDMcvFJREWC3QeBcgSvZDYeYf1vhG5dNe8zAmw,979
375
+ aip_agents/ptc/template_utils.py,sha256=wHwnMNnf_lz-dj8oWnVXwCp7szw4_Nk4kh4FLcRxlfM,898
376
+ aip_agents/ptc/template_utils.pyi,sha256=hNpgwyalUMezalSJry9FeQsFfjwuCxl_dZHBimkShF0,438
377
+ aip_agents/ptc/mcp/__init__.py,sha256=DlT25Zs_SDstW8vAFxomKlSF4QCpe_k6Sa42fN22ikg,1118
378
+ aip_agents/ptc/mcp/__init__.pyi,sha256=nKRY7DrlqgmDThlBh9uDQ5LCchfWteaPX0Er37-AtMI,916
379
+ aip_agents/ptc/mcp/sandbox_bridge.py,sha256=HzzmEJmkkNb6ZNVUIq0gHBSD-ZXOZnp1n_PyYGAHk58,20418
380
+ aip_agents/ptc/mcp/sandbox_bridge.pyi,sha256=dzQ5gzkF1_h0kZxlKt9nY6R2HvOn9q_TZ50T4V7w0gQ,2033
381
+ aip_agents/ptc/mcp/templates/__init__.py,sha256=gUaLjHPncH1Js6dHiNRSpbAwngKY83gQcRCARKl42DU,57
382
+ aip_agents/ptc/mcp/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
383
+ aip_agents/ptc/mcp/templates/mcp_client.py.template,sha256=Ql6Wtj31oz8Kb6rUJP2_RnaTScXJS94ujgyg0MuZPVc,7446
384
+ aip_agents/ptc/templates/__init__.py,sha256=T_jAb0bAhq1en0feNp4kNDkyFCU67GuzCBeoGtSOgD0,56
385
+ aip_agents/ptc/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
+ aip_agents/ptc/templates/ptc_helper.py.template,sha256=_heBHy5XtLWYGONtof7qstyEbeHMtHDwCYhxL4-BNDM,4064
387
+ aip_agents/sandbox/__init__.py,sha256=1zA88_E_WaOm0KaDMsaznWm9qEQvqPF8Ain4w4LFFQo,1366
388
+ aip_agents/sandbox/__init__.pyi,sha256=l-anSofX18C7Mk0PReCTDZ-tIv8PGg9w0YdNnppve2k,341
389
+ aip_agents/sandbox/defaults.py,sha256=rKvzBl494N1Qx3-GZ7yBM07xUVSZo675OCVfROlDcUI,232
390
+ aip_agents/sandbox/defaults.pyi,sha256=TV4aNiyAwsERFBa6cnYmUC2jyBVxccDR1v5wW6M6YJU,64
391
+ aip_agents/sandbox/e2b_runtime.py,sha256=_Fht2K9rB-RGuX0lulQedw4DLxdOkG288g_ALEWBQaM,9217
392
+ aip_agents/sandbox/e2b_runtime.pyi,sha256=sQvrc-hg9CV4KU7D9vJdaLjVY7knT_S-BnszwLB4Sno,2152
393
+ aip_agents/sandbox/template_builder.py,sha256=COZr33dVodBag4Kz3o7qHqyyykQGErHbL4DZw3Hn7Zs,4348
394
+ aip_agents/sandbox/template_builder.pyi,sha256=DFOrf1IVkRBcrI4fPm-_CrO_n4JQM4xMfX2z2APIm68,1522
395
+ aip_agents/sandbox/types.py,sha256=D4f3k8bfJwRYM2re0e-5Dxfg58FLIFYY3YE_z1Wqgh8,528
396
+ aip_agents/sandbox/types.pyi,sha256=P-BGzoiSJA8nQPQNluowNyrFKt5UnLBxeeOL5pamiRU,366
397
+ aip_agents/sandbox/validation.py,sha256=UqBv6TTTmiIv6oCymEHDRlo0QCi45BQ6ceW9Cs7_TM0,1336
398
+ aip_agents/sandbox/validation.pyi,sha256=rCgd4JJkHECFFo2Oa0LtPaBK0wjvIqOZeV9-aFU9tC4,587
355
399
  aip_agents/schema/__init__.py,sha256=eQdptrXX7Rxo0xAJ1tXfoPhIaFoVQTDvrRAJAF3SjSM,1698
356
400
  aip_agents/schema/__init__.pyi,sha256=kho3g8pKCp1FBZ5SwyK3Vom5rSEgHJ4rYv81QIX3bGg,1908
357
401
  aip_agents/schema/a2a.py,sha256=04WVxpFjVuiQc2-w3m3TLO3h3NuApVuFrzJQq5casU4,1368
@@ -390,10 +434,12 @@ aip_agents/storage/providers/memory.py,sha256=81E9yT_oRkH7tMVr5azZv1oXIaeTzTAtTu
390
434
  aip_agents/storage/providers/memory.pyi,sha256=r0meeCsjKyE9FHJqCysfQ5ZH_FWRRv2SWg-NOHCUD-g,2109
391
435
  aip_agents/storage/providers/object_storage.py,sha256=Q268Sn8Y09gS-ilP6fe4CR0YIOvdbunh3V6SmuQsAVs,6413
392
436
  aip_agents/storage/providers/object_storage.pyi,sha256=nBIKJjUAWkIKhYhBFmFcypjoOieIYOghy55f62x7AX8,2878
393
- aip_agents/tools/__init__.py,sha256=J0wDdcKre3Qc_z1hhzKfPiaa1m2OPOXyHjl6uwOkApU,1935
394
- aip_agents/tools/__init__.pyi,sha256=w1gRWL5iRdLtuBNXBhmD87uzfvIRrXwq3uZ1meku8js,888
437
+ aip_agents/tools/__init__.py,sha256=Kvd185p8zZ2xpNqimxURJUA6joPXP-3MIrr8K3Lf9Rw,2102
438
+ aip_agents/tools/__init__.pyi,sha256=K2j6MjKo5aaMAbWkknLwyRbSu14LxJyRMoi88DbHROk,1027
395
439
  aip_agents/tools/constants.py,sha256=AabnuPQG_mc2sVdr9jV23_6bFempAsxQv3kdCR_ztLA,5723
396
440
  aip_agents/tools/constants.pyi,sha256=kFY8dKgRqHKGvPqG3QUyuEc8C5yRaDj7DYQDH88K2T0,3552
441
+ aip_agents/tools/execute_ptc_code.py,sha256=mN8-G50voxVqWH9r3uJGQOtgPtxsHaTOnJrJuojQLIM,11396
442
+ aip_agents/tools/execute_ptc_code.pyi,sha256=nDlpxV-kcKuNmtghahjXAtjWvtNv6D38x8-VTNCKYjU,4089
397
443
  aip_agents/tools/gl_connector_tools.py,sha256=bxl_3VQYZDv3lFn6Y3kDVVRFwH4cntOLz3f74YzDcic,3936
398
444
  aip_agents/tools/gl_connector_tools.pyi,sha256=2ATn_MW_FRg5Uv7dLI_ToBOtlgTSfj0zgDQpN1N-cJs,1366
399
445
  aip_agents/tools/memory_search_tool.py,sha256=gqTTb_Fao_Hl-SavfaFsqPDhnFQUjzIQUkzizSD2L0A,653
@@ -560,7 +606,7 @@ aip_agents/utils/pii/pii_helper.py,sha256=g0yRzakfA2AA6vjUNLWHqFlcxyLql6MXQ90NN3
560
606
  aip_agents/utils/pii/pii_helper.pyi,sha256=dulZs150ikbAL3Bw2YLcz3_g4DsGmL3lciwf8mKxEjI,2939
561
607
  aip_agents/utils/pii/uuid_deanonymizer_mapping.py,sha256=Gks8l8t0cuS9pzoQnrpiK1CaLmWYksjOnTeiHh3_7EE,7348
562
608
  aip_agents/utils/pii/uuid_deanonymizer_mapping.pyi,sha256=gnWfD1rWZh_tloJjgKiZ6f6iNUuBaHpKqCSiP0d-9bs,3084
563
- aip_agents_binary-0.6.0.dist-info/METADATA,sha256=PC6WXiABFDyUIszE8akBBT0YZyQGLbVllkvhdnTLd7g,22371
564
- aip_agents_binary-0.6.0.dist-info/WHEEL,sha256=KxCTaSkoYs_EnWvWxmau4HAvN-_rCRYV_bfRc_41A9k,106
565
- aip_agents_binary-0.6.0.dist-info/top_level.txt,sha256=PEz8vcwC1bH4UrkhF0LkIYCNfXGWZUHdSklbvkBe25E,11
566
- aip_agents_binary-0.6.0.dist-info/RECORD,,
609
+ aip_agents_binary-0.6.2.dist-info/METADATA,sha256=pwc5Qenz-QKrlBcmtfP-CwkSLbEp0Wi-LjqBMmtqFRY,22371
610
+ aip_agents_binary-0.6.2.dist-info/WHEEL,sha256=KxCTaSkoYs_EnWvWxmau4HAvN-_rCRYV_bfRc_41A9k,106
611
+ aip_agents_binary-0.6.2.dist-info/top_level.txt,sha256=PEz8vcwC1bH4UrkhF0LkIYCNfXGWZUHdSklbvkBe25E,11
612
+ aip_agents_binary-0.6.2.dist-info/RECORD,,