aip-agents-binary 0.5.25__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 (109) hide show
  1. aip_agents/agent/__init__.py +44 -4
  2. aip_agents/agent/base_langgraph_agent.py +163 -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 +329 -22
  7. aip_agents/agent/langgraph_react_agent.pyi +41 -2
  8. aip_agents/examples/hello_world_ptc.py +49 -0
  9. aip_agents/examples/hello_world_ptc.pyi +5 -0
  10. aip_agents/examples/hello_world_ptc_custom_tools.py +83 -0
  11. aip_agents/examples/hello_world_ptc_custom_tools.pyi +7 -0
  12. aip_agents/examples/hello_world_tool_output_client.py +9 -0
  13. aip_agents/examples/tools/multiply_tool.py +43 -0
  14. aip_agents/examples/tools/multiply_tool.pyi +18 -0
  15. aip_agents/guardrails/engines/base.py +6 -6
  16. aip_agents/mcp/client/__init__.py +38 -2
  17. aip_agents/mcp/client/connection_manager.py +36 -1
  18. aip_agents/mcp/client/connection_manager.pyi +3 -0
  19. aip_agents/mcp/client/persistent_session.py +318 -68
  20. aip_agents/mcp/client/persistent_session.pyi +9 -0
  21. aip_agents/mcp/client/transports.py +37 -2
  22. aip_agents/mcp/client/transports.pyi +9 -0
  23. aip_agents/memory/adapters/base_adapter.py +98 -0
  24. aip_agents/memory/adapters/base_adapter.pyi +25 -0
  25. aip_agents/ptc/__init__.py +87 -0
  26. aip_agents/ptc/__init__.pyi +14 -0
  27. aip_agents/ptc/custom_tools.py +473 -0
  28. aip_agents/ptc/custom_tools.pyi +184 -0
  29. aip_agents/ptc/custom_tools_payload.py +400 -0
  30. aip_agents/ptc/custom_tools_payload.pyi +31 -0
  31. aip_agents/ptc/custom_tools_templates/__init__.py +1 -0
  32. aip_agents/ptc/custom_tools_templates/__init__.pyi +0 -0
  33. aip_agents/ptc/custom_tools_templates/custom_build_function.py.template +23 -0
  34. aip_agents/ptc/custom_tools_templates/custom_init.py.template +15 -0
  35. aip_agents/ptc/custom_tools_templates/custom_invoke.py.template +60 -0
  36. aip_agents/ptc/custom_tools_templates/custom_registry.py.template +87 -0
  37. aip_agents/ptc/custom_tools_templates/custom_sources_init.py.template +7 -0
  38. aip_agents/ptc/custom_tools_templates/custom_wrapper.py.template +19 -0
  39. aip_agents/ptc/doc_gen.py +122 -0
  40. aip_agents/ptc/doc_gen.pyi +40 -0
  41. aip_agents/ptc/exceptions.py +57 -0
  42. aip_agents/ptc/exceptions.pyi +37 -0
  43. aip_agents/ptc/executor.py +261 -0
  44. aip_agents/ptc/executor.pyi +99 -0
  45. aip_agents/ptc/mcp/__init__.py +45 -0
  46. aip_agents/ptc/mcp/__init__.pyi +7 -0
  47. aip_agents/ptc/mcp/sandbox_bridge.py +668 -0
  48. aip_agents/ptc/mcp/sandbox_bridge.pyi +47 -0
  49. aip_agents/ptc/mcp/templates/__init__.py +1 -0
  50. aip_agents/ptc/mcp/templates/__init__.pyi +0 -0
  51. aip_agents/ptc/mcp/templates/mcp_client.py.template +239 -0
  52. aip_agents/ptc/naming.py +196 -0
  53. aip_agents/ptc/naming.pyi +85 -0
  54. aip_agents/ptc/payload.py +26 -0
  55. aip_agents/ptc/payload.pyi +15 -0
  56. aip_agents/ptc/prompt_builder.py +673 -0
  57. aip_agents/ptc/prompt_builder.pyi +59 -0
  58. aip_agents/ptc/ptc_helper.py +16 -0
  59. aip_agents/ptc/ptc_helper.pyi +1 -0
  60. aip_agents/ptc/sandbox_bridge.py +256 -0
  61. aip_agents/ptc/sandbox_bridge.pyi +38 -0
  62. aip_agents/ptc/template_utils.py +33 -0
  63. aip_agents/ptc/template_utils.pyi +13 -0
  64. aip_agents/ptc/templates/__init__.py +1 -0
  65. aip_agents/ptc/templates/__init__.pyi +0 -0
  66. aip_agents/ptc/templates/ptc_helper.py.template +134 -0
  67. aip_agents/ptc/tool_def_helpers.py +101 -0
  68. aip_agents/ptc/tool_def_helpers.pyi +38 -0
  69. aip_agents/ptc/tool_enrichment.py +163 -0
  70. aip_agents/ptc/tool_enrichment.pyi +60 -0
  71. aip_agents/sandbox/__init__.py +43 -0
  72. aip_agents/sandbox/__init__.pyi +5 -0
  73. aip_agents/sandbox/defaults.py +205 -0
  74. aip_agents/sandbox/defaults.pyi +30 -0
  75. aip_agents/sandbox/e2b_runtime.py +295 -0
  76. aip_agents/sandbox/e2b_runtime.pyi +57 -0
  77. aip_agents/sandbox/template_builder.py +131 -0
  78. aip_agents/sandbox/template_builder.pyi +36 -0
  79. aip_agents/sandbox/types.py +24 -0
  80. aip_agents/sandbox/types.pyi +14 -0
  81. aip_agents/sandbox/validation.py +50 -0
  82. aip_agents/sandbox/validation.pyi +20 -0
  83. aip_agents/sentry/sentry.py +29 -8
  84. aip_agents/sentry/sentry.pyi +3 -2
  85. aip_agents/tools/__init__.py +13 -2
  86. aip_agents/tools/__init__.pyi +3 -1
  87. aip_agents/tools/browser_use/browser_use_tool.py +8 -0
  88. aip_agents/tools/browser_use/streaming.py +2 -0
  89. aip_agents/tools/date_range_tool.py +554 -0
  90. aip_agents/tools/date_range_tool.pyi +21 -0
  91. aip_agents/tools/execute_ptc_code.py +357 -0
  92. aip_agents/tools/execute_ptc_code.pyi +90 -0
  93. aip_agents/tools/memory_search/__init__.py +8 -1
  94. aip_agents/tools/memory_search/__init__.pyi +3 -3
  95. aip_agents/tools/memory_search/mem0.py +114 -1
  96. aip_agents/tools/memory_search/mem0.pyi +11 -1
  97. aip_agents/tools/memory_search/schema.py +33 -0
  98. aip_agents/tools/memory_search/schema.pyi +10 -0
  99. aip_agents/tools/memory_search_tool.py +8 -0
  100. aip_agents/tools/memory_search_tool.pyi +2 -2
  101. aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.py +26 -1
  102. aip_agents/utils/langgraph/tool_output_management.py +80 -0
  103. aip_agents/utils/langgraph/tool_output_management.pyi +37 -0
  104. {aip_agents_binary-0.5.25.dist-info → aip_agents_binary-0.6.8.dist-info}/METADATA +9 -19
  105. {aip_agents_binary-0.5.25.dist-info → aip_agents_binary-0.6.8.dist-info}/RECORD +107 -41
  106. {aip_agents_binary-0.5.25.dist-info → aip_agents_binary-0.6.8.dist-info}/WHEEL +1 -1
  107. aip_agents/examples/demo_memory_recall.py +0 -401
  108. aip_agents/examples/demo_memory_recall.pyi +0 -58
  109. {aip_agents_binary-0.5.25.dist-info → aip_agents_binary-0.6.8.dist-info}/top_level.txt +0 -0
@@ -13,3 +13,13 @@ class LongTermMemorySearchInput(BaseModel):
13
13
  limit: int | None
14
14
  categories: list[str] | None
15
15
  metadata: dict[str, Any] | None
16
+
17
+ class LongTermMemoryDeleteInput(BaseModel):
18
+ """Input schema for unified long-term memory deletion."""
19
+ query: str | None
20
+ memory_ids: list[str] | None
21
+ delete_all: bool | None
22
+ top_k: int | None
23
+ threshold: float | None
24
+ categories: list[str] | None
25
+ metadata: dict[str, Any] | None
@@ -8,9 +8,13 @@ Authors:
8
8
  """
9
9
 
10
10
  from aip_agents.tools.memory_search import (
11
+ MEMORY_DELETE_TOOL_NAME,
11
12
  MEMORY_SEARCH_TOOL_NAME,
13
+ LongTermMemoryDeleteInput,
12
14
  LongTermMemorySearchInput,
13
15
  LongTermMemorySearchTool,
16
+ Mem0DeleteInput,
17
+ Mem0DeleteTool,
14
18
  Mem0SearchInput,
15
19
  Mem0SearchTool,
16
20
  MemoryConfig,
@@ -18,9 +22,13 @@ from aip_agents.tools.memory_search import (
18
22
 
19
23
  __all__ = [
20
24
  "MemoryConfig",
25
+ "LongTermMemoryDeleteInput",
21
26
  "LongTermMemorySearchInput",
22
27
  "LongTermMemorySearchTool",
28
+ "Mem0DeleteInput",
29
+ "Mem0DeleteTool",
23
30
  "Mem0SearchInput",
24
31
  "Mem0SearchTool",
32
+ "MEMORY_DELETE_TOOL_NAME",
25
33
  "MEMORY_SEARCH_TOOL_NAME",
26
34
  ]
@@ -1,3 +1,3 @@
1
- from aip_agents.tools.memory_search import LongTermMemorySearchInput as LongTermMemorySearchInput, LongTermMemorySearchTool as LongTermMemorySearchTool, MEMORY_SEARCH_TOOL_NAME as MEMORY_SEARCH_TOOL_NAME, Mem0SearchInput as Mem0SearchInput, Mem0SearchTool as Mem0SearchTool, MemoryConfig as MemoryConfig
1
+ from aip_agents.tools.memory_search import LongTermMemoryDeleteInput as LongTermMemoryDeleteInput, LongTermMemorySearchInput as LongTermMemorySearchInput, LongTermMemorySearchTool as LongTermMemorySearchTool, MEMORY_DELETE_TOOL_NAME as MEMORY_DELETE_TOOL_NAME, MEMORY_SEARCH_TOOL_NAME as MEMORY_SEARCH_TOOL_NAME, Mem0DeleteInput as Mem0DeleteInput, Mem0DeleteTool as Mem0DeleteTool, Mem0SearchInput as Mem0SearchInput, Mem0SearchTool as Mem0SearchTool, MemoryConfig as MemoryConfig
2
2
 
3
- __all__ = ['MemoryConfig', 'LongTermMemorySearchInput', 'LongTermMemorySearchTool', 'Mem0SearchInput', 'Mem0SearchTool', 'MEMORY_SEARCH_TOOL_NAME']
3
+ __all__ = ['MemoryConfig', 'LongTermMemoryDeleteInput', 'LongTermMemorySearchInput', 'LongTermMemorySearchTool', 'Mem0DeleteInput', 'Mem0DeleteTool', 'Mem0SearchInput', 'Mem0SearchTool', 'MEMORY_DELETE_TOOL_NAME', 'MEMORY_SEARCH_TOOL_NAME']
@@ -134,7 +134,19 @@ class DelegationToolManager(BaseLangGraphToolManager):
134
134
  Returns:
135
135
  The result from the delegated agent, including artifacts if any.
136
136
  """
137
- writer: StreamWriter = get_stream_writer()
137
+ try:
138
+ writer: StreamWriter = get_stream_writer()
139
+ except Exception as exc:
140
+ logger.warning(
141
+ "DelegationToolManager: Stream writer unavailable; delegation streaming disabled.",
142
+ extra={"error": str(exc), "error_type": type(exc).__name__},
143
+ )
144
+
145
+ def _noop_writer(_: Any) -> None:
146
+ """No-op writer for non-graph execution contexts."""
147
+ return None
148
+
149
+ writer = _noop_writer
138
150
 
139
151
  try:
140
152
  # Check delegation depth limit before executing
@@ -295,6 +307,19 @@ class DelegationToolManager(BaseLangGraphToolManager):
295
307
  cfg_conf = cfg.get("configurable") if isinstance(cfg, dict) else None
296
308
  if isinstance(cfg_conf, dict):
297
309
  parent_step_id = cfg_conf.get("parent_step_id")
310
+ if not parent_step_id:
311
+ metadata = cfg.get("metadata") or {}
312
+ tool_call_id = (
313
+ cfg_conf.get("tool_call_id")
314
+ or metadata.get("tool_call_id")
315
+ or metadata.get("id")
316
+ or (metadata.get("tool_call") or {}).get("id")
317
+ )
318
+ if tool_call_id and self.parent_agent is not None:
319
+ thread_key = getattr(self.parent_agent, "thread_id_key", "thread_id")
320
+ thread_id = cfg_conf.get(thread_key)
321
+ parent_map = self.parent_agent._tool_parent_map_by_thread.get(str(thread_id), {})
322
+ parent_step_id = parent_map.get(str(tool_call_id))
298
323
  _DELEGATION_PARENT_STEP_ID_CVAR.set(parent_step_id)
299
324
  except Exception:
300
325
  _DELEGATION_PARENT_STEP_ID_CVAR.set(None)
@@ -471,6 +471,86 @@ class ToolOutputManager:
471
471
  """
472
472
  return self._generate_json_summary(thread_id, max_entries)
473
473
 
474
+ def get_latest_reference(self, thread_id: str) -> str | None:
475
+ """Return the most recent tool output reference for a thread.
476
+
477
+ Args:
478
+ thread_id: Thread ID to retrieve the latest output reference for.
479
+
480
+ Returns:
481
+ Latest tool output reference string or None when unavailable.
482
+ """
483
+ try:
484
+ summary = json.loads(self.generate_summary(thread_id, max_entries=1))
485
+ except Exception as exc:
486
+ logger.debug("Failed to parse tool output summary: %s", exc)
487
+ return None
488
+
489
+ if not summary:
490
+ return None
491
+ latest = summary[0].get("reference")
492
+ return latest if isinstance(latest, str) and latest else None
493
+
494
+ def has_reference(self, value: Any) -> bool:
495
+ """Check whether a value contains a tool output reference.
496
+
497
+ Args:
498
+ value: Value to inspect for tool output references.
499
+
500
+ Returns:
501
+ True if any tool output reference is present.
502
+ """
503
+ if isinstance(value, str):
504
+ return value.startswith(TOOL_OUTPUT_REFERENCE_PREFIX)
505
+ if isinstance(value, dict):
506
+ return any(self.has_reference(item) for item in value.values())
507
+ if isinstance(value, list):
508
+ return any(self.has_reference(item) for item in value)
509
+ return False
510
+
511
+ def should_replace_with_reference(self, value: Any) -> bool:
512
+ """Check whether a tool argument value should use a tool output reference.
513
+
514
+ Args:
515
+ value: Value to evaluate for replacement.
516
+
517
+ Returns:
518
+ True if the value should be replaced with a reference.
519
+ """
520
+ if isinstance(value, dict | list | tuple):
521
+ return True
522
+ if isinstance(value, str):
523
+ return len(value) > DATA_PREVIEW_TRUNCATION_LENGTH
524
+ return False
525
+
526
+ def rewrite_args_with_latest_reference(self, args: dict[str, Any], thread_id: str) -> dict[str, Any]:
527
+ """Rewrite tool args to use the latest tool output reference when appropriate.
528
+
529
+ Args:
530
+ args: Tool arguments to rewrite.
531
+ thread_id: Thread ID used for resolving stored outputs.
532
+
533
+ Returns:
534
+ Updated args dictionary with references substituted when needed.
535
+ """
536
+ if not self.has_outputs(thread_id):
537
+ return args
538
+ if self.has_reference(args):
539
+ return args
540
+
541
+ latest_reference = self.get_latest_reference(thread_id)
542
+ if not latest_reference:
543
+ return args
544
+
545
+ updated_args = dict(args)
546
+ replaced_any = False
547
+ for key, value in args.items():
548
+ if self.should_replace_with_reference(value):
549
+ updated_args[key] = latest_reference
550
+ replaced_any = True
551
+
552
+ return updated_args if replaced_any else args
553
+
474
554
  def _generate_json_summary(self, thread_id: str, max_entries: int) -> str:
475
555
  """Generate simplified JSON summary optimized for LLM prompts.
476
556
 
@@ -232,6 +232,43 @@ class ToolOutputManager:
232
232
  A JSON string containing structured data about tool outputs. Always returns
233
233
  valid JSON, even when no outputs are stored (empty entries list).
234
234
  """
235
+ def get_latest_reference(self, thread_id: str) -> str | None:
236
+ """Return the most recent tool output reference for a thread.
237
+
238
+ Args:
239
+ thread_id: Thread ID to retrieve the latest output reference for.
240
+
241
+ Returns:
242
+ Latest tool output reference string or None when unavailable.
243
+ """
244
+ def has_reference(self, value: Any) -> bool:
245
+ """Check whether a value contains a tool output reference.
246
+
247
+ Args:
248
+ value: Value to inspect for tool output references.
249
+
250
+ Returns:
251
+ True if any tool output reference is present.
252
+ """
253
+ def should_replace_with_reference(self, value: Any) -> bool:
254
+ """Check whether a tool argument value should use a tool output reference.
255
+
256
+ Args:
257
+ value: Value to evaluate for replacement.
258
+
259
+ Returns:
260
+ True if the value should be replaced with a reference.
261
+ """
262
+ def rewrite_args_with_latest_reference(self, args: dict[str, Any], thread_id: str) -> dict[str, Any]:
263
+ """Rewrite tool args to use the latest tool output reference when appropriate.
264
+
265
+ Args:
266
+ args: Tool arguments to rewrite.
267
+ thread_id: Thread ID used for resolving stored outputs.
268
+
269
+ Returns:
270
+ Updated args dictionary with references substituted when needed.
271
+ """
235
272
  def clear_all(self) -> None:
236
273
  """Clear all stored outputs from both metadata and storage.
237
274
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aip-agents-binary
3
- Version: 0.5.25
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
@@ -21,9 +21,10 @@ 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
@@ -36,7 +37,7 @@ Requires-Dist: gllm-guardrail-binary<0.1.0,>=0.0.1; extra == "guardrails"
36
37
  Provides-Extra: gl-connector
37
38
  Requires-Dist: bosa-connectors-binary<0.4.0,>=0.3.1; extra == "gl-connector"
38
39
  Provides-Extra: local
39
- Requires-Dist: e2b<3.0.0,>=2.3.0; extra == "local"
40
+ Requires-Dist: e2b<3.0.0,>=2.13.0; extra == "local"
40
41
  Requires-Dist: browser-use==0.5.9; extra == "local"
41
42
  Requires-Dist: steel-sdk>=0.7.0; extra == "local"
42
43
  Requires-Dist: json-repair>=0.52.3; extra == "local"
@@ -48,9 +49,10 @@ Requires-Dist: bosa-connectors-binary<0.4.0,>=0.3.1; extra == "local"
48
49
  Provides-Extra: dev
49
50
  Requires-Dist: coverage<8.0.0,>=7.4.4; extra == "dev"
50
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"
51
53
  Requires-Dist: pre-commit<4.0.0,>=3.7.0; extra == "dev"
52
54
  Requires-Dist: pytest<9.0.0,>=8.1.1; extra == "dev"
53
- 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"
54
56
  Requires-Dist: pytest-cov<6.0.0,>=5.0.0; extra == "dev"
55
57
  Requires-Dist: pytest-xdist>=3.8.0; extra == "dev"
56
58
  Requires-Dist: ruff<0.7.0,>=0.6.7; extra == "dev"
@@ -474,26 +476,14 @@ The library supports Mem0 as a memory backend for long-term conversation recall.
474
476
  - Date range parsing for natural language time filters using `dateparser`.
475
477
  - Conditional auto-augmentation (disabled by default to reduce noise; enable with `memory_auto_augment=True`).
476
478
 
477
- #### Mem0 Date Recall Example
479
+ #### Mem0 Integration Tests
478
480
 
479
- Use the coordinator example with memory enabled:
481
+ Use the Mem0 integration tests to validate memory persistence, recall, and deletion:
480
482
 
481
483
  ```bash
482
- 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
483
485
  ```
484
486
 
485
- In client:
486
- ```python
487
- agent = LangGraphAgent(
488
- name="client",
489
- instruction="...",
490
- model="gpt-4o-mini",
491
- memory_backend="mem0",
492
- )
493
- ```
494
-
495
- Test recall: After some interactions, query "What did we discuss yesterday?" – agent uses tool to filter by created_at.
496
-
497
487
  ## Deep Agents Middleware
498
488
 
499
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=88EUgf4i0OTO7lNqY6-yBUoEe-wfnFhPXfp80B5tibY,120026
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=p_p4VccXagntQ6-83uBor4NPTvs0LydYB4qiIVUcRbs,106298
38
- aip_agents/agent/langgraph_react_agent.pyi,sha256=z9qvkaDZZO0oSqX-2O_cacuXEtMSGY8bbcI4PAN6gUg,8356
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
@@ -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
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
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
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
@@ -294,7 +298,7 @@ aip_agents/guardrails/utils.py,sha256=JzLa0IsDSRCQ4UjX4yILQcp9N2yZFhL7bhqAExOznx
294
298
  aip_agents/guardrails/utils.pyi,sha256=xpA-ON4Sf2vhobNSjpLHutHClIv5NQzjmmP8b93vWfY,690
295
299
  aip_agents/guardrails/engines/__init__.py,sha256=ms45MKhUEYPqXUf3SMSNpW6wazL9ZGVWznqRXDC3ER4,2170
296
300
  aip_agents/guardrails/engines/__init__.pyi,sha256=wDdok30WGjpFQuGnHE75Ddw6JmcF_9Ux0k0kBH-3Nzc,248
297
- aip_agents/guardrails/engines/base.py,sha256=5X-aixXjr5wm4jzgT8BO4OTYbX8x09PLp6R_eQwYBK4,2623
301
+ aip_agents/guardrails/engines/base.py,sha256=Ytkrhpr04tqcP1Ze5WX4cnjcy9nfheU610FjYoQFSdQ,2743
298
302
  aip_agents/guardrails/engines/base.pyi,sha256=BasnK5yWrAIDnGomqfaU9MlaJ_qj7LILO4U1_9miUxA,2236
299
303
  aip_agents/guardrails/engines/nemo.py,sha256=Qs2JX-1SVTrWvtrLH3wDezOSZsOdQYjwCvBC8PxbSZ4,3801
300
304
  aip_agents/guardrails/engines/nemo.pyi,sha256=wUGT1Q7WzGw4XPDLfIW4YQODAEzvEjP3fNCA2mBKWps,1981
@@ -302,18 +306,18 @@ aip_agents/guardrails/engines/phrase_matcher.py,sha256=4rilmNkZ3OCeUC6YhMVRT_UJe
302
306
  aip_agents/guardrails/engines/phrase_matcher.pyi,sha256=Gk978fctlBNoyoxtjIIQTwcoBC6pzb0DVP7LTHeKQfc,2060
303
307
  aip_agents/mcp/__init__.py,sha256=CCc2mHoabzEFzQyjEW4ULKglEGtR_BGgBZNix8QjWjU,60
304
308
  aip_agents/mcp/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- aip_agents/mcp/client/__init__.py,sha256=85jA6v-bjjm13kCqnu57__fIprCAk5fC628API9h6uc,493
309
+ aip_agents/mcp/client/__init__.py,sha256=tA-LtCpvTL_OM0nzLLCm7uOxb46xMz4cuN_xBZojPmw,1430
306
310
  aip_agents/mcp/client/__init__.pyi,sha256=XgIkFbbmAh5cqQM4t1xT5y-Avu0vf4b-YCn6btXjIK8,339
307
311
  aip_agents/mcp/client/base_mcp_client.py,sha256=36bY_4BbzVBogDekwBOCL3A12MuXmKiNTpbxQjBgjlM,13973
308
312
  aip_agents/mcp/client/base_mcp_client.pyi,sha256=FuJBA4TLFPBJzuHqpxMGOlODgMpT7avOoAR34TsiQAk,5881
309
- aip_agents/mcp/client/connection_manager.py,sha256=4dgwgZISkjevHTMH2E8aqLRwsybUKMP3IHxf1GKvCts,7487
310
- aip_agents/mcp/client/connection_manager.pyi,sha256=voj-rqqiZvSFYY7Z-X991xZlcFOMxsf1QDhuWMUaIvs,1772
311
- aip_agents/mcp/client/persistent_session.py,sha256=fPCbtWaF74pGzDCm3FEb1W_pKIdZHXmfsIuls3Ns8R0,14411
312
- 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
313
317
  aip_agents/mcp/client/session_pool.py,sha256=_J8WduSo3HAfhE5n4u67IQQ71m_L2aPUY1NOgX5e7yA,12617
314
318
  aip_agents/mcp/client/session_pool.pyi,sha256=RtzN-5QDLS5MFAlnR5TiarY1xW4xo780n7lQL0sQbRU,3579
315
- aip_agents/mcp/client/transports.py,sha256=i7cJ1_vUUrE4yVTq-nFf0AnfKv0j9k1d8EcVZBykTUI,8624
316
- 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
317
321
  aip_agents/mcp/client/google_adk/__init__.py,sha256=ZJZE7IusoWFzEwaWsHOk-8VMdR-LUmWacepw_HHuOlI,280
318
322
  aip_agents/mcp/client/google_adk/__init__.pyi,sha256=TAbiDbysxbCtHQSASGdko6JIaZEnPbCmUqt4Jf966cs,127
319
323
  aip_agents/mcp/client/google_adk/client.py,sha256=WAbUho8Et7XZ1RWu0ug1-61--kdUVH0wvpzDddT7cv8,15980
@@ -340,8 +344,8 @@ aip_agents/memory/simple_memory.py,sha256=CpLr7mI_LyurFR6LHqFWXABxGP2Q0ef2GxZyGT
340
344
  aip_agents/memory/simple_memory.pyi,sha256=E-UJ-pqDOpHqMozwf5M3yHuim_46vzHmUwf_SthHIb4,1126
341
345
  aip_agents/memory/adapters/__init__.py,sha256=j-loIdfx_2K4JsjjolEeUrINgwogOOs_jm5pQlhZzac,279
342
346
  aip_agents/memory/adapters/__init__.pyi,sha256=KDmdDvG1tcfEQJ8c5_i9q3m74LPTlGsyTTY7b6n5nno,207
343
- aip_agents/memory/adapters/base_adapter.py,sha256=lYgOp04ONEx1upszXU7y181Q8p4imb9m6ctsoSCwXg0,25515
344
- 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
345
349
  aip_agents/memory/adapters/mem0.py,sha256=wWRUlCusOpMMayj4Uw8nYiAuI4TKxaKXqaTTerzXDL4,2955
346
350
  aip_agents/memory/adapters/mem0.pyi,sha256=C8hVoXKmk2J62Lns-OdafTiEEFEcH-SJn-bF3ATHx7s,1093
347
351
  aip_agents/middleware/__init__.py,sha256=ggAQsp9G0jNsrQ59unPrv6K8Bapi-WvLMwnI84Tt_Dg,485
@@ -352,6 +356,64 @@ aip_agents/middleware/manager.py,sha256=dlFhWC8fmKzbL6KIioeBv6cO8TSNfwmSYbciTxGN
352
356
  aip_agents/middleware/manager.pyi,sha256=a-OJeUVP6pIVvG9p8nyIC3oCOWfPVqH1EGykUeePXAs,3577
353
357
  aip_agents/middleware/todolist.py,sha256=BwElJRwn_hG-EC6YJOiaCG3zbAab03e0HkIbHv4LSik,10514
354
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
355
417
  aip_agents/schema/__init__.py,sha256=eQdptrXX7Rxo0xAJ1tXfoPhIaFoVQTDvrRAJAF3SjSM,1698
356
418
  aip_agents/schema/__init__.pyi,sha256=kho3g8pKCp1FBZ5SwyK3Vom5rSEgHJ4rYv81QIX3bGg,1908
357
419
  aip_agents/schema/a2a.py,sha256=04WVxpFjVuiQc2-w3m3TLO3h3NuApVuFrzJQq5casU4,1368
@@ -370,8 +432,8 @@ aip_agents/schema/storage.py,sha256=Tl0RFT32GWdsc5y8bTvpWMOU8hmQxXIlrMub3qdwx8Y,
370
432
  aip_agents/schema/storage.pyi,sha256=exaZAS49PYSuhYSPYukIRCRHIGRyCpBGucrdpnhV4zE,557
371
433
  aip_agents/sentry/__init__.py,sha256=l3nI-3pjBNNmcOZ7xPeIis1n_wkPpvnk2aHxQYWsflU,261
372
434
  aip_agents/sentry/__init__.pyi,sha256=OGxzQzEvbnqf02zXdBJUrHeKfjfBgvnOL7p-0gNvP8k,103
373
- aip_agents/sentry/sentry.py,sha256=zyhIZCnA2mcLuf5w-ezE_7ZWOjPdGt3A5g7AcJrPgxY,4504
374
- aip_agents/sentry/sentry.pyi,sha256=fTFb71FfeByBUIACjkp8qaHsWe6C52Y4tPTfizAPVv0,1432
435
+ aip_agents/sentry/sentry.py,sha256=EBpHFzm_I--lZStmFuA2HQHXvJOEiYj2KG2t1LGn0Vc,5280
436
+ aip_agents/sentry/sentry.pyi,sha256=ikoJuMEAvg_DSHf_IvBxNEXxhdagmsN1CtqvsMGjfg0,1433
375
437
  aip_agents/storage/__init__.py,sha256=cN4L2whui-DOm81tsYV88Wx5g5-cUjeLVyp55RtbJJU,1219
376
438
  aip_agents/storage/__init__.pyi,sha256=wn8VuS7x4WSzKuV01WrjPkZfnh3GylNum9FlPiaSdsA,901
377
439
  aip_agents/storage/base.py,sha256=dijzGJJRHPEneV-6QRC_xm0CzgYuIyhmnWloJC8oIx0,2413
@@ -390,14 +452,18 @@ aip_agents/storage/providers/memory.py,sha256=81E9yT_oRkH7tMVr5azZv1oXIaeTzTAtTu
390
452
  aip_agents/storage/providers/memory.pyi,sha256=r0meeCsjKyE9FHJqCysfQ5ZH_FWRRv2SWg-NOHCUD-g,2109
391
453
  aip_agents/storage/providers/object_storage.py,sha256=Q268Sn8Y09gS-ilP6fe4CR0YIOvdbunh3V6SmuQsAVs,6413
392
454
  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
455
+ aip_agents/tools/__init__.py,sha256=ullhWvRVtKYAEO5XhXn1sc1dT1LYDViSc23uqywUwyg,2228
456
+ aip_agents/tools/__init__.pyi,sha256=KmdVTX-WXRChSqCyGrAUoV8TwpUBXlo9ITgx4xpqYx8,1120
395
457
  aip_agents/tools/constants.py,sha256=AabnuPQG_mc2sVdr9jV23_6bFempAsxQv3kdCR_ztLA,5723
396
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
397
463
  aip_agents/tools/gl_connector_tools.py,sha256=bxl_3VQYZDv3lFn6Y3kDVVRFwH4cntOLz3f74YzDcic,3936
398
464
  aip_agents/tools/gl_connector_tools.pyi,sha256=2ATn_MW_FRg5Uv7dLI_ToBOtlgTSfj0zgDQpN1N-cJs,1366
399
- aip_agents/tools/memory_search_tool.py,sha256=gqTTb_Fao_Hl-SavfaFsqPDhnFQUjzIQUkzizSD2L0A,653
400
- aip_agents/tools/memory_search_tool.pyi,sha256=BCVFEEgH3pETnI9b6vRlMm2_PnnIeBe_vuMlL9y3LpU,453
465
+ aip_agents/tools/memory_search_tool.py,sha256=AOk9lySj6qR9e1uCrGd-DuGltosbKOx6eTZdQKxQbMY,863
466
+ aip_agents/tools/memory_search_tool.pyi,sha256=Kdo69aJYb0RmiO3udSXl3GZYzl32kBpQJAxV1fJQOSs,724
401
467
  aip_agents/tools/time_tool.py,sha256=NPjz73hy1SNc3okWhDXdR45q84vmRUerDGDk_E-XyZk,3732
402
468
  aip_agents/tools/time_tool.pyi,sha256=sF8INR8-VRmETquuQ6BIY0geEGXhMLzbcddpnMb0H7k,374
403
469
  aip_agents/tools/tool_config_injector.py,sha256=rk8uqwz-LUpZ_d0cUK0ywxnkzINfTPMN3GMxcKPLVjE,10559
@@ -406,7 +472,7 @@ aip_agents/tools/browser_use/__init__.py,sha256=_ZYoSads6DRHK9odnPfvEBRDAncIkkFU
406
472
  aip_agents/tools/browser_use/__init__.pyi,sha256=GSn1A8ZIN9ii9EcG6GDQ-qfIsflCTI-1g9eYeY7kWwQ,497
407
473
  aip_agents/tools/browser_use/action_parser.py,sha256=Vr5dmGB9vkgdgsqEtstNwv8qEhuuhzxg4UO62faD_lk,3366
408
474
  aip_agents/tools/browser_use/action_parser.pyi,sha256=Cwxu-BBw8hG5Njt6NbBR9spfiTxSQTKn3iduembRjz8,723
409
- 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
410
476
  aip_agents/tools/browser_use/browser_use_tool.pyi,sha256=TIfACXGGQYTT2eLXPxGHj8ynOVEPqcucBbC2LdLqR9g,3257
411
477
  aip_agents/tools/browser_use/llm_config.py,sha256=SmSd4ka5mizgZqIQhMvQqaAjlCjJ5BIpBX1U4ujYFlQ,3700
412
478
  aip_agents/tools/browser_use/llm_config.pyi,sha256=LgS7R3dqaNFoUZqzYRFx58X8FZ1phXwQZ2HQmcZ4KrA,2115
@@ -420,7 +486,7 @@ aip_agents/tools/browser_use/session_errors.py,sha256=9zGUjp5g1eppnrzncTvPANG9XZ
420
486
  aip_agents/tools/browser_use/session_errors.pyi,sha256=eW8rP7w-05jqlhtEP44rVP3TwSbV91UYY8taBuJdc90,1792
421
487
  aip_agents/tools/browser_use/steel_session_recording.py,sha256=cppLBU2LEYaxGkih14GlBm2h68gToN1_6cWAg2SGjiM,11654
422
488
  aip_agents/tools/browser_use/steel_session_recording.pyi,sha256=igIh4IvMGf49WG6De01lxmgdf5uXuBAFT4jNnD1Krco,2169
423
- 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
424
490
  aip_agents/tools/browser_use/streaming.pyi,sha256=9DVFCLoFz0ZIPh00OVVnMHgsqHzTBj9e0m6jSgLgdxQ,3192
425
491
  aip_agents/tools/browser_use/structured_data_parser.py,sha256=G48eKMfrDE1BP7V8lJogfKWo5vSq_gzbodYDpKAxDV8,8372
426
492
  aip_agents/tools/browser_use/structured_data_parser.pyi,sha256=LkzuOf6yNoIHZsjAdIsuklMdOB0tAxNZLMkuIw3d2Cw,3842
@@ -452,14 +518,14 @@ aip_agents/tools/gl_connector/__init__.py,sha256=f8F4mdBFj0ulxewCQwG5qN2SDzlgI2j
452
518
  aip_agents/tools/gl_connector/__init__.pyi,sha256=96wtNkB3VUSI66aRlYxVrzMiPtqOYviRMKviRgX3_fc,113
453
519
  aip_agents/tools/gl_connector/tool.py,sha256=jzT8XmTfFQC9ZcQplVcRs2VmCtKewH9FzT7wSFtUJac,13106
454
520
  aip_agents/tools/gl_connector/tool.pyi,sha256=a5l0MHSOe_iWDvjMRzYtcbMdX0bFlK1m7Hl52HQ__iQ,2770
455
- aip_agents/tools/memory_search/__init__.py,sha256=YSsObYlHjdZEbJj4MVYy3Ht8JPlo42YhjnkI-yFNWV0,608
456
- aip_agents/tools/memory_search/__init__.pyi,sha256=NG0g94OoC_xw66yIqiPViqTnpj01QdnRsVBGzkSxJFI,554
521
+ aip_agents/tools/memory_search/__init__.py,sha256=LGVryzA5hiOGBPBdqQyAX34odd-2gZqKaKKxyWLAroc,814
522
+ aip_agents/tools/memory_search/__init__.pyi,sha256=T2ROZSTHZz3sL3QGbqVxHVqJLj9i017DIt5gk8haX30,825
457
523
  aip_agents/tools/memory_search/base.py,sha256=M4Vq5CnXge1rhVkESfVCAjyWEc6Ijmh8-6oAMkcZkjY,7333
458
524
  aip_agents/tools/memory_search/base.pyi,sha256=onVYE9m7WxUQ4qmW5Tj4xBLgFaBGcg8pJj-n6nR5FIw,3087
459
- aip_agents/tools/memory_search/mem0.py,sha256=mFtmdVULHQkMEPMjigdHgSM6PZKC2SAyvkBQHPyQxv0,9537
460
- aip_agents/tools/memory_search/mem0.pyi,sha256=YFIxvzoOEplbcKqVLddfA2FyjH2RNm6PqyzmYinnndY,896
461
- aip_agents/tools/memory_search/schema.py,sha256=Y01f-tVFOF_DibQRV-xYYd2rupeRV6vgXcvaVm2ZYnQ,1656
462
- 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
463
529
  aip_agents/tools/web_search/__init__.py,sha256=ZjklA94sIQoHDHhnsDoS-2z3eZJ3pc1rv7LQuTzG_6E,500
464
530
  aip_agents/tools/web_search/__init__.pyi,sha256=NROEUMdBJz0j7f29hut7DEJdiWNLWPXYjTNGO8U6hHA,121
465
531
  aip_agents/tools/web_search/serper_tool.py,sha256=quVR0sSsa5Utncq2diG-6sKGEzgdQggOSyc8qbLwK8M,6826
@@ -508,15 +574,15 @@ aip_agents/utils/langgraph/__init__.py,sha256=Yq0TjNfQ7MH-dUui1bAh7qDXlwmM9yKaS9
508
574
  aip_agents/utils/langgraph/__init__.pyi,sha256=lmnwf_rn6QU0UTOR8hjTUzgDRHu3Am-gY9xQF0qDlDg,613
509
575
  aip_agents/utils/langgraph/converter.py,sha256=71YDkd0Iovq5LaNZFBcxn-DNjX_rn_WGIcqmDHlHfGs,4920
510
576
  aip_agents/utils/langgraph/converter.pyi,sha256=zodI3N5ml95kVv5IVl6_4JzOLtPZyzse4DPsanGgqmI,1985
511
- aip_agents/utils/langgraph/tool_output_management.py,sha256=5Xdzmwx_opTog0UDKwr-8j1PkZlSem2-LV-niIxudlI,39230
512
- 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
513
579
  aip_agents/utils/langgraph/tool_managers/__init__.py,sha256=CqHnUOLc3jvNR3vHjcdOH_BXXC-LRgJR3CoXBm5EcgA,687
514
580
  aip_agents/utils/langgraph/tool_managers/__init__.pyi,sha256=xPvWR1cPtgD0V6td69vjYcTL4w5IGTc65IUabV1cxBE,434
515
581
  aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.py,sha256=oiyjoKOIgkoFXI69AJje00ZVkeS5sojj1sIOWUtpiPI,3814
516
582
  aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.pyi,sha256=Zs3hEn_0CHCsi4bzBS_2iDMyWr1xGSbRl-u0JJbE67o,1399
517
583
  aip_agents/utils/langgraph/tool_managers/base_tool_manager.py,sha256=JkTik7JdUOXzWS3_iQhDJn0F3n0g-Jxgwz8GrUwLabk,2026
518
584
  aip_agents/utils/langgraph/tool_managers/base_tool_manager.pyi,sha256=G1WysOvmMv5iDPiwdKwa01w9bE5GMshuU_0xCALKQUQ,1511
519
- 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
520
586
  aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.pyi,sha256=SNBefHy-ZWZqDKA_LjBzevZ6HICSvWa-Oj0garP-7XE,2934
521
587
  aip_agents/utils/metadata/__init__.py,sha256=Jw3eFe00C7ekeNyO_eJxM9jmVvjaBWccNyI6d2vbvKg,722
522
588
  aip_agents/utils/metadata/__init__.pyi,sha256=nHRkW-eLNS0XB-Vs0fFbNOHfoLQfKT8BSoapFK3IyZ0,629
@@ -560,7 +626,7 @@ aip_agents/utils/pii/pii_helper.py,sha256=g0yRzakfA2AA6vjUNLWHqFlcxyLql6MXQ90NN3
560
626
  aip_agents/utils/pii/pii_helper.pyi,sha256=dulZs150ikbAL3Bw2YLcz3_g4DsGmL3lciwf8mKxEjI,2939
561
627
  aip_agents/utils/pii/uuid_deanonymizer_mapping.py,sha256=Gks8l8t0cuS9pzoQnrpiK1CaLmWYksjOnTeiHh3_7EE,7348
562
628
  aip_agents/utils/pii/uuid_deanonymizer_mapping.pyi,sha256=gnWfD1rWZh_tloJjgKiZ6f6iNUuBaHpKqCSiP0d-9bs,3084
563
- aip_agents_binary-0.5.25.dist-info/METADATA,sha256=bXI_tv5FTen7NwMXxM314AFSgsETtAxwusRdm8bTYXo,22315
564
- aip_agents_binary-0.5.25.dist-info/WHEEL,sha256=PaP4PvkDyiSc4C6Dhw6ccQmfxsWFrSv-lJQjBshu0hw,105
565
- aip_agents_binary-0.5.25.dist-info/top_level.txt,sha256=PEz8vcwC1bH4UrkhF0LkIYCNfXGWZUHdSklbvkBe25E,11
566
- aip_agents_binary-0.5.25.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