aip-agents-binary 0.5.21__py3-none-macosx_13_0_arm64.whl → 0.6.8__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 (149) hide show
  1. aip_agents/agent/__init__.py +44 -4
  2. aip_agents/agent/base_langgraph_agent.py +169 -74
  3. aip_agents/agent/base_langgraph_agent.pyi +3 -2
  4. aip_agents/agent/langgraph_memory_enhancer_agent.py +368 -34
  5. aip_agents/agent/langgraph_memory_enhancer_agent.pyi +3 -2
  6. aip_agents/agent/langgraph_react_agent.py +424 -35
  7. aip_agents/agent/langgraph_react_agent.pyi +46 -2
  8. aip_agents/examples/{hello_world_langgraph_bosa_twitter.py → hello_world_langgraph_gl_connector_twitter.py} +10 -7
  9. aip_agents/examples/hello_world_langgraph_gl_connector_twitter.pyi +5 -0
  10. aip_agents/examples/hello_world_ptc.py +49 -0
  11. aip_agents/examples/hello_world_ptc.pyi +5 -0
  12. aip_agents/examples/hello_world_ptc_custom_tools.py +83 -0
  13. aip_agents/examples/hello_world_ptc_custom_tools.pyi +7 -0
  14. aip_agents/examples/hello_world_sentry.py +2 -2
  15. aip_agents/examples/hello_world_tool_output_client.py +9 -0
  16. aip_agents/examples/tools/multiply_tool.py +43 -0
  17. aip_agents/examples/tools/multiply_tool.pyi +18 -0
  18. aip_agents/guardrails/__init__.py +83 -0
  19. aip_agents/guardrails/__init__.pyi +6 -0
  20. aip_agents/guardrails/engines/__init__.py +69 -0
  21. aip_agents/guardrails/engines/__init__.pyi +4 -0
  22. aip_agents/guardrails/engines/base.py +90 -0
  23. aip_agents/guardrails/engines/base.pyi +61 -0
  24. aip_agents/guardrails/engines/nemo.py +101 -0
  25. aip_agents/guardrails/engines/nemo.pyi +46 -0
  26. aip_agents/guardrails/engines/phrase_matcher.py +113 -0
  27. aip_agents/guardrails/engines/phrase_matcher.pyi +48 -0
  28. aip_agents/guardrails/exceptions.py +39 -0
  29. aip_agents/guardrails/exceptions.pyi +23 -0
  30. aip_agents/guardrails/manager.py +163 -0
  31. aip_agents/guardrails/manager.pyi +42 -0
  32. aip_agents/guardrails/middleware.py +199 -0
  33. aip_agents/guardrails/middleware.pyi +87 -0
  34. aip_agents/guardrails/schemas.py +63 -0
  35. aip_agents/guardrails/schemas.pyi +43 -0
  36. aip_agents/guardrails/utils.py +45 -0
  37. aip_agents/guardrails/utils.pyi +19 -0
  38. aip_agents/mcp/client/__init__.py +38 -2
  39. aip_agents/mcp/client/connection_manager.py +36 -1
  40. aip_agents/mcp/client/connection_manager.pyi +3 -0
  41. aip_agents/mcp/client/persistent_session.py +318 -65
  42. aip_agents/mcp/client/persistent_session.pyi +9 -0
  43. aip_agents/mcp/client/transports.py +52 -4
  44. aip_agents/mcp/client/transports.pyi +9 -0
  45. aip_agents/memory/adapters/base_adapter.py +98 -0
  46. aip_agents/memory/adapters/base_adapter.pyi +25 -0
  47. aip_agents/middleware/base.py +8 -0
  48. aip_agents/middleware/base.pyi +4 -0
  49. aip_agents/middleware/manager.py +22 -0
  50. aip_agents/middleware/manager.pyi +4 -0
  51. aip_agents/ptc/__init__.py +87 -0
  52. aip_agents/ptc/__init__.pyi +14 -0
  53. aip_agents/ptc/custom_tools.py +473 -0
  54. aip_agents/ptc/custom_tools.pyi +184 -0
  55. aip_agents/ptc/custom_tools_payload.py +400 -0
  56. aip_agents/ptc/custom_tools_payload.pyi +31 -0
  57. aip_agents/ptc/custom_tools_templates/__init__.py +1 -0
  58. aip_agents/ptc/custom_tools_templates/__init__.pyi +0 -0
  59. aip_agents/ptc/custom_tools_templates/custom_build_function.py.template +23 -0
  60. aip_agents/ptc/custom_tools_templates/custom_init.py.template +15 -0
  61. aip_agents/ptc/custom_tools_templates/custom_invoke.py.template +60 -0
  62. aip_agents/ptc/custom_tools_templates/custom_registry.py.template +87 -0
  63. aip_agents/ptc/custom_tools_templates/custom_sources_init.py.template +7 -0
  64. aip_agents/ptc/custom_tools_templates/custom_wrapper.py.template +19 -0
  65. aip_agents/ptc/doc_gen.py +122 -0
  66. aip_agents/ptc/doc_gen.pyi +40 -0
  67. aip_agents/ptc/exceptions.py +57 -0
  68. aip_agents/ptc/exceptions.pyi +37 -0
  69. aip_agents/ptc/executor.py +261 -0
  70. aip_agents/ptc/executor.pyi +99 -0
  71. aip_agents/ptc/mcp/__init__.py +45 -0
  72. aip_agents/ptc/mcp/__init__.pyi +7 -0
  73. aip_agents/ptc/mcp/sandbox_bridge.py +668 -0
  74. aip_agents/ptc/mcp/sandbox_bridge.pyi +47 -0
  75. aip_agents/ptc/mcp/templates/__init__.py +1 -0
  76. aip_agents/ptc/mcp/templates/__init__.pyi +0 -0
  77. aip_agents/ptc/mcp/templates/mcp_client.py.template +239 -0
  78. aip_agents/ptc/naming.py +196 -0
  79. aip_agents/ptc/naming.pyi +85 -0
  80. aip_agents/ptc/payload.py +26 -0
  81. aip_agents/ptc/payload.pyi +15 -0
  82. aip_agents/ptc/prompt_builder.py +673 -0
  83. aip_agents/ptc/prompt_builder.pyi +59 -0
  84. aip_agents/ptc/ptc_helper.py +16 -0
  85. aip_agents/ptc/ptc_helper.pyi +1 -0
  86. aip_agents/ptc/sandbox_bridge.py +256 -0
  87. aip_agents/ptc/sandbox_bridge.pyi +38 -0
  88. aip_agents/ptc/template_utils.py +33 -0
  89. aip_agents/ptc/template_utils.pyi +13 -0
  90. aip_agents/ptc/templates/__init__.py +1 -0
  91. aip_agents/ptc/templates/__init__.pyi +0 -0
  92. aip_agents/ptc/templates/ptc_helper.py.template +134 -0
  93. aip_agents/ptc/tool_def_helpers.py +101 -0
  94. aip_agents/ptc/tool_def_helpers.pyi +38 -0
  95. aip_agents/ptc/tool_enrichment.py +163 -0
  96. aip_agents/ptc/tool_enrichment.pyi +60 -0
  97. aip_agents/sandbox/__init__.py +43 -0
  98. aip_agents/sandbox/__init__.pyi +5 -0
  99. aip_agents/sandbox/defaults.py +205 -0
  100. aip_agents/sandbox/defaults.pyi +30 -0
  101. aip_agents/sandbox/e2b_runtime.py +295 -0
  102. aip_agents/sandbox/e2b_runtime.pyi +57 -0
  103. aip_agents/sandbox/template_builder.py +131 -0
  104. aip_agents/sandbox/template_builder.pyi +36 -0
  105. aip_agents/sandbox/types.py +24 -0
  106. aip_agents/sandbox/types.pyi +14 -0
  107. aip_agents/sandbox/validation.py +50 -0
  108. aip_agents/sandbox/validation.pyi +20 -0
  109. aip_agents/sentry/__init__.py +1 -1
  110. aip_agents/sentry/sentry.py +33 -12
  111. aip_agents/sentry/sentry.pyi +5 -4
  112. aip_agents/tools/__init__.py +20 -3
  113. aip_agents/tools/__init__.pyi +4 -2
  114. aip_agents/tools/browser_use/browser_use_tool.py +8 -0
  115. aip_agents/tools/browser_use/streaming.py +2 -0
  116. aip_agents/tools/code_sandbox/e2b_cloud_sandbox_extended.py +80 -31
  117. aip_agents/tools/code_sandbox/e2b_cloud_sandbox_extended.pyi +25 -9
  118. aip_agents/tools/code_sandbox/e2b_sandbox_tool.py +6 -6
  119. aip_agents/tools/constants.py +24 -12
  120. aip_agents/tools/constants.pyi +14 -11
  121. aip_agents/tools/date_range_tool.py +554 -0
  122. aip_agents/tools/date_range_tool.pyi +21 -0
  123. aip_agents/tools/execute_ptc_code.py +357 -0
  124. aip_agents/tools/execute_ptc_code.pyi +90 -0
  125. aip_agents/tools/gl_connector/__init__.py +1 -1
  126. aip_agents/tools/gl_connector/tool.py +62 -30
  127. aip_agents/tools/gl_connector/tool.pyi +3 -3
  128. aip_agents/tools/gl_connector_tools.py +119 -0
  129. aip_agents/tools/gl_connector_tools.pyi +39 -0
  130. aip_agents/tools/memory_search/__init__.py +8 -1
  131. aip_agents/tools/memory_search/__init__.pyi +3 -3
  132. aip_agents/tools/memory_search/mem0.py +114 -1
  133. aip_agents/tools/memory_search/mem0.pyi +11 -1
  134. aip_agents/tools/memory_search/schema.py +33 -0
  135. aip_agents/tools/memory_search/schema.pyi +10 -0
  136. aip_agents/tools/memory_search_tool.py +8 -0
  137. aip_agents/tools/memory_search_tool.pyi +2 -2
  138. aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.py +26 -1
  139. aip_agents/utils/langgraph/tool_output_management.py +80 -0
  140. aip_agents/utils/langgraph/tool_output_management.pyi +37 -0
  141. {aip_agents_binary-0.5.21.dist-info → aip_agents_binary-0.6.8.dist-info}/METADATA +14 -22
  142. {aip_agents_binary-0.5.21.dist-info → aip_agents_binary-0.6.8.dist-info}/RECORD +144 -58
  143. {aip_agents_binary-0.5.21.dist-info → aip_agents_binary-0.6.8.dist-info}/WHEEL +1 -1
  144. aip_agents/examples/demo_memory_recall.py +0 -401
  145. aip_agents/examples/demo_memory_recall.pyi +0 -58
  146. aip_agents/examples/hello_world_langgraph_bosa_twitter.pyi +0 -5
  147. aip_agents/tools/bosa_tools.py +0 -105
  148. aip_agents/tools/bosa_tools.pyi +0 -37
  149. {aip_agents_binary-0.5.21.dist-info → aip_agents_binary-0.6.8.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aip-agents-binary
3
- Version: 0.5.21
3
+ Version: 0.6.8
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
@@ -15,15 +15,16 @@ Requires-Dist: deprecated<2.0.0,>=1.2.18
15
15
  Requires-Dist: fastapi<0.121.0,>=0.120.0
16
16
  Requires-Dist: gllm-core-binary<0.4.0,>=0.3.18
17
17
  Requires-Dist: gllm-inference-binary[anthropic,bedrock,google-genai,google-vertexai,openai]<0.6.0,>=0.5.90
18
- Requires-Dist: gllm-tools-binary<0.2.0,>=0.1.3
18
+ Requires-Dist: gllm-tools-binary<0.2.0,>=0.1.5
19
19
  Requires-Dist: google-adk<0.6.0,>=0.5.0
20
20
  Requires-Dist: langchain<0.4.0,>=0.3.0
21
21
  Requires-Dist: langchain-openai<0.4.0,>=0.3.17
22
22
  Requires-Dist: langchain-mcp-adapters<0.1.0,>=0.0.10
23
23
  Requires-Dist: langchain-experimental<0.4.0,>=0.3.4
24
- Requires-Dist: langgraph<0.3.0,>=0.2.16
24
+ Requires-Dist: langgraph<0.7.0,>=0.6.0
25
25
  Requires-Dist: minio<8.0.0,>=7.2.20
26
26
  Requires-Dist: pydantic<3.0.0,>=2.11.7
27
+ Requires-Dist: python-dateutil<3.0.0,>=2.9.0
27
28
  Requires-Dist: python-dotenv<2.0.0,>=1.1.0
28
29
  Requires-Dist: requests<3.0.0,>=2.32.4
29
30
  Requires-Dist: uvicorn<0.35.0,>=0.34.3
@@ -31,10 +32,12 @@ Provides-Extra: memory
31
32
  Requires-Dist: gllm-memory-binary[mem0ai]<0.2.0,>=0.1.1; extra == "memory"
32
33
  Provides-Extra: privacy
33
34
  Requires-Dist: gllm-privacy-binary<0.5.0,>=0.4.12; extra == "privacy"
35
+ Provides-Extra: guardrails
36
+ Requires-Dist: gllm-guardrail-binary<0.1.0,>=0.0.1; extra == "guardrails"
34
37
  Provides-Extra: gl-connector
35
38
  Requires-Dist: bosa-connectors-binary<0.4.0,>=0.3.1; extra == "gl-connector"
36
39
  Provides-Extra: local
37
- Requires-Dist: e2b<2.0.0,>=1.5.4; extra == "local"
40
+ Requires-Dist: e2b<3.0.0,>=2.13.0; extra == "local"
38
41
  Requires-Dist: browser-use==0.5.9; extra == "local"
39
42
  Requires-Dist: steel-sdk>=0.7.0; extra == "local"
40
43
  Requires-Dist: json-repair>=0.52.3; extra == "local"
@@ -46,9 +49,10 @@ Requires-Dist: bosa-connectors-binary<0.4.0,>=0.3.1; extra == "local"
46
49
  Provides-Extra: dev
47
50
  Requires-Dist: coverage<8.0.0,>=7.4.4; extra == "dev"
48
51
  Requires-Dist: mypy<2.0.0,>=1.15.0; extra == "dev"
52
+ Requires-Dist: nest-asyncio<2.0.0,>=1.6.0; extra == "dev"
49
53
  Requires-Dist: pre-commit<4.0.0,>=3.7.0; extra == "dev"
50
54
  Requires-Dist: pytest<9.0.0,>=8.1.1; extra == "dev"
51
- Requires-Dist: pytest-asyncio<0.24.0,>=0.23.6; extra == "dev"
55
+ Requires-Dist: pytest-asyncio<1.0.0,>=0.26.0; extra == "dev"
52
56
  Requires-Dist: pytest-cov<6.0.0,>=5.0.0; extra == "dev"
53
57
  Requires-Dist: pytest-xdist>=3.8.0; extra == "dev"
54
58
  Requires-Dist: ruff<0.7.0,>=0.6.7; extra == "dev"
@@ -159,9 +163,9 @@ Navigate to the library's root directory (e.g., `python/aip-agents` if you clone
159
163
  python aip_agents/examples/hello_world_langgraph.py
160
164
  ```
161
165
 
162
- **LangGraph with BOSA Connector (OpenAI):**
166
+ **LangGraph with GL Connectors (OpenAI):**
163
167
  ```bash
164
- python aip_agents/examples/hello_world_langgraph_bosa_twitter.py
168
+ python aip_agents/examples/hello_world_langgraph_gl_connector_twitter.py
165
169
  ```
166
170
 
167
171
  **LangGraph Streaming (OpenAI):**
@@ -472,26 +476,14 @@ The library supports Mem0 as a memory backend for long-term conversation recall.
472
476
  - Date range parsing for natural language time filters using `dateparser`.
473
477
  - Conditional auto-augmentation (disabled by default to reduce noise; enable with `memory_auto_augment=True`).
474
478
 
475
- #### Mem0 Date Recall Example
479
+ #### Mem0 Integration Tests
476
480
 
477
- Use the coordinator example with memory enabled:
481
+ Use the Mem0 integration tests to validate memory persistence, recall, and deletion:
478
482
 
479
483
  ```bash
480
- poetry run python aip_agents/examples/hello_world_a2a_mem0_coordinator_server.py
484
+ cd python/aip-agents && poetry run pytest tests/integration_tests/test_mem0_coordinator.py -q
481
485
  ```
482
486
 
483
- In client:
484
- ```python
485
- agent = LangGraphAgent(
486
- name="client",
487
- instruction="...",
488
- model="gpt-4o-mini",
489
- memory_backend="mem0",
490
- )
491
- ```
492
-
493
- Test recall: After some interactions, query "What did we discuss yesterday?" – agent uses tool to filter by created_at.
494
-
495
487
  ## Deep Agents Middleware
496
488
 
497
489
  The Deep Agents Middleware system provides composable components for enhancing agent capabilities with planning, context management, and custom lifecycle hooks.
@@ -16,12 +16,12 @@ aip_agents/a2a/server/langflow_executor.py,sha256=6bVnwqRnqbBi949JHHWcIB-ZVQAPGJ
16
16
  aip_agents/a2a/server/langflow_executor.pyi,sha256=nlWUIOEGFcp4qtyrmmxax0TfzwIwOGkvFK-YmG0cGMg,1837
17
17
  aip_agents/a2a/server/langgraph_executor.py,sha256=45XRRwj7EQFBAkS69cZGtuL4ZtHZ0BDEyvDTp4Kw3yg,10765
18
18
  aip_agents/a2a/server/langgraph_executor.pyi,sha256=I6RX8_CjF0-gbJEYmNMO2P_i272k3R7X5iZNP5IfdTE,2287
19
- aip_agents/agent/__init__.py,sha256=KBT-e5nEBMVJypC8OFulmErUK63gmQZus0UcBu6EqBo,892
19
+ aip_agents/agent/__init__.py,sha256=v43Suwam9yhDIMhhr3bupMzOZqrzYjj_rm4Diw-wM30,1771
20
20
  aip_agents/agent/__init__.pyi,sha256=MxIAeAv1pPCtqfAa3lvmeCAN-IT5p3v77IeKhfKYvKo,855
21
21
  aip_agents/agent/base_agent.py,sha256=XH19lJZuumWBu2JMoretv6T4bSXcWMqK8jZ3mOWWzCk,39669
22
22
  aip_agents/agent/base_agent.pyi,sha256=xnWp05zTJrt1YfHmm9CsggBmrSsIY-SSy_G9EWGvEBQ,11118
23
- aip_agents/agent/base_langgraph_agent.py,sha256=z0xMA_wMDGZoxBTSrfj2qfb8nyVe7WAktR3pk6uh5-o,119730
24
- aip_agents/agent/base_langgraph_agent.pyi,sha256=6uUB4zyzKGQ62xVHvGEOp_lhav6df6f_Fq8Rzz2gdac,11569
23
+ aip_agents/agent/base_langgraph_agent.py,sha256=f6pqDeaxSW8xeql7WdV46lbrilGuKuFyvUZo1p5D6_E,123831
24
+ aip_agents/agent/base_langgraph_agent.pyi,sha256=7X9GWkGK4QkYrnjuBC8U4zcOlzYCt7-TgPmFwhJMt1Q,11593
25
25
  aip_agents/agent/google_adk_agent.py,sha256=V_b72Ig87UiW15YNc-PCcxd25ia9pj2T0IlqCDJ-3_Q,37136
26
26
  aip_agents/agent/google_adk_agent.pyi,sha256=o06bPfA7bRQ_ufdOmJ6j6A2_WxWr5G6jZEKRzEPYjTU,6248
27
27
  aip_agents/agent/google_adk_constants.py,sha256=7Br4pVF56oLdU3dkh-kKKQeOy_mq8qVhliUdYNT1sSM,210
@@ -32,10 +32,10 @@ aip_agents/agent/interfaces.py,sha256=Hi5GVCk4S2xwnNQ7a56VnkEFktNm7ofMDmA8axJUK2
32
32
  aip_agents/agent/interfaces.pyi,sha256=v9TnZ8fW1gglh5ynnpvcrN0wN2PDrJGVpgWhp3whvGQ,1600
33
33
  aip_agents/agent/langflow_agent.py,sha256=ZoJGOS8GcgGJ9Xfu4upzk3Nc1XVkpS8GSpcyKhGkXBA,17439
34
34
  aip_agents/agent/langflow_agent.pyi,sha256=z89Y7JifrsHi4Vn6LE_s0zbo77nLhkDKI-eRcxmnOr0,5667
35
- aip_agents/agent/langgraph_memory_enhancer_agent.py,sha256=EqH_olZ6Ue-SyQMrvYfuLkiCQAAZRMWx8izB19IYSlI,17426
36
- aip_agents/agent/langgraph_memory_enhancer_agent.pyi,sha256=e5sz1hbyOLw0eHo6fKf3HsCpyTe3yGqEidn9EOGb3QQ,2595
37
- aip_agents/agent/langgraph_react_agent.py,sha256=eUMiimorNrfD6UhzuVW5aLNF7a6GFN1UzVUXo7LvuUg,102393
38
- aip_agents/agent/langgraph_react_agent.pyi,sha256=CRdqJkzzeA--p72G6s1SMIxvTUGQ8xuCsnsJy_TGOwQ,7895
35
+ aip_agents/agent/langgraph_memory_enhancer_agent.py,sha256=gsnS1iiygrNWHv-KJjmdqzQGWrS8Ia5v_91Z2Zvz2_M,31696
36
+ aip_agents/agent/langgraph_memory_enhancer_agent.pyi,sha256=5vP11BeaQhVryNKfve3c0mUoKsIBlEN15YbLJcej5pI,2905
37
+ aip_agents/agent/langgraph_react_agent.py,sha256=vpkKOFd3KcZqM3fmUnimT609EUx73WPti8ieH4cEjLs,119802
38
+ aip_agents/agent/langgraph_react_agent.pyi,sha256=5X7PO-GD0UMKly-dgksCPHpP2kXb2b5qNcRbRGH5BY0,10527
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
@@ -71,8 +71,6 @@ aip_agents/examples/compare_streaming_client.py,sha256=cUf2rv4ZfaDEJ-3cUb94qHh-a
71
71
  aip_agents/examples/compare_streaming_client.pyi,sha256=caRzRGjAcs7Vdoecll1ud7SKGnbRh1RnYcKrkWpNiQE,3008
72
72
  aip_agents/examples/compare_streaming_server.py,sha256=PyLGALAL0qWJUo2Ju7YXvh8US9Gp6jf61fjUL1NeY9E,5634
73
73
  aip_agents/examples/compare_streaming_server.pyi,sha256=NNu30WWoC6QQt-hiAq4zwCX3qJaSwz-LE5KolEfBp0A,842
74
- aip_agents/examples/demo_memory_recall.py,sha256=7_FmFpBRWZmIfvrinwT_WgPmMRew_WEW5khQitESlqg,15513
75
- aip_agents/examples/demo_memory_recall.pyi,sha256=eX0GEZ9EVKvvmMBc_d9NKQkHWHsbfi-cDpensKHHqC4,2570
76
74
  aip_agents/examples/hello_world_a2a_google_adk_client.py,sha256=Zh05vnN2O12w32b5s8lVSIcSnZt0GcRj77utrcBoAEQ,1658
77
75
  aip_agents/examples/hello_world_a2a_google_adk_client.pyi,sha256=iOnEywK-3OKQx9nv-H4BVTI1LAAFRMTxtvunh-f993w,374
78
76
  aip_agents/examples/hello_world_a2a_google_adk_client_agent.py,sha256=44uLJRjdEriULcsE9mxlIpmcQY4PZZA20BXYyXfsn_0,1553
@@ -179,8 +177,8 @@ aip_agents/examples/hello_world_langflow_agent.py,sha256=NFgI_jJ0mDpeRpVhw5TESRS
179
177
  aip_agents/examples/hello_world_langflow_agent.pyi,sha256=sl3sF36CcY_s_zQ61gvneRyTiHmPV8p9xzPL2IeB1zo,1251
180
178
  aip_agents/examples/hello_world_langgraph.py,sha256=CSlZzVOtwbnCxw3uci_qGFzO7eYZe0uzs-4kmGNih7A,1248
181
179
  aip_agents/examples/hello_world_langgraph.pyi,sha256=ix3j1wqj79wkMMuOjEQUhZA4Isr5JSFEJw49WJ2NmM4,251
182
- aip_agents/examples/hello_world_langgraph_bosa_twitter.py,sha256=NmRmEU6bccPa7UNRw1RCxYrcgw6RaLU2HYgmfy6V4IY,1224
183
- aip_agents/examples/hello_world_langgraph_bosa_twitter.pyi,sha256=QSx4K8FDnQzedl3Cl5ZlngL1-HEjE7MiLSemQ2N0dsU,238
180
+ aip_agents/examples/hello_world_langgraph_gl_connector_twitter.py,sha256=cOvEKKr1cvyl1R3CX5c6JFUpwnOWYmAWtbJuqvwUsWA,1328
181
+ aip_agents/examples/hello_world_langgraph_gl_connector_twitter.pyi,sha256=zvvkXFJw8NV4W7B8XB4b4F3s-HKixsasSMfJAuteqoQ,264
184
182
  aip_agents/examples/hello_world_langgraph_mcp_http.py,sha256=BmfwomTLNbGH3jpMMxGmSV_waYuvfbtdYdeKqVVzEPw,1008
185
183
  aip_agents/examples/hello_world_langgraph_mcp_http.pyi,sha256=8Ye3T6ip-_qykUEsYz5oPrJ99Td89OvFYwTdiP6-hAk,264
186
184
  aip_agents/examples/hello_world_langgraph_mcp_http_stream.py,sha256=h2nkg-oeZvzFWF2k2LHvAOiUqfnpnGAk1sfK1JiVQlg,1129
@@ -209,13 +207,17 @@ aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.py,sha256=sppLD
209
207
  aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.pyi,sha256=zFNns9i-sPY8aBy4HaVS6tXDWTsU7f-ApLD8gDtb1uk,252
210
208
  aip_agents/examples/hello_world_pii_logger.py,sha256=pm9LK-doZwQL-VdJYFHziuvwH562c8wwAwmKZeAWQS0,584
211
209
  aip_agents/examples/hello_world_pii_logger.pyi,sha256=5gOVrvhQV2DxIwr7ocL1-oTUXsO8XSyl5WN70c7rl_w,134
212
- aip_agents/examples/hello_world_sentry.py,sha256=V-q6r9Nw76XosFGxIAxVtbpp_WmncgqU0PoBwMNBXXY,3958
210
+ aip_agents/examples/hello_world_ptc.py,sha256=A3aadYO3H41UgKZoHqrThXz2_hOFGX8-E4XwFnRi7P4,1410
211
+ aip_agents/examples/hello_world_ptc.pyi,sha256=Dbo4myHbndrL6PyA_mgf3HTIYqLudTaF4h_nsdqOyKs,231
212
+ aip_agents/examples/hello_world_ptc_custom_tools.py,sha256=rFloWUt0PES0OWv26dq1tefJPyLp-gHSB0kU8NSev20,2775
213
+ aip_agents/examples/hello_world_ptc_custom_tools.pyi,sha256=B0QEK94lDleccYOYePBHnUzdoU1AJLZ4vI7rJR_sCvE,488
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
215
217
  aip_agents/examples/hello_world_step_limits.pyi,sha256=V9KP6r5OEVq2lNUfnqMeCGH1nsNewDsRL1Uo9up8xis,1060
216
218
  aip_agents/examples/hello_world_stock_a2a_server.py,sha256=5OIhLDkuCKiTwQleyyXp83HwcUTIeESU5SKmFqs0m4U,3433
217
219
  aip_agents/examples/hello_world_stock_a2a_server.pyi,sha256=EYsTPyLYogpSr7HRZZdW7cbei0HSva-V6yL4RxjW2UQ,657
218
- aip_agents/examples/hello_world_tool_output_client.py,sha256=IEcQcmSWo5Gp8ZA0zHPt_ZyQR4MzEEs3QNp6KecAWEE,1323
220
+ aip_agents/examples/hello_world_tool_output_client.py,sha256=JShYKVRsRxHx097hR8UQQ2TUCW5jh8ZnhO-eYDpxat4,1972
219
221
  aip_agents/examples/hello_world_tool_output_client.pyi,sha256=bgTSPn-pf-UmLRhHGEjU2-Vha9EUhVjZQy1qcSHyf7A,240
220
222
  aip_agents/examples/hello_world_tool_output_server.py,sha256=E6ZCPlQheXVoXSk1n29fRPRVhGQLqasfYBOtxEI8BYQ,4039
221
223
  aip_agents/examples/hello_world_tool_output_server.pyi,sha256=YYRkV833qaLpAwPta3NUyIefvXX5puy-stfJGmjBsPc,966
@@ -264,6 +266,8 @@ aip_agents/examples/tools/langgraph_streaming_tool.py,sha256=m2r5C6g4eUIOllOZLMn
264
266
  aip_agents/examples/tools/langgraph_streaming_tool.pyi,sha256=bV93AHiynYkvsq4plnbDZ_yw3EA3sxI3xBo8VBKc4Jw,1659
265
267
  aip_agents/examples/tools/mock_retrieval_tool.py,sha256=zHmjTDPkOOF6b9Z8E6C-ETuAg63RmPNTe8645ZdiVUE,1844
266
268
  aip_agents/examples/tools/mock_retrieval_tool.pyi,sha256=h4Yx9A5DEFMc62aJoiL91Tpwe-ivmS7ezUhyVoBAcas,377
269
+ aip_agents/examples/tools/multiply_tool.py,sha256=2pmAQxL9-Tu9j08Y3zmYYV_FccFXl5h99AR5fGo4fcs,1252
270
+ aip_agents/examples/tools/multiply_tool.pyi,sha256=sD2-r8AX7yGWyQGhqk-y7pwrlU4kQ4YQeCUjo1qi2Tk,453
267
271
  aip_agents/examples/tools/pii_demo_tools.py,sha256=wm7K60BD7kn38oWRxz1C9t3qruR7a_Ji5LDq6ddyzWg,5771
268
272
  aip_agents/examples/tools/pii_demo_tools.pyi,sha256=JY02wNgmcKeCea-u5k9GHo93llWs9mvrwMTUkBQQUlw,1682
269
273
  aip_agents/examples/tools/random_chart_tool.py,sha256=rOOVRI-C51UXnvrQMYq4fV-7ePyqn3kWWfDUKBZ12xs,4983
@@ -280,20 +284,40 @@ aip_agents/examples/tools/weather_forecast_tool.py,sha256=3h05PnT_sLGc4UN76ZyNu-
280
284
  aip_agents/examples/tools/weather_forecast_tool.pyi,sha256=kXVw-dzjg74_6HjKDbEW2NIQJYehv-fiC-aUemFRWdo,375
281
285
  aip_agents/executor/agent_executor.py,sha256=EOwaUbimkUQrBsBMkeR50FJhh41skew2W2hYC1mKNCY,18262
282
286
  aip_agents/executor/base.py,sha256=SA6S00GpLQcX87N2xDrSO2njKkTBMSxsu9yNtzp8Wh4,1536
287
+ aip_agents/guardrails/__init__.py,sha256=xk5vuQOEKhu17Po4NksJWobgwtyhJEmKJTJuncAZxdM,2706
288
+ aip_agents/guardrails/__init__.pyi,sha256=QoHXBiY0qNRSkLxc5wRggECOayUoAu7QEvMewMSTIOI,627
289
+ aip_agents/guardrails/exceptions.py,sha256=OgI8izMPxUBZKVDD4HErpc6h_nUl1RPUa8eo3TE-3k0,1270
290
+ aip_agents/guardrails/exceptions.pyi,sha256=k3otRtjcYpV9QrA5Hw9eVXvyZlwUtxpPO-95DgjiqGk,859
291
+ aip_agents/guardrails/manager.py,sha256=Paggm0utPnkoW5TjXXIgEGvEyNz9JYKyrr44aexgmtc,5587
292
+ aip_agents/guardrails/manager.pyi,sha256=J49cUCoiRhY6WVE8U0Ya0JJyMgczlaSlQ1JPCz9smgk,1770
293
+ aip_agents/guardrails/middleware.py,sha256=EXhvPGPCoaopQyQ8sKmC8tvuKSoegh8a6etZw9XU2xQ,7157
294
+ aip_agents/guardrails/middleware.pyi,sha256=MNe5FW8NMoc6XnXqgEZtHCZDw8IzhrIBYxObtJabqKk,3676
295
+ aip_agents/guardrails/schemas.py,sha256=T4MXhS9qXX9ZOZ6TSgXcL8OTXYQWYoImfTjIrhz113c,1648
296
+ aip_agents/guardrails/schemas.pyi,sha256=FabNK1EiQoaR5TEMSm1a9Kwi9GPEFs8E4egWYw_P950,1245
297
+ aip_agents/guardrails/utils.py,sha256=JzLa0IsDSRCQ4UjX4yILQcp9N2yZFhL7bhqAExOznxs,1542
298
+ aip_agents/guardrails/utils.pyi,sha256=xpA-ON4Sf2vhobNSjpLHutHClIv5NQzjmmP8b93vWfY,690
299
+ aip_agents/guardrails/engines/__init__.py,sha256=ms45MKhUEYPqXUf3SMSNpW6wazL9ZGVWznqRXDC3ER4,2170
300
+ aip_agents/guardrails/engines/__init__.pyi,sha256=wDdok30WGjpFQuGnHE75Ddw6JmcF_9Ux0k0kBH-3Nzc,248
301
+ aip_agents/guardrails/engines/base.py,sha256=Ytkrhpr04tqcP1Ze5WX4cnjcy9nfheU610FjYoQFSdQ,2743
302
+ aip_agents/guardrails/engines/base.pyi,sha256=BasnK5yWrAIDnGomqfaU9MlaJ_qj7LILO4U1_9miUxA,2236
303
+ aip_agents/guardrails/engines/nemo.py,sha256=Qs2JX-1SVTrWvtrLH3wDezOSZsOdQYjwCvBC8PxbSZ4,3801
304
+ aip_agents/guardrails/engines/nemo.pyi,sha256=wUGT1Q7WzGw4XPDLfIW4YQODAEzvEjP3fNCA2mBKWps,1981
305
+ aip_agents/guardrails/engines/phrase_matcher.py,sha256=4rilmNkZ3OCeUC6YhMVRT_UJeQInI617KiEOn8deB-o,3963
306
+ aip_agents/guardrails/engines/phrase_matcher.pyi,sha256=Gk978fctlBNoyoxtjIIQTwcoBC6pzb0DVP7LTHeKQfc,2060
283
307
  aip_agents/mcp/__init__.py,sha256=CCc2mHoabzEFzQyjEW4ULKglEGtR_BGgBZNix8QjWjU,60
284
308
  aip_agents/mcp/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
- aip_agents/mcp/client/__init__.py,sha256=85jA6v-bjjm13kCqnu57__fIprCAk5fC628API9h6uc,493
309
+ aip_agents/mcp/client/__init__.py,sha256=tA-LtCpvTL_OM0nzLLCm7uOxb46xMz4cuN_xBZojPmw,1430
286
310
  aip_agents/mcp/client/__init__.pyi,sha256=XgIkFbbmAh5cqQM4t1xT5y-Avu0vf4b-YCn6btXjIK8,339
287
311
  aip_agents/mcp/client/base_mcp_client.py,sha256=36bY_4BbzVBogDekwBOCL3A12MuXmKiNTpbxQjBgjlM,13973
288
312
  aip_agents/mcp/client/base_mcp_client.pyi,sha256=FuJBA4TLFPBJzuHqpxMGOlODgMpT7avOoAR34TsiQAk,5881
289
- aip_agents/mcp/client/connection_manager.py,sha256=4dgwgZISkjevHTMH2E8aqLRwsybUKMP3IHxf1GKvCts,7487
290
- aip_agents/mcp/client/connection_manager.pyi,sha256=voj-rqqiZvSFYY7Z-X991xZlcFOMxsf1QDhuWMUaIvs,1772
291
- aip_agents/mcp/client/persistent_session.py,sha256=I8JjHe_ZqU1PPB2OF6hUX4kcrraVWflc9gCMIGgYLJU,14206
292
- aip_agents/mcp/client/persistent_session.pyi,sha256=in3TgtC-eHD6j2payC9_TryuOLOmqoeDKfl7UaZ_kBA,3908
313
+ aip_agents/mcp/client/connection_manager.py,sha256=RY0wtYu3pjcvaEPQVAKCRkOjhCHhS0di8OQVMjqCggs,9137
314
+ aip_agents/mcp/client/connection_manager.pyi,sha256=DhZPuCrK17wWBZ_oKhrHzwH6vv_Jy9NxHOEqo7rhnhY,1951
315
+ aip_agents/mcp/client/persistent_session.py,sha256=sucOlCDvpX70_Ru_BZDGX-dHGlG9cPA2R9PVL179hFE,23852
316
+ aip_agents/mcp/client/persistent_session.pyi,sha256=B0N7gY0NFidELB4IAE7pk0QuskjhIAgN662wSgRrKxc,4267
293
317
  aip_agents/mcp/client/session_pool.py,sha256=_J8WduSo3HAfhE5n4u67IQQ71m_L2aPUY1NOgX5e7yA,12617
294
318
  aip_agents/mcp/client/session_pool.pyi,sha256=RtzN-5QDLS5MFAlnR5TiarY1xW4xo780n7lQL0sQbRU,3579
295
- aip_agents/mcp/client/transports.py,sha256=1HqmFqpmktFhR-vKU85xuvWcwogkIjQIh9se0qo4LEM,8172
296
- aip_agents/mcp/client/transports.pyi,sha256=_V6ZaQyKtTMhHzNQH943asy0O6z2bHTOX8hc-lZlV2s,4576
319
+ aip_agents/mcp/client/transports.py,sha256=I2opSOZUzf-g10WyyCkil5xogfpHP1ZToHIl6GuXJWU,9994
320
+ aip_agents/mcp/client/transports.pyi,sha256=S7uhJIh-6bZq8_tgqTdeez78vIrtHy4a10GO1GDgEio,4958
297
321
  aip_agents/mcp/client/google_adk/__init__.py,sha256=ZJZE7IusoWFzEwaWsHOk-8VMdR-LUmWacepw_HHuOlI,280
298
322
  aip_agents/mcp/client/google_adk/__init__.pyi,sha256=TAbiDbysxbCtHQSASGdko6JIaZEnPbCmUqt4Jf966cs,127
299
323
  aip_agents/mcp/client/google_adk/client.py,sha256=WAbUho8Et7XZ1RWu0ug1-61--kdUVH0wvpzDddT7cv8,15980
@@ -320,18 +344,76 @@ aip_agents/memory/simple_memory.py,sha256=CpLr7mI_LyurFR6LHqFWXABxGP2Q0ef2GxZyGT
320
344
  aip_agents/memory/simple_memory.pyi,sha256=E-UJ-pqDOpHqMozwf5M3yHuim_46vzHmUwf_SthHIb4,1126
321
345
  aip_agents/memory/adapters/__init__.py,sha256=j-loIdfx_2K4JsjjolEeUrINgwogOOs_jm5pQlhZzac,279
322
346
  aip_agents/memory/adapters/__init__.pyi,sha256=KDmdDvG1tcfEQJ8c5_i9q3m74LPTlGsyTTY7b6n5nno,207
323
- aip_agents/memory/adapters/base_adapter.py,sha256=lYgOp04ONEx1upszXU7y181Q8p4imb9m6ctsoSCwXg0,25515
324
- aip_agents/memory/adapters/base_adapter.pyi,sha256=g__Agyf8Rt-iz6Oi54o16ubDsHUAGBn0h-Xn8H8fY8I,5948
347
+ aip_agents/memory/adapters/base_adapter.py,sha256=rCOWbPY3IgRYbzQthKXTTydrWdeayvmEMfcSkbt2jzk,28969
348
+ aip_agents/memory/adapters/base_adapter.pyi,sha256=zNFC9GZN98mWg9KgitXy4hLQWs3wQV7bBLQvnaB32YU,7187
325
349
  aip_agents/memory/adapters/mem0.py,sha256=wWRUlCusOpMMayj4Uw8nYiAuI4TKxaKXqaTTerzXDL4,2955
326
350
  aip_agents/memory/adapters/mem0.pyi,sha256=C8hVoXKmk2J62Lns-OdafTiEEFEcH-SJn-bF3ATHx7s,1093
327
351
  aip_agents/middleware/__init__.py,sha256=ggAQsp9G0jNsrQ59unPrv6K8Bapi-WvLMwnI84Tt_Dg,485
328
352
  aip_agents/middleware/__init__.pyi,sha256=9T09rYdiS1EJdvmyHjc1K0gViopSUUz5GHUJW3MDXZU,399
329
- aip_agents/middleware/base.py,sha256=gsXTdzu41G51H06-T75iDnR4BxCGMez4YPuFye5R8uU,3270
330
- aip_agents/middleware/base.pyi,sha256=R1u0ewzCBBWViJSLdmeioP_-WIPIhC8JchP-85k82kU,2723
331
- aip_agents/middleware/manager.py,sha256=XuxSdSSghouvvszyrWAKApDQDLhi88xRumzv2LZbQ1w,4385
332
- aip_agents/middleware/manager.pyi,sha256=MPmlmPcdQT2z9OvW7dCty6eWgKtHxMDx7AtNIVwNMXU,3258
353
+ aip_agents/middleware/base.py,sha256=n0685vqucKCx54kNAYOQ8t3kzGbhYnSholc5M57zDnQ,3615
354
+ aip_agents/middleware/base.pyi,sha256=dEh3-OpFy9tqQQcaYwJofPcmgLJ9ugP0rPhMM-lbDDY,2987
355
+ aip_agents/middleware/manager.py,sha256=dlFhWC8fmKzbL6KIioeBv6cO8TSNfwmSYbciTxGNh-E,5177
356
+ aip_agents/middleware/manager.pyi,sha256=a-OJeUVP6pIVvG9p8nyIC3oCOWfPVqH1EGykUeePXAs,3577
333
357
  aip_agents/middleware/todolist.py,sha256=BwElJRwn_hG-EC6YJOiaCG3zbAab03e0HkIbHv4LSik,10514
334
358
  aip_agents/middleware/todolist.pyi,sha256=AvRUtHdchxbP9A3ikJwF1EmQqJ-tbzy12eSXpQ-ZDiU,4195
359
+ aip_agents/ptc/__init__.py,sha256=oMH-VPja2p9QtmE5jIg-sBqVZDFXPNlievhVehXitrg,2505
360
+ aip_agents/ptc/__init__.pyi,sha256=KStzEo05ai3EVYdhPRFBhWRb8U8J1Lrh5bHEB5Xb57U,1786
361
+ aip_agents/ptc/custom_tools.py,sha256=I8-NGiJ3VEYB63dDKm6VzfGBuXKAfaSaLbbmu8MGo5M,16424
362
+ aip_agents/ptc/custom_tools.pyi,sha256=jRjzMuPi9wsu4bUCoopyiZhe_NQUTA-tpU_F19Xq6qg,6551
363
+ aip_agents/ptc/custom_tools_payload.py,sha256=q-A05wqnOqICtw9rq2BU5nnghkrl60HYEU03zNnUEpQ,13309
364
+ aip_agents/ptc/custom_tools_payload.pyi,sha256=MDxnGnkzweZSe04uQ92m5JczdHBmwhjIJlkPzS8wJWw,1264
365
+ aip_agents/ptc/doc_gen.py,sha256=ym6psNvZ_8iKB3AGrb1TTFoQiXXLdP2zKp6c4SPf4JA,3382
366
+ aip_agents/ptc/doc_gen.pyi,sha256=fJ92pbil2mMPv_9AHctVqFNZVE7P8njisLrn9zSSmdA,1266
367
+ aip_agents/ptc/exceptions.py,sha256=_ZhE-XOM1bktsqg1tbtaNo7oI7P89fgg6iQ2apeuOJY,1388
368
+ aip_agents/ptc/exceptions.pyi,sha256=zhniFvKkFuxTK6mX7RwgGjuG1qcScdPvkC5FK4_GSx4,1102
369
+ aip_agents/ptc/executor.py,sha256=eyaa77ghq0swPFKIWAQrDcjLLS_CiUiJ5s4YaxeXiMM,10101
370
+ aip_agents/ptc/executor.pyi,sha256=rGTmH_kEjJgt-t7_X6HyqyrD5MUI9WvyF79bAF__nZo,4746
371
+ aip_agents/ptc/naming.py,sha256=me8YpfBToUmYbwrUx8miGfueYTs-3aW3eMoFIYjK4fE,5324
372
+ aip_agents/ptc/naming.pyi,sha256=TQC3UWhhWCqxCJzxNW4B6HDBY6oZFLRafkaRTBSj78Y,2389
373
+ aip_agents/ptc/payload.py,sha256=DPEeunaKGk3iWxdpE-1YVD_iuHQPhWqIvcL2TaYPfig,835
374
+ aip_agents/ptc/payload.pyi,sha256=qPgwyDY14tAsx-r_nt3ACZAfgBmJiAPdH7MXBJJVqjk,631
375
+ aip_agents/ptc/prompt_builder.py,sha256=NtMg_TWQcKjC_nR0CS-nEmznbO-9Yz47X39ZSCdFXNE,22246
376
+ aip_agents/ptc/prompt_builder.pyi,sha256=cwvCSsVe2nahX1M1LodEZnaQxVcneQXqY5Pc1AaLWpU,2751
377
+ aip_agents/ptc/ptc_helper.py,sha256=DARdrCwEfuaKOGdVYE1YuudXCbIvkv6rSgcGYK7S_z8,439
378
+ aip_agents/ptc/ptc_helper.pyi,sha256=FOgjwJR_J15JQjjTNU9oTG-s6d7ocks364ijMuVTHT0,77
379
+ aip_agents/ptc/sandbox_bridge.py,sha256=NyS2b0euKJ2vj-7xNhtHMzXdtAhRTmlbGMfQtb4LJ80,8872
380
+ aip_agents/ptc/sandbox_bridge.pyi,sha256=gkdT1Jcb43QoLZPzPEWy9USxv0TFf-eGF3qQ0ttzIk8,2143
381
+ aip_agents/ptc/template_utils.py,sha256=wHwnMNnf_lz-dj8oWnVXwCp7szw4_Nk4kh4FLcRxlfM,898
382
+ aip_agents/ptc/template_utils.pyi,sha256=hNpgwyalUMezalSJry9FeQsFfjwuCxl_dZHBimkShF0,438
383
+ aip_agents/ptc/tool_def_helpers.py,sha256=ZlENwzQMWnfGYlNzsZjl-wEs6VR3e1c3QKIX3RI54oU,3562
384
+ aip_agents/ptc/tool_def_helpers.pyi,sha256=Gz_c1h9Vr6WVEPvyQ_afOaWFQkg9vPmBRZWwb0lo_SQ,2101
385
+ aip_agents/ptc/tool_enrichment.py,sha256=Znvgi1jPfp6fzyOtogAObN6e6POU4EPnnLuia2m6iag,5210
386
+ aip_agents/ptc/tool_enrichment.pyi,sha256=uBEK1iMBBT2XcMtCo6TaWNU6c-0nd02SIHNSZ5Hf0h8,2480
387
+ aip_agents/ptc/custom_tools_templates/__init__.py,sha256=46-6eUrhSb8FZAodhM3Xxp8ajUiDWfeZBc4n2kRC__Q,62
388
+ aip_agents/ptc/custom_tools_templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
+ aip_agents/ptc/custom_tools_templates/custom_build_function.py.template,sha256=LJ9CfBJHAsA0ERYhm8dEx35GiZreV2kRyFnU_tc9c24,744
390
+ aip_agents/ptc/custom_tools_templates/custom_init.py.template,sha256=72QPUEt9XJC-yrj31CcvpL85dqkYcI2egJ3cM267dmY,321
391
+ aip_agents/ptc/custom_tools_templates/custom_invoke.py.template,sha256=xkESlaWHzqTsuvy0X_F8FFqLVyqX1hXIFabAwr_scLg,1702
392
+ aip_agents/ptc/custom_tools_templates/custom_registry.py.template,sha256=g42X0fSKha0ki0Xc1AaMuHtP8VOLt3yCIW_mrqz2X-o,2929
393
+ aip_agents/ptc/custom_tools_templates/custom_sources_init.py.template,sha256=KaKzBFBDc5hF9dFZtBb8Nc5k2UNsf1ZIiuO3RlfC39c,173
394
+ aip_agents/ptc/custom_tools_templates/custom_wrapper.py.template,sha256=M0-CUQdi0b7XNSiVwNAvXGl9hfDdc9Yx-nIfYV7mWg4,462
395
+ aip_agents/ptc/mcp/__init__.py,sha256=DlT25Zs_SDstW8vAFxomKlSF4QCpe_k6Sa42fN22ikg,1118
396
+ aip_agents/ptc/mcp/__init__.pyi,sha256=nKRY7DrlqgmDThlBh9uDQ5LCchfWteaPX0Er37-AtMI,916
397
+ aip_agents/ptc/mcp/sandbox_bridge.py,sha256=HzzmEJmkkNb6ZNVUIq0gHBSD-ZXOZnp1n_PyYGAHk58,20418
398
+ aip_agents/ptc/mcp/sandbox_bridge.pyi,sha256=dzQ5gzkF1_h0kZxlKt9nY6R2HvOn9q_TZ50T4V7w0gQ,2033
399
+ aip_agents/ptc/mcp/templates/__init__.py,sha256=gUaLjHPncH1Js6dHiNRSpbAwngKY83gQcRCARKl42DU,57
400
+ aip_agents/ptc/mcp/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
401
+ aip_agents/ptc/mcp/templates/mcp_client.py.template,sha256=Ql6Wtj31oz8Kb6rUJP2_RnaTScXJS94ujgyg0MuZPVc,7446
402
+ aip_agents/ptc/templates/__init__.py,sha256=T_jAb0bAhq1en0feNp4kNDkyFCU67GuzCBeoGtSOgD0,56
403
+ aip_agents/ptc/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
404
+ aip_agents/ptc/templates/ptc_helper.py.template,sha256=_heBHy5XtLWYGONtof7qstyEbeHMtHDwCYhxL4-BNDM,4064
405
+ aip_agents/sandbox/__init__.py,sha256=1zA88_E_WaOm0KaDMsaznWm9qEQvqPF8Ain4w4LFFQo,1366
406
+ aip_agents/sandbox/__init__.pyi,sha256=l-anSofX18C7Mk0PReCTDZ-tIv8PGg9w0YdNnppve2k,341
407
+ aip_agents/sandbox/defaults.py,sha256=WpZKCVlKWFob8QXnJQr5fzpQTTYnaboLHNJ0YVWFABA,6965
408
+ aip_agents/sandbox/defaults.pyi,sha256=jvBK8W_1J2qH7d5cHpYA-QyvC1gGGgRI7omW9Ct71vs,1618
409
+ aip_agents/sandbox/e2b_runtime.py,sha256=te4jL99Wqs4iQQiEN4r6ZpPmdhrV-phPDH7qhfUiPgI,10662
410
+ aip_agents/sandbox/e2b_runtime.pyi,sha256=ClLy7khXATLSJKpQLEKCXuDPQCjMgenCrXIldmQekrg,2621
411
+ aip_agents/sandbox/template_builder.py,sha256=YX7k57OSu-LGDxwURTJLd1MHeD1295d9-cmW_Ndy4EM,4343
412
+ aip_agents/sandbox/template_builder.pyi,sha256=DFOrf1IVkRBcrI4fPm-_CrO_n4JQM4xMfX2z2APIm68,1522
413
+ aip_agents/sandbox/types.py,sha256=D4f3k8bfJwRYM2re0e-5Dxfg58FLIFYY3YE_z1Wqgh8,528
414
+ aip_agents/sandbox/types.pyi,sha256=P-BGzoiSJA8nQPQNluowNyrFKt5UnLBxeeOL5pamiRU,366
415
+ aip_agents/sandbox/validation.py,sha256=UqBv6TTTmiIv6oCymEHDRlo0QCi45BQ6ceW9Cs7_TM0,1336
416
+ aip_agents/sandbox/validation.pyi,sha256=rCgd4JJkHECFFo2Oa0LtPaBK0wjvIqOZeV9-aFU9tC4,587
335
417
  aip_agents/schema/__init__.py,sha256=eQdptrXX7Rxo0xAJ1tXfoPhIaFoVQTDvrRAJAF3SjSM,1698
336
418
  aip_agents/schema/__init__.pyi,sha256=kho3g8pKCp1FBZ5SwyK3Vom5rSEgHJ4rYv81QIX3bGg,1908
337
419
  aip_agents/schema/a2a.py,sha256=04WVxpFjVuiQc2-w3m3TLO3h3NuApVuFrzJQq5casU4,1368
@@ -348,10 +430,10 @@ aip_agents/schema/step_limit.py,sha256=8hqHSxHBWro8qvNR0pMxROpFSzlLqcyFO4veS_WDP
348
430
  aip_agents/schema/step_limit.pyi,sha256=UvLDMTy8BI7h1Jx5gpbpw1jrJ9L5vK8cmQkvQdlD3bs,2318
349
431
  aip_agents/schema/storage.py,sha256=Tl0RFT32GWdsc5y8bTvpWMOU8hmQxXIlrMub3qdwx8Y,1290
350
432
  aip_agents/schema/storage.pyi,sha256=exaZAS49PYSuhYSPYukIRCRHIGRyCpBGucrdpnhV4zE,557
351
- aip_agents/sentry/__init__.py,sha256=S1XFjmAnNsqnI_Jk_ozNqDodkqWgzZ8xZPTXS2zqXzI,252
433
+ aip_agents/sentry/__init__.py,sha256=l3nI-3pjBNNmcOZ7xPeIis1n_wkPpvnk2aHxQYWsflU,261
352
434
  aip_agents/sentry/__init__.pyi,sha256=OGxzQzEvbnqf02zXdBJUrHeKfjfBgvnOL7p-0gNvP8k,103
353
- aip_agents/sentry/sentry.py,sha256=LlahQ2bkjL9FSFH0RoCdMDLhyXEUAj3zHkK_xxMQIKo,4501
354
- aip_agents/sentry/sentry.pyi,sha256=G9YgWGIqHskkfj9aXN-Y6RLe3tvDvYi_RSkW1Y_MFzE,1436
435
+ aip_agents/sentry/sentry.py,sha256=EBpHFzm_I--lZStmFuA2HQHXvJOEiYj2KG2t1LGn0Vc,5280
436
+ aip_agents/sentry/sentry.pyi,sha256=ikoJuMEAvg_DSHf_IvBxNEXxhdagmsN1CtqvsMGjfg0,1433
355
437
  aip_agents/storage/__init__.py,sha256=cN4L2whui-DOm81tsYV88Wx5g5-cUjeLVyp55RtbJJU,1219
356
438
  aip_agents/storage/__init__.pyi,sha256=wn8VuS7x4WSzKuV01WrjPkZfnh3GylNum9FlPiaSdsA,901
357
439
  aip_agents/storage/base.py,sha256=dijzGJJRHPEneV-6QRC_xm0CzgYuIyhmnWloJC8oIx0,2413
@@ -370,14 +452,18 @@ aip_agents/storage/providers/memory.py,sha256=81E9yT_oRkH7tMVr5azZv1oXIaeTzTAtTu
370
452
  aip_agents/storage/providers/memory.pyi,sha256=r0meeCsjKyE9FHJqCysfQ5ZH_FWRRv2SWg-NOHCUD-g,2109
371
453
  aip_agents/storage/providers/object_storage.py,sha256=Q268Sn8Y09gS-ilP6fe4CR0YIOvdbunh3V6SmuQsAVs,6413
372
454
  aip_agents/storage/providers/object_storage.pyi,sha256=nBIKJjUAWkIKhYhBFmFcypjoOieIYOghy55f62x7AX8,2878
373
- aip_agents/tools/__init__.py,sha256=e3hU4EDzhrEnvRjy_NrGzMFqMQAjI4za4GBV7QdgceU,1840
374
- aip_agents/tools/__init__.pyi,sha256=_7XYjGn393oG99dCAPQqYdy5GmnykPBBH6TJB6QM54c,783
375
- aip_agents/tools/bosa_tools.py,sha256=uhRImaIACt_Ol9nraUGr0ddT8e35c8doVzwlJV6kGeA,3411
376
- aip_agents/tools/bosa_tools.pyi,sha256=GpWQhkytk4XS_rKWGBiS70y5mXC8b-1GGCkN1BaE97s,1128
377
- aip_agents/tools/constants.py,sha256=pVmUJx8WN1gYtDT52B4FsetnaYZZWozKQQ7wW18xIHo,5274
378
- aip_agents/tools/constants.pyi,sha256=QucwMEKTXywF72m8ofImoswbj6zA-BsfP0tRaIy7A6Y,3393
379
- aip_agents/tools/memory_search_tool.py,sha256=gqTTb_Fao_Hl-SavfaFsqPDhnFQUjzIQUkzizSD2L0A,653
380
- aip_agents/tools/memory_search_tool.pyi,sha256=BCVFEEgH3pETnI9b6vRlMm2_PnnIeBe_vuMlL9y3LpU,453
455
+ aip_agents/tools/__init__.py,sha256=ullhWvRVtKYAEO5XhXn1sc1dT1LYDViSc23uqywUwyg,2228
456
+ aip_agents/tools/__init__.pyi,sha256=KmdVTX-WXRChSqCyGrAUoV8TwpUBXlo9ITgx4xpqYx8,1120
457
+ aip_agents/tools/constants.py,sha256=AabnuPQG_mc2sVdr9jV23_6bFempAsxQv3kdCR_ztLA,5723
458
+ aip_agents/tools/constants.pyi,sha256=kFY8dKgRqHKGvPqG3QUyuEc8C5yRaDj7DYQDH88K2T0,3552
459
+ aip_agents/tools/date_range_tool.py,sha256=t0vQqb0du1Q2n4q8V_-TPmfjSuwr4MYRMi6OpXMvVrw,22807
460
+ aip_agents/tools/date_range_tool.pyi,sha256=1Caen334PHliSJOmXpu94kIFP_PPOdOj3dhKqdfMe8o,570
461
+ aip_agents/tools/execute_ptc_code.py,sha256=e2-TAhsc0REK2bLJScCZfhZv9nkGYUPz8kShc0-6O-o,13399
462
+ aip_agents/tools/execute_ptc_code.pyi,sha256=aD7zbjZgLC4SnVuhSVgP3GMhHBvLpgGHQzJ6fxzbSho,4170
463
+ aip_agents/tools/gl_connector_tools.py,sha256=bxl_3VQYZDv3lFn6Y3kDVVRFwH4cntOLz3f74YzDcic,3936
464
+ aip_agents/tools/gl_connector_tools.pyi,sha256=2ATn_MW_FRg5Uv7dLI_ToBOtlgTSfj0zgDQpN1N-cJs,1366
465
+ aip_agents/tools/memory_search_tool.py,sha256=AOk9lySj6qR9e1uCrGd-DuGltosbKOx6eTZdQKxQbMY,863
466
+ aip_agents/tools/memory_search_tool.pyi,sha256=Kdo69aJYb0RmiO3udSXl3GZYzl32kBpQJAxV1fJQOSs,724
381
467
  aip_agents/tools/time_tool.py,sha256=NPjz73hy1SNc3okWhDXdR45q84vmRUerDGDk_E-XyZk,3732
382
468
  aip_agents/tools/time_tool.pyi,sha256=sF8INR8-VRmETquuQ6BIY0geEGXhMLzbcddpnMb0H7k,374
383
469
  aip_agents/tools/tool_config_injector.py,sha256=rk8uqwz-LUpZ_d0cUK0ywxnkzINfTPMN3GMxcKPLVjE,10559
@@ -386,7 +472,7 @@ aip_agents/tools/browser_use/__init__.py,sha256=_ZYoSads6DRHK9odnPfvEBRDAncIkkFU
386
472
  aip_agents/tools/browser_use/__init__.pyi,sha256=GSn1A8ZIN9ii9EcG6GDQ-qfIsflCTI-1g9eYeY7kWwQ,497
387
473
  aip_agents/tools/browser_use/action_parser.py,sha256=Vr5dmGB9vkgdgsqEtstNwv8qEhuuhzxg4UO62faD_lk,3366
388
474
  aip_agents/tools/browser_use/action_parser.pyi,sha256=Cwxu-BBw8hG5Njt6NbBR9spfiTxSQTKn3iduembRjz8,723
389
- aip_agents/tools/browser_use/browser_use_tool.py,sha256=YA2G_EJjrZ8z6clZyuc8Kwl7Gu-QdhtbDYBtAUJj2nM,44556
475
+ aip_agents/tools/browser_use/browser_use_tool.py,sha256=JlVCbjRBiu-smzjZW3GoKOigm11ZRXIEBHP_giRdL68,45042
390
476
  aip_agents/tools/browser_use/browser_use_tool.pyi,sha256=TIfACXGGQYTT2eLXPxGHj8ynOVEPqcucBbC2LdLqR9g,3257
391
477
  aip_agents/tools/browser_use/llm_config.py,sha256=SmSd4ka5mizgZqIQhMvQqaAjlCjJ5BIpBX1U4ujYFlQ,3700
392
478
  aip_agents/tools/browser_use/llm_config.pyi,sha256=LgS7R3dqaNFoUZqzYRFx58X8FZ1phXwQZ2HQmcZ4KrA,2115
@@ -400,7 +486,7 @@ aip_agents/tools/browser_use/session_errors.py,sha256=9zGUjp5g1eppnrzncTvPANG9XZ
400
486
  aip_agents/tools/browser_use/session_errors.pyi,sha256=eW8rP7w-05jqlhtEP44rVP3TwSbV91UYY8taBuJdc90,1792
401
487
  aip_agents/tools/browser_use/steel_session_recording.py,sha256=cppLBU2LEYaxGkih14GlBm2h68gToN1_6cWAg2SGjiM,11654
402
488
  aip_agents/tools/browser_use/steel_session_recording.pyi,sha256=igIh4IvMGf49WG6De01lxmgdf5uXuBAFT4jNnD1Krco,2169
403
- aip_agents/tools/browser_use/streaming.py,sha256=Caq5QrwxQK55ufq3c_zot5y_3XZDWASu4jLZEtt-E8I,27712
489
+ aip_agents/tools/browser_use/streaming.py,sha256=E-LuyGbDkhbF-oq0m2zCODBju6nZUFw9yhlncpoRJjA,27835
404
490
  aip_agents/tools/browser_use/streaming.pyi,sha256=9DVFCLoFz0ZIPh00OVVnMHgsqHzTBj9e0m6jSgLgdxQ,3192
405
491
  aip_agents/tools/browser_use/structured_data_parser.py,sha256=G48eKMfrDE1BP7V8lJogfKWo5vSq_gzbodYDpKAxDV8,8372
406
492
  aip_agents/tools/browser_use/structured_data_parser.pyi,sha256=LkzuOf6yNoIHZsjAdIsuklMdOB0tAxNZLMkuIw3d2Cw,3842
@@ -412,9 +498,9 @@ aip_agents/tools/code_sandbox/__init__.py,sha256=QPUBMzmSDGjvjnLRRJRHK7shP16LH6K
412
498
  aip_agents/tools/code_sandbox/__init__.pyi,sha256=hBgsW_ZdnGonBx7PtCwz3ohs8RuZcDpQMU6iK_VZIYg,134
413
499
  aip_agents/tools/code_sandbox/constant.py,sha256=55uM9sHOISdT40O3pVdLfL88YU-1Npy7CXkYxlLFzug,679
414
500
  aip_agents/tools/code_sandbox/constant.pyi,sha256=3bwRpYOZZNVYjBBvPXnTR_cq6dH-pALsy_5yCbxdPQU,81
415
- aip_agents/tools/code_sandbox/e2b_cloud_sandbox_extended.py,sha256=H91-1a3keS6Si5hLzQ7Z1tHM7ZWEv6p2fJQ6HSqttw0,9821
416
- aip_agents/tools/code_sandbox/e2b_cloud_sandbox_extended.pyi,sha256=ZnW7S-Wla5J-ZD8P92-sXuzTGZ2-z5zyv4aH97FlshI,3554
417
- aip_agents/tools/code_sandbox/e2b_sandbox_tool.py,sha256=sTFTQd9Li9lB2iXgsARfpJEfFz9O2_sdFYFh8gFvC6A,16954
501
+ aip_agents/tools/code_sandbox/e2b_cloud_sandbox_extended.py,sha256=78mrQ4Tfv0HQst92NugC2_ogw7LU0ubx8XKFAbW53vY,12013
502
+ aip_agents/tools/code_sandbox/e2b_cloud_sandbox_extended.pyi,sha256=W2NIk0b9dK-HTResYt1ppQdAcBLp2963D94XHX9hq6E,4366
503
+ aip_agents/tools/code_sandbox/e2b_sandbox_tool.py,sha256=TChVXscOR1WXmpjelwcZ_Ws4pYtuYhLALbvPXYz6iSU,16937
418
504
  aip_agents/tools/code_sandbox/e2b_sandbox_tool.pyi,sha256=ylrBQaqNBa1Jppld-mHjaskSa9SOjsQD8TdcK2bnl4s,1165
419
505
  aip_agents/tools/document_loader/__init__.py,sha256=rnQFLYJqvit5eegGIWGdjOUoEJiyOh3nW0mLSRd7xfE,1375
420
506
  aip_agents/tools/document_loader/__init__.pyi,sha256=RYZb-EdfR1btPxFBUwfmrOWs51aVgwJuw9epguxnVgQ,650
@@ -428,18 +514,18 @@ aip_agents/tools/document_loader/pdf_reader_tool.py,sha256=36U_r7E0n_nLl4xUXC4nD
428
514
  aip_agents/tools/document_loader/pdf_reader_tool.pyi,sha256=ZKr5E3ePTJWHdLfM3_7Ji9NGDpL29uKLFhLl-smZQqQ,494
429
515
  aip_agents/tools/document_loader/pdf_splitter.py,sha256=-QyrlnN4AXDqY_dxeUzxcgCVJJiD1vYUYR7swfhM_RQ,5752
430
516
  aip_agents/tools/document_loader/pdf_splitter.pyi,sha256=3IiRDQWDz8QR5LH_sni9O-N2qJFheFjKOQMAhiWxB7E,716
431
- aip_agents/tools/gl_connector/__init__.py,sha256=tpQ0vF7gMiyO32jTBndOAVor5MRDNff7yh_SC7Frv_U,136
517
+ aip_agents/tools/gl_connector/__init__.py,sha256=f8F4mdBFj0ulxewCQwG5qN2SDzlgI2jA0Kfj31A5iD0,137
432
518
  aip_agents/tools/gl_connector/__init__.pyi,sha256=96wtNkB3VUSI66aRlYxVrzMiPtqOYviRMKviRgX3_fc,113
433
- aip_agents/tools/gl_connector/tool.py,sha256=FaS8B6lJI4RuB5NoirqezIBQhsVb4ymUBvItJXtdWMc,11999
434
- aip_agents/tools/gl_connector/tool.pyi,sha256=u6GQCwxqFLVhZVYeTek6ExEvrhPTF7z1QCHcRtcgFqU,2746
435
- aip_agents/tools/memory_search/__init__.py,sha256=YSsObYlHjdZEbJj4MVYy3Ht8JPlo42YhjnkI-yFNWV0,608
436
- aip_agents/tools/memory_search/__init__.pyi,sha256=NG0g94OoC_xw66yIqiPViqTnpj01QdnRsVBGzkSxJFI,554
519
+ aip_agents/tools/gl_connector/tool.py,sha256=jzT8XmTfFQC9ZcQplVcRs2VmCtKewH9FzT7wSFtUJac,13106
520
+ aip_agents/tools/gl_connector/tool.pyi,sha256=a5l0MHSOe_iWDvjMRzYtcbMdX0bFlK1m7Hl52HQ__iQ,2770
521
+ aip_agents/tools/memory_search/__init__.py,sha256=LGVryzA5hiOGBPBdqQyAX34odd-2gZqKaKKxyWLAroc,814
522
+ aip_agents/tools/memory_search/__init__.pyi,sha256=T2ROZSTHZz3sL3QGbqVxHVqJLj9i017DIt5gk8haX30,825
437
523
  aip_agents/tools/memory_search/base.py,sha256=M4Vq5CnXge1rhVkESfVCAjyWEc6Ijmh8-6oAMkcZkjY,7333
438
524
  aip_agents/tools/memory_search/base.pyi,sha256=onVYE9m7WxUQ4qmW5Tj4xBLgFaBGcg8pJj-n6nR5FIw,3087
439
- aip_agents/tools/memory_search/mem0.py,sha256=mFtmdVULHQkMEPMjigdHgSM6PZKC2SAyvkBQHPyQxv0,9537
440
- aip_agents/tools/memory_search/mem0.pyi,sha256=YFIxvzoOEplbcKqVLddfA2FyjH2RNm6PqyzmYinnndY,896
441
- aip_agents/tools/memory_search/schema.py,sha256=Y01f-tVFOF_DibQRV-xYYd2rupeRV6vgXcvaVm2ZYnQ,1656
442
- aip_agents/tools/memory_search/schema.pyi,sha256=YkZgf0R9vtizEbjNy5WIS16M4pLWPW5MtHzMbScaiLc,435
525
+ aip_agents/tools/memory_search/mem0.py,sha256=GDHBloF5GyqV10y0yrXwIKp2gfQzk-hkd7gE4GvV1Qk,14043
526
+ aip_agents/tools/memory_search/mem0.pyi,sha256=Cg7EO70QIK8EwD4-nNARd7qp2izZiquxmhBIt5R6afg,1314
527
+ aip_agents/tools/memory_search/schema.py,sha256=7URsggujl5kw0d-1b71ymLzc9oZ_-xQGgkXuE1bXJow,2775
528
+ aip_agents/tools/memory_search/schema.pyi,sha256=qK_xhhSFo3ncVvybMXlAtUpg9XPydrB84-bsIzfLAzI,744
443
529
  aip_agents/tools/web_search/__init__.py,sha256=ZjklA94sIQoHDHhnsDoS-2z3eZJ3pc1rv7LQuTzG_6E,500
444
530
  aip_agents/tools/web_search/__init__.pyi,sha256=NROEUMdBJz0j7f29hut7DEJdiWNLWPXYjTNGO8U6hHA,121
445
531
  aip_agents/tools/web_search/serper_tool.py,sha256=quVR0sSsa5Utncq2diG-6sKGEzgdQggOSyc8qbLwK8M,6826
@@ -488,15 +574,15 @@ aip_agents/utils/langgraph/__init__.py,sha256=Yq0TjNfQ7MH-dUui1bAh7qDXlwmM9yKaS9
488
574
  aip_agents/utils/langgraph/__init__.pyi,sha256=lmnwf_rn6QU0UTOR8hjTUzgDRHu3Am-gY9xQF0qDlDg,613
489
575
  aip_agents/utils/langgraph/converter.py,sha256=71YDkd0Iovq5LaNZFBcxn-DNjX_rn_WGIcqmDHlHfGs,4920
490
576
  aip_agents/utils/langgraph/converter.pyi,sha256=zodI3N5ml95kVv5IVl6_4JzOLtPZyzse4DPsanGgqmI,1985
491
- aip_agents/utils/langgraph/tool_output_management.py,sha256=5Xdzmwx_opTog0UDKwr-8j1PkZlSem2-LV-niIxudlI,39230
492
- aip_agents/utils/langgraph/tool_output_management.pyi,sha256=cQKH4VWfVl9e1MaIlFh6NQ-nBZHoH6gkaW_bIkJ-NaI,12477
577
+ aip_agents/utils/langgraph/tool_output_management.py,sha256=9zWs22D-iewnPdSbyExAg4BkOce-MsRh8snkv1V7KmI,42069
578
+ aip_agents/utils/langgraph/tool_output_management.pyi,sha256=39bRf3zifQiC_KrA1LW6MuwJXt5CZp8grDJWdpBhGJM,13835
493
579
  aip_agents/utils/langgraph/tool_managers/__init__.py,sha256=CqHnUOLc3jvNR3vHjcdOH_BXXC-LRgJR3CoXBm5EcgA,687
494
580
  aip_agents/utils/langgraph/tool_managers/__init__.pyi,sha256=xPvWR1cPtgD0V6td69vjYcTL4w5IGTc65IUabV1cxBE,434
495
581
  aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.py,sha256=oiyjoKOIgkoFXI69AJje00ZVkeS5sojj1sIOWUtpiPI,3814
496
582
  aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.pyi,sha256=Zs3hEn_0CHCsi4bzBS_2iDMyWr1xGSbRl-u0JJbE67o,1399
497
583
  aip_agents/utils/langgraph/tool_managers/base_tool_manager.py,sha256=JkTik7JdUOXzWS3_iQhDJn0F3n0g-Jxgwz8GrUwLabk,2026
498
584
  aip_agents/utils/langgraph/tool_managers/base_tool_manager.pyi,sha256=G1WysOvmMv5iDPiwdKwa01w9bE5GMshuU_0xCALKQUQ,1511
499
- aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.py,sha256=WrVkGAVvQEiS3qEQPVFGrB4fimYn5yUVWsTFF2KM9tU,42984
585
+ aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.py,sha256=PX6PjWso0od6LSazni3CYLkXNi0IUQ0Sjkgr0orPi-A,44260
500
586
  aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.pyi,sha256=SNBefHy-ZWZqDKA_LjBzevZ6HICSvWa-Oj0garP-7XE,2934
501
587
  aip_agents/utils/metadata/__init__.py,sha256=Jw3eFe00C7ekeNyO_eJxM9jmVvjaBWccNyI6d2vbvKg,722
502
588
  aip_agents/utils/metadata/__init__.pyi,sha256=nHRkW-eLNS0XB-Vs0fFbNOHfoLQfKT8BSoapFK3IyZ0,629
@@ -540,7 +626,7 @@ aip_agents/utils/pii/pii_helper.py,sha256=g0yRzakfA2AA6vjUNLWHqFlcxyLql6MXQ90NN3
540
626
  aip_agents/utils/pii/pii_helper.pyi,sha256=dulZs150ikbAL3Bw2YLcz3_g4DsGmL3lciwf8mKxEjI,2939
541
627
  aip_agents/utils/pii/uuid_deanonymizer_mapping.py,sha256=Gks8l8t0cuS9pzoQnrpiK1CaLmWYksjOnTeiHh3_7EE,7348
542
628
  aip_agents/utils/pii/uuid_deanonymizer_mapping.pyi,sha256=gnWfD1rWZh_tloJjgKiZ6f6iNUuBaHpKqCSiP0d-9bs,3084
543
- aip_agents_binary-0.5.21.dist-info/METADATA,sha256=9Ta-eHHQSIDbLqofOHQfohKHsxxDakYIGyB2jChAuq8,22207
544
- aip_agents_binary-0.5.21.dist-info/WHEEL,sha256=PaP4PvkDyiSc4C6Dhw6ccQmfxsWFrSv-lJQjBshu0hw,105
545
- aip_agents_binary-0.5.21.dist-info/top_level.txt,sha256=PEz8vcwC1bH4UrkhF0LkIYCNfXGWZUHdSklbvkBe25E,11
546
- aip_agents_binary-0.5.21.dist-info/RECORD,,
629
+ aip_agents_binary-0.6.8.dist-info/METADATA,sha256=aNAMk-z2xPp3yYJP0KM_hxxQAQwVQ08ZaWDekANBgZ0,22194
630
+ aip_agents_binary-0.6.8.dist-info/WHEEL,sha256=KxCTaSkoYs_EnWvWxmau4HAvN-_rCRYV_bfRc_41A9k,106
631
+ aip_agents_binary-0.6.8.dist-info/top_level.txt,sha256=PEz8vcwC1bH4UrkhF0LkIYCNfXGWZUHdSklbvkBe25E,11
632
+ aip_agents_binary-0.6.8.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-macosx_13_0_arm64
5
5