aip-agents-binary 0.6.0__py3-none-any.whl → 0.6.1__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.
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 +51 -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 +305 -0
  50. aip_agents/tools/execute_ptc_code.pyi +87 -0
  51. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.1.dist-info}/METADATA +1 -1
  52. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.1.dist-info}/RECORD +54 -8
  53. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.1.dist-info}/WHEEL +0 -0
  54. {aip_agents_binary-0.6.0.dist-info → aip_agents_binary-0.6.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,87 @@
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 typing import Any
10
+
11
+ logger: Incomplete
12
+
13
+ def merge_tool_configs(agent_configs: dict[str, Any] | None, runtime_configs: dict[str, Any] | None) -> dict[str, dict[str, Any]]:
14
+ '''Merge agent-level and runtime tool configs with sanitized keys.
15
+
16
+ Merges tool configurations from two sources:
17
+ 1. Agent-level defaults (from agent.tool_configs)
18
+ 2. Runtime overrides (from RunnableConfig.metadata["tool_configs"])
19
+
20
+ Both sources support two formats (matching LangGraphReactAgent behavior):
21
+ - Direct per-tool keys: {"time_tool": {"timezone": "UTC"}}
22
+ - Nested structure: {"tool_configs": {"time_tool": {"timezone": "UTC"}}}
23
+
24
+ The nested "tool_configs" key has higher precedence than direct keys.
25
+ Tool names are sanitized to match sandbox expectations (e.g., "Time Tool" -> "time_tool").
26
+
27
+ Args:
28
+ agent_configs: Agent-level tool configs (may be None or contain nested dicts)
29
+ runtime_configs: Runtime overrides from metadata (may be None)
30
+
31
+ Returns:
32
+ Merged dict with sanitized tool names as keys and config dicts as values.
33
+ Only includes entries that are dicts (non-dict values are agent-wide defaults).
34
+ '''
35
+
36
+ class PTCCodeTool(BaseTool):
37
+ """Tool for executing Python code with MCP tool access in a sandbox.
38
+
39
+ This tool uses BaseTool to properly access runtime config via run_manager.metadata.
40
+ The config parameter is NOT exposed to the LLM schema - it's extracted from
41
+ the callback manager during execution.
42
+ """
43
+ name: str
44
+ description: str
45
+ def __init__(self, executor: PTCSandboxExecutor, runtime: E2BSandboxRuntime, agent_tool_configs: dict[str, Any] | None = None, **kwargs: Any) -> None:
46
+ """Initialize the PTC code tool.
47
+
48
+ Args:
49
+ executor: The PTC sandbox executor.
50
+ runtime: The E2B sandbox runtime.
51
+ agent_tool_configs: Optional agent-level tool configs.
52
+ **kwargs: Additional keyword arguments passed to BaseTool.
53
+ """
54
+ @property
55
+ def args(self) -> dict[str, Any]:
56
+ """Return the argument schema for the tool."""
57
+ async def cleanup(self) -> None:
58
+ """Clean up the sandbox runtime."""
59
+
60
+ def create_execute_ptc_code_tool(mcp_client: BaseMCPClient | None, config: PTCSandboxConfig | None = None, agent_tool_configs: dict[str, Any] | None = None) -> PTCCodeTool:
61
+ '''Create a tool that executes Python code with MCP tool access.
62
+
63
+ The code runs inside an E2B sandbox with access to generated MCP tool modules.
64
+ This tool is designed for LLM-generated code that needs to call multiple tools
65
+ programmatically in a single execution.
66
+
67
+ Args:
68
+ mcp_client: The MCP client with configured servers.
69
+ config: Optional sandbox executor configuration.
70
+ agent_tool_configs: Optional agent-level tool configs (from agent.tool_configs).
71
+ These are merged with runtime overrides from RunnableConfig.metadata.
72
+
73
+ Returns:
74
+ PTCCodeTool configured for PTC code execution.
75
+
76
+ Example:
77
+ ```python
78
+ from aip_agents.mcp.client import LangchainMCPClient
79
+ from aip_agents.tools.execute_ptc_code import create_execute_ptc_code_tool
80
+
81
+ mcp_client = LangchainMCPClient()
82
+ await mcp_client.add_server("yfinance", {...})
83
+
84
+ tool = create_execute_ptc_code_tool(mcp_client)
85
+ result = await tool.ainvoke({"code": "from tools.yfinance import get_stock\\\\nprint(get_stock(\'AAPL\'))"})
86
+ ```
87
+ '''
@@ -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.1
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=3KjB4ZBAIAqPKK5pML3DuiQ_yixx2L4dTQSW2p
34
34
  aip_agents/agent/langflow_agent.pyi,sha256=HOzMWIkga8F_ZFrzT62JdX9vhh8JhQVg-ylrr2Tglyo,5800
35
35
  aip_agents/agent/langgraph_memory_enhancer_agent.py,sha256=1AvvqvFfeLf80Jw2W2Mm7TdpwO3o_OC7r-30M4EIWeU,17859
36
36
  aip_agents/agent/langgraph_memory_enhancer_agent.pyi,sha256=6n6cd3udUhSaVTxqulnjCCgR-eUROnBEW2lFkAQCBQ4,2644
37
- aip_agents/agent/langgraph_react_agent.py,sha256=oGUzQZu7XiXrbuLAEJote5sBGkjnKYYck352E5LhZdE,111126
38
- aip_agents/agent/langgraph_react_agent.pyi,sha256=bVzM5w98biRwV6GTzaIeKu_rwIQ8d-q7EugZk9N-0vQ,8487
37
+ aip_agents/agent/langgraph_react_agent.py,sha256=dOsMAFhYpojMtLH6gJmpT8BBfhBv1ICSksCeaiOx0kA,119389
38
+ aip_agents/agent/langgraph_react_agent.pyi,sha256=JYETZaQMmp4Ja0QN0fg6YZKBlH-GVQ25Ydb73tdeJUo,10645
39
39
  aip_agents/agent/system_instruction_context.py,sha256=6lQAJ6DJv1aF8wjalxdsNWqEDZmomHwnhnPikLCfzj4,1220
40
40
  aip_agents/agent/system_instruction_context.pyi,sha256=gpYUr_CjWU_qVFobX_sduKDQN_wwtRL9BdnYv0WZ0Mc,424
41
41
  aip_agents/agent/hitl/__init__.py,sha256=qyxPIfSJ08MrvkE1qBZxdiom4VxSJSGEkrjqUZY2kNg,850
@@ -209,6 +209,8 @@ aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.py,sha256=B0I92
209
209
  aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.pyi,sha256=OHkTLSqRAM7TOZEp6TH5dsPq9zbpi9UA_l0rDIrqFlM,257
210
210
  aip_agents/examples/hello_world_pii_logger.py,sha256=xH4PNGetuZv1TJj5Y1fqvm1Vto0pp1u5ju-ORccEFwo,605
211
211
  aip_agents/examples/hello_world_pii_logger.pyi,sha256=tZ0oOfd_gK97KHczzEh3PQfTt2eedh25IL7Q1PhVDWU,139
212
+ aip_agents/examples/hello_world_ptc.py,sha256=crx641hItpnUmh1b09a0mJcKSygJQDmicFfcKQOcqIA,1513
213
+ aip_agents/examples/hello_world_ptc.pyi,sha256=uGDk7WAt4iXbKJ4zKp-qd2IzBLWUAZ5ehPdLDhteVaw,236
212
214
  aip_agents/examples/hello_world_sentry.py,sha256=HRnIVTkaqcUGbVbVVCzB8HQv5nVqHbt_3aPiflrD31M,4109
213
215
  aip_agents/examples/hello_world_sentry.pyi,sha256=Z6t3ywrVlgBI9NFxbcbhRVAwt71Q3NsB_JvwZhcd0aQ,692
214
216
  aip_agents/examples/hello_world_step_limits.py,sha256=0f02AFrpfAertnjSHxQiU6uAyIWt0ovQ3aQ5QCJPSx4,10082
@@ -352,6 +354,48 @@ aip_agents/middleware/manager.py,sha256=cTSzJN-3ty2o7x7iS1xd__hdBsQiq2Rqb5bnLPvW
352
354
  aip_agents/middleware/manager.pyi,sha256=UbQ-5sehP7G0sokwxCSBe4q8JLub7acFrmr0P-z65vE,3661
353
355
  aip_agents/middleware/todolist.py,sha256=YxE1kcaP6Ov1WnfxM5z8cv5cNsJViG0NRPpbAGfpeMQ,10788
354
356
  aip_agents/middleware/todolist.pyi,sha256=nkRSDplMiQPS0qhNrMoDB1ksOtarEclaGErvIZH7QQ4,4320
357
+ aip_agents/ptc/__init__.py,sha256=k7OsdTWjGB_LQ1YVZDR2B0Pa4NIwtwx7BBAGBn2bdaI,1458
358
+ aip_agents/ptc/__init__.pyi,sha256=Gi0YKXYWGFzkwRbigQuwtSk45Y7QLO997uxIL6QfIO4,575
359
+ aip_agents/ptc/doc_gen.py,sha256=CcSFar80f_C_r_YAZwzTVg49rk9krhA_qwKSvYiVDtE,3504
360
+ aip_agents/ptc/doc_gen.pyi,sha256=i7hSGLtCzF-JXNqcazD13cewncTOy34_OMtwdLjYlhU,1306
361
+ aip_agents/ptc/exceptions.py,sha256=nBt5QlW9BGSAQNd1smb4bmGCMPeREwnmsU68vya9IQo,944
362
+ aip_agents/ptc/exceptions.pyi,sha256=jAjmWTiOqFosC0XhO5LxX8r8B2E5H0GAXQYknTm5HK4,686
363
+ aip_agents/ptc/executor.py,sha256=0Qw4CgAgxd6YrZSqf566zVnUs-0Dy6ORVbq1ai8qx8E,5206
364
+ aip_agents/ptc/executor.pyi,sha256=2kyD7Hv_QX-_sQ6NnqSmryZ_01mBy1iRll9fY67wfBE,3324
365
+ aip_agents/ptc/naming.py,sha256=CY7whoWCynbx2K_NeWT7gPoFcm_5aqfum4l3Mnjqv0U,5185
366
+ aip_agents/ptc/naming.pyi,sha256=yWNQmj45v5diLPflJbm1409G-JtIG4VBRl1bAGvX-Bg,2217
367
+ aip_agents/ptc/payload.py,sha256=G5AV8G0BwaBdO85Z8u87jZLj1xY7vfA98LTI_mlDrXo,861
368
+ aip_agents/ptc/payload.pyi,sha256=D6Pxb89T2Ln-_vmAaxz6HL3jDSBHz0zbmgzxAnBsJpk,646
369
+ aip_agents/ptc/prompt_builder.py,sha256=FdW15QONAn3ml8G5GUQ-J-nlqTjOxQRn2XpPypIbHAU,18211
370
+ aip_agents/ptc/prompt_builder.pyi,sha256=0OC46oVfp7yrcR-zNEVqt4_2A-pM9QtdokTX8rzjDNM,2289
371
+ aip_agents/ptc/ptc_helper.py,sha256=KGPL2ZbtVKRwfbEmN4pcqFoGmjPiTPOCkNUljaPDFh8,455
372
+ aip_agents/ptc/ptc_helper.pyi,sha256=Tw6zTztn-umW5b--gy4YI0T1EfbzQ6m0Rhf_0VVgm0o,78
373
+ aip_agents/ptc/sandbox_bridge.py,sha256=xKR6si9z5AbmbkNK-QRIsutTgGpQUj5RaZm_KlgtPXk,1693
374
+ aip_agents/ptc/sandbox_bridge.pyi,sha256=Gh3mF9pkZOWT6BIas-xd_8TXgvk0GfAVTJ3MougBG-I,1004
375
+ aip_agents/ptc/template_utils.py,sha256=IzswGL7PfNy7JMAuVFb7TWKZeptISfHjlxNYwGtbLx4,931
376
+ aip_agents/ptc/template_utils.pyi,sha256=V7XZTY1pvL5j0Kdct2Gu-s4r6HzszaprrtZffuN_RCU,451
377
+ aip_agents/ptc/mcp/__init__.py,sha256=mYNGO_dAoVm6gF0TaTFpgcCUBR-uRgMBWMcs4MUZ9Ac,1163
378
+ aip_agents/ptc/mcp/__init__.pyi,sha256=1Jhp9lKz4w-sxITUsgJumEz9Tz0BZXysdnP0fUAfESs,923
379
+ aip_agents/ptc/mcp/sandbox_bridge.py,sha256=KHpdGR4JhAzjORl0qSQpbofpqVkgXLtpSB-7kC9sSFA,21086
380
+ aip_agents/ptc/mcp/sandbox_bridge.pyi,sha256=aRdOeJBQNao5qYLIcM5EoDKnPYkArmGEvpBKgPpu3iw,2080
381
+ aip_agents/ptc/mcp/templates/__init__.py,sha256=UXiWrFXTMnKozmU3JX_hZhN53J4P_mvcc2vzfA_RZI8,58
382
+ aip_agents/ptc/mcp/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
383
+ aip_agents/ptc/mcp/templates/mcp_client.py.template,sha256=ZVjaa5nQd0uSJlS_lb5Q6M42cKYZzD4xrNDGRSQ2ruI,7685
384
+ aip_agents/ptc/templates/__init__.py,sha256=92KlBHjxR2_CSZVvkvDtZfRqKn2k3A8hjXQANHupZUY,57
385
+ aip_agents/ptc/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
+ aip_agents/ptc/templates/ptc_helper.py.template,sha256=x68OY0l_68DFlq-yBs8I2LqHom6dmUQfFSCI68yL0bw,4198
387
+ aip_agents/sandbox/__init__.py,sha256=DLRxtsvymaKPZePPdpFbaISb9KiAkcHMODfasvh_qO8,1409
388
+ aip_agents/sandbox/__init__.pyi,sha256=kAELy84zz3NL10pX2q20gcQLwHZB9rePxewMe5aRoQg,346
389
+ aip_agents/sandbox/defaults.py,sha256=qvKzLeHeAnVed7DRXpIiPmNK1EgYv0rpWMF0KCTbJqw,241
390
+ aip_agents/sandbox/defaults.pyi,sha256=zbhPsGixnyLiRtdo-9H4icOVFpCfZ2zf0LrFGAfCSng,66
391
+ aip_agents/sandbox/e2b_runtime.py,sha256=t00YgwEn62iuBdWEw54DCUwbUvUL0vEeCljJy81SH4Q,9484
392
+ aip_agents/sandbox/e2b_runtime.pyi,sha256=2Y0WoYwDsuKoyp4f1GhZrFnQi0lyP6L9AhCgJ9bEokA,2203
393
+ aip_agents/sandbox/template_builder.py,sha256=6d-pAoXsuUHYGavvK10vB-KY07OKeTpd-3RMCN3VFTw,4479
394
+ aip_agents/sandbox/template_builder.pyi,sha256=_e7g1wM7X2gGCnRevNUfVyifWdWu5ykTly9wG4QMkkc,1558
395
+ aip_agents/sandbox/types.py,sha256=IFZinB6b8uv8W4e7WzVXo8JSh-aqdgfnUEtCJK82Njk,552
396
+ aip_agents/sandbox/types.pyi,sha256=kERf60VMpbgFGnPnHPHr9vbg5vWzlU4G8yS7qfK45fA,380
397
+ aip_agents/sandbox/validation.py,sha256=gr5M5HHWJnqxsT-2y51SaEn2LeDgQ98z_rmSBq7VSqI,1386
398
+ aip_agents/sandbox/validation.pyi,sha256=T0-E-i5gH-nkLDe6gOuLFYEQ2zEAHIgMAO1k6VjK-KE,607
355
399
  aip_agents/schema/__init__.py,sha256=Pxqd6kvSJkKHpmkBjy3N9ncxK7aEyYFf60STfNuHgkQ,1767
356
400
  aip_agents/schema/__init__.pyi,sha256=ATPF_cX0XxXw1cDxsaTXOS6b3wjWGZyW9GxM6jKXGQ8,1917
357
401
  aip_agents/schema/a2a.py,sha256=00MZ4aTHGhd4j6kjUDzULhMqUpyOrCupVyRfK1aTuY4,1424
@@ -390,10 +434,12 @@ aip_agents/storage/providers/memory.py,sha256=Zd7QwYacEfaHLCpjvV3XaHSRulhfS464U0
390
434
  aip_agents/storage/providers/memory.pyi,sha256=NpsqKzboQGWtxtFV1ch_C3KT0KHOLyac6TtBgkLRgjI,2188
391
435
  aip_agents/storage/providers/object_storage.py,sha256=RlhXdaL1YTH9oqf7crvftsicHRxJlaLO3UgLPRCWlfg,6627
392
436
  aip_agents/storage/providers/object_storage.pyi,sha256=4pvDaNqhDleOm3ijMe_Yk3meBn2UCpLP9bKAH1l6C7w,2976
393
- aip_agents/tools/__init__.py,sha256=-4NJEX914Zhvl7ivBy6ztWowtzpaR4r4ammXFydjWGw,1988
394
- aip_agents/tools/__init__.pyi,sha256=b4plRUwyRypopaZfKMFSj0kTGb0paYL1FPm0EsWRPVw,897
437
+ aip_agents/tools/__init__.py,sha256=2EMXjbvj2oKKjZmLkNSb56nSb_fOXAKrx-rN5DSeK6M,2157
438
+ aip_agents/tools/__init__.pyi,sha256=QRPRqIMlmiRq9uOxKwcO2C-mmgnJm-X0yQ1W9oPLCp4,1037
395
439
  aip_agents/tools/constants.py,sha256=xNf9_pv_Rf4TCODr7BYLO05Kw5cD55MWiYfDyLWPJ3Y,5900
396
440
  aip_agents/tools/constants.pyi,sha256=ftkzuxDMnVUqVeqm4W848olK-VSlRH4oSv1p66sZnHk,3690
441
+ aip_agents/tools/execute_ptc_code.py,sha256=ZaOPbuhSSwPSdgff_Zw4pIZ1iDnGF1WxJx8_hVVFpiU,11713
442
+ aip_agents/tools/execute_ptc_code.pyi,sha256=ch-yVYTz2NVeCLNnHL0UeVQ-lLOTa-JkFmMSGrcFBxI,4133
397
443
  aip_agents/tools/gl_connector_tools.py,sha256=1VrXUKRiYO21v4JWOaoo1XNaIKSm_0KmXp3AMx_UL_8,4055
398
444
  aip_agents/tools/gl_connector_tools.pyi,sha256=wPK8hjFEZvQtRxBwX2MEebw6d4bXzn7nWxvcWPgYJ-c,1405
399
445
  aip_agents/tools/memory_search_tool.py,sha256=ClXW6BEjZNHb6NHe44KxbwZ6GSGo7v7AUzaV99LMouc,679
@@ -560,7 +606,7 @@ aip_agents/utils/pii/pii_helper.py,sha256=8QGVC9lb7dic_vSfLDUaDvqm45BUbYyPeQTVva
560
606
  aip_agents/utils/pii/pii_helper.pyi,sha256=wEgOasJxwKObtQ9Cb1UsiyIaqq2JUYmdRwOZR9PnIjA,3017
561
607
  aip_agents/utils/pii/uuid_deanonymizer_mapping.py,sha256=X9zeX1bhb3rlCc8P5QnbHCILx2AIhGmZwjsjh_2G4ZQ,7543
562
608
  aip_agents/utils/pii/uuid_deanonymizer_mapping.pyi,sha256=6H1xRV2Nr0LpP5K6fbz2uCobehTpM2626v8kiOd9W9Y,3157
563
- aip_agents_binary-0.6.0.dist-info/METADATA,sha256=g7imubdoedmX0qX3mj2-NuuyLQ8XCG6pqOK_CmhavH4,23055
564
- aip_agents_binary-0.6.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
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.1.dist-info/METADATA,sha256=YP2lsKKsd4vrjc3HJ1cr3srb7v-ere4-wZdg7MY_rQM,23055
610
+ aip_agents_binary-0.6.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
611
+ aip_agents_binary-0.6.1.dist-info/top_level.txt,sha256=PEz8vcwC1bH4UrkhF0LkIYCNfXGWZUHdSklbvkBe25E,11
612
+ aip_agents_binary-0.6.1.dist-info/RECORD,,