aip-agents-binary 0.4.8__cp312-cp312-win_amd64.whl → 0.5.5__cp312-cp312-win_amd64.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 (209) hide show
  1. aip_agents/__init__.pyi +19 -0
  2. aip_agents/a2a/__init__.pyi +1 -1
  3. aip_agents/a2a/server/base_executor.pyi +6 -6
  4. aip_agents/a2a/server/google_adk_executor.pyi +11 -11
  5. aip_agents/a2a/server/langflow_executor.pyi +43 -0
  6. aip_agents/a2a/server/langgraph_executor.pyi +10 -11
  7. aip_agents/a2a/types.pyi +54 -47
  8. aip_agents/agent/__init__.pyi +3 -1
  9. aip_agents/agent/base_agent.pyi +24 -8
  10. aip_agents/agent/base_langgraph_agent.pyi +68 -26
  11. aip_agents/agent/google_adk_agent.pyi +34 -21
  12. aip_agents/agent/google_adk_constants.pyi +3 -0
  13. aip_agents/agent/hitl/__init__.pyi +6 -0
  14. aip_agents/agent/hitl/config.pyi +15 -0
  15. aip_agents/agent/hitl/langgraph_hitl_mixin.pyi +42 -0
  16. aip_agents/agent/hitl/manager.pyi +199 -0
  17. aip_agents/agent/hitl/models.pyi +3 -0
  18. aip_agents/agent/hitl/prompt/__init__.pyi +4 -0
  19. aip_agents/agent/hitl/prompt/base.pyi +24 -0
  20. aip_agents/agent/hitl/prompt/deferred.pyi +30 -0
  21. aip_agents/agent/interface.pyi +5 -5
  22. aip_agents/agent/interfaces.pyi +44 -0
  23. aip_agents/agent/langflow_agent.pyi +133 -0
  24. aip_agents/agent/langgraph_memory_enhancer_agent.pyi +49 -0
  25. aip_agents/agent/langgraph_react_agent.pyi +51 -57
  26. aip_agents/agent/system_instruction_context.pyi +13 -0
  27. aip_agents/clients/__init__.pyi +4 -0
  28. aip_agents/clients/langflow/__init__.pyi +4 -0
  29. aip_agents/clients/langflow/client.pyi +140 -0
  30. aip_agents/clients/langflow/types.pyi +7 -0
  31. aip_agents/constants.pyi +1 -0
  32. aip_agents/examples/compare_streaming_client.pyi +48 -0
  33. aip_agents/examples/compare_streaming_server.pyi +18 -0
  34. aip_agents/examples/demo_memory_recall.pyi +58 -0
  35. aip_agents/examples/hello_world_a2a_google_adk_client.pyi +2 -2
  36. aip_agents/examples/hello_world_a2a_google_adk_client_agent.pyi +2 -2
  37. aip_agents/examples/hello_world_a2a_google_adk_client_streaming.pyi +2 -2
  38. aip_agents/examples/hello_world_a2a_google_adk_server.pyi +7 -2
  39. aip_agents/examples/hello_world_a2a_langchain_client.pyi +1 -1
  40. aip_agents/examples/hello_world_a2a_langchain_client_agent.pyi +1 -1
  41. aip_agents/examples/hello_world_a2a_langchain_client_lm_invoker.pyi +1 -1
  42. aip_agents/examples/hello_world_a2a_langchain_client_streaming.pyi +1 -1
  43. aip_agents/examples/hello_world_a2a_langchain_reference_client_streaming.pyi +1 -1
  44. aip_agents/examples/hello_world_a2a_langchain_reference_server.pyi +8 -3
  45. aip_agents/examples/hello_world_a2a_langchain_server.pyi +7 -2
  46. aip_agents/examples/hello_world_a2a_langchain_server_lm_invoker.pyi +7 -2
  47. aip_agents/examples/hello_world_a2a_langflow_client.pyi +9 -0
  48. aip_agents/examples/hello_world_a2a_langflow_server.pyi +14 -0
  49. aip_agents/examples/hello_world_a2a_langgraph_artifact_client.pyi +1 -1
  50. aip_agents/examples/hello_world_a2a_langgraph_artifact_client_streaming.pyi +1 -1
  51. aip_agents/examples/hello_world_a2a_langgraph_artifact_server.pyi +7 -2
  52. aip_agents/examples/hello_world_a2a_langgraph_client.pyi +2 -2
  53. aip_agents/examples/hello_world_a2a_langgraph_client_agent.pyi +2 -2
  54. aip_agents/examples/hello_world_a2a_langgraph_client_agent_lm_invoker.pyi +1 -1
  55. aip_agents/examples/hello_world_a2a_langgraph_client_streaming.pyi +3 -3
  56. aip_agents/examples/hello_world_a2a_langgraph_client_streaming_lm_invoker.pyi +1 -1
  57. aip_agents/examples/hello_world_a2a_langgraph_client_streaming_tool_streaming.pyi +1 -1
  58. aip_agents/examples/hello_world_a2a_langgraph_server.pyi +7 -2
  59. aip_agents/examples/hello_world_a2a_langgraph_server_lm_invoker.pyi +7 -2
  60. aip_agents/examples/hello_world_a2a_langgraph_server_tool_streaming.pyi +7 -2
  61. aip_agents/examples/hello_world_a2a_mcp_langgraph.pyi +1 -1
  62. aip_agents/examples/hello_world_a2a_three_level_agent_hierarchy_client.pyi +31 -6
  63. aip_agents/examples/hello_world_a2a_three_level_agent_hierarchy_server.pyi +33 -5
  64. aip_agents/examples/hello_world_a2a_with_metadata_langchain_client.pyi +1 -1
  65. aip_agents/examples/hello_world_a2a_with_metadata_langchain_server_lm_invoker.pyi +7 -2
  66. aip_agents/examples/hello_world_langchain_mcp_http_interactive.pyi +16 -0
  67. aip_agents/examples/hello_world_langchain_mcp_multi_server.pyi +18 -0
  68. aip_agents/examples/hello_world_langflow_agent.pyi +35 -0
  69. aip_agents/examples/hello_world_model_switch_cli.pyi +18 -3
  70. aip_agents/examples/hello_world_pii_logger.pyi +1 -1
  71. aip_agents/examples/hello_world_sentry.pyi +1 -1
  72. aip_agents/examples/hello_world_step_limits.pyi +17 -0
  73. aip_agents/examples/hello_world_stock_a2a_server.pyi +7 -2
  74. aip_agents/examples/hello_world_tool_output_client.pyi +1 -1
  75. aip_agents/examples/hello_world_tool_output_server.pyi +7 -2
  76. aip_agents/examples/hitl_demo.pyi +67 -0
  77. aip_agents/examples/pii_demo_langgraph_client.pyi +5 -0
  78. aip_agents/examples/pii_demo_langgraph_server.pyi +20 -0
  79. aip_agents/examples/pii_demo_multi_agent_client.pyi +5 -0
  80. aip_agents/examples/pii_demo_multi_agent_server.pyi +40 -0
  81. aip_agents/examples/todolist_planning_a2a_langchain_client.pyi +5 -0
  82. aip_agents/examples/todolist_planning_a2a_langgraph_server.pyi +19 -0
  83. aip_agents/examples/tools/__init__.pyi +3 -1
  84. aip_agents/examples/tools/adk_weather_tool.pyi +1 -1
  85. aip_agents/examples/tools/data_visualization_tool.pyi +2 -0
  86. aip_agents/examples/tools/image_artifact_tool.pyi +2 -0
  87. aip_agents/examples/tools/langchain_arithmetic_tools.pyi +7 -0
  88. aip_agents/examples/tools/langchain_currency_exchange_tool.pyi +0 -1
  89. aip_agents/examples/tools/langchain_graph_artifact_tool.pyi +2 -0
  90. aip_agents/examples/tools/langchain_weather_tool.pyi +1 -1
  91. aip_agents/examples/tools/langgraph_streaming_tool.pyi +1 -1
  92. aip_agents/examples/tools/mock_retrieval_tool.pyi +13 -0
  93. aip_agents/examples/tools/pii_demo_tools.pyi +54 -0
  94. aip_agents/examples/tools/random_chart_tool.pyi +20 -0
  95. aip_agents/examples/tools/stock_tools.pyi +18 -3
  96. aip_agents/mcp/client/__init__.pyi +4 -3
  97. aip_agents/mcp/client/base_mcp_client.pyi +148 -0
  98. aip_agents/mcp/client/connection_manager.pyi +48 -0
  99. aip_agents/mcp/client/google_adk/__init__.pyi +1 -1
  100. aip_agents/mcp/client/google_adk/client.pyi +50 -13
  101. aip_agents/mcp/client/langchain/__init__.pyi +1 -1
  102. aip_agents/mcp/client/langchain/client.pyi +47 -2
  103. aip_agents/mcp/client/persistent_session.pyi +113 -0
  104. aip_agents/mcp/client/session_pool.pyi +101 -0
  105. aip_agents/mcp/client/transports.pyi +123 -0
  106. aip_agents/mcp/utils/__init__.pyi +0 -0
  107. aip_agents/mcp/utils/config_validator.pyi +82 -0
  108. aip_agents/memory/adapters/__init__.pyi +4 -0
  109. aip_agents/memory/adapters/base_adapter.pyi +150 -0
  110. aip_agents/memory/adapters/mem0.pyi +22 -0
  111. aip_agents/memory/base.pyi +3 -3
  112. aip_agents/memory/constants.pyi +9 -0
  113. aip_agents/memory/factory.pyi +1 -1
  114. aip_agents/memory/guidance.pyi +3 -0
  115. aip_agents/middleware/__init__.pyi +5 -0
  116. aip_agents/middleware/base.pyi +71 -0
  117. aip_agents/middleware/manager.pyi +80 -0
  118. aip_agents/middleware/todolist.pyi +125 -0
  119. aip_agents/schema/__init__.pyi +9 -0
  120. aip_agents/schema/a2a.pyi +40 -0
  121. aip_agents/schema/agent.pyi +65 -0
  122. aip_agents/schema/hitl.pyi +89 -0
  123. aip_agents/schema/langgraph.pyi +28 -0
  124. aip_agents/schema/model_id.pyi +54 -0
  125. aip_agents/schema/step_limit.pyi +63 -0
  126. aip_agents/schema/storage.pyi +21 -0
  127. aip_agents/sentry/__init__.pyi +1 -1
  128. aip_agents/sentry/sentry.pyi +2 -2
  129. aip_agents/storage/base.pyi +1 -2
  130. aip_agents/storage/config.pyi +9 -46
  131. aip_agents/storage/providers/base.pyi +2 -3
  132. aip_agents/storage/providers/object_storage.pyi +1 -1
  133. aip_agents/tools/__init__.pyi +1 -1
  134. aip_agents/tools/bosa_tools.pyi +2 -2
  135. aip_agents/tools/constants.pyi +105 -100
  136. aip_agents/tools/memory_search/__init__.pyi +5 -0
  137. aip_agents/tools/memory_search/base.pyi +69 -0
  138. aip_agents/tools/memory_search/mem0.pyi +19 -0
  139. aip_agents/tools/memory_search/schema.pyi +15 -0
  140. aip_agents/tools/memory_search_tool.pyi +3 -0
  141. aip_agents/types/__init__.pyi +19 -3
  142. aip_agents/types/a2a_events.pyi +2 -73
  143. aip_agents/utils/__init__.pyi +8 -2
  144. aip_agents/utils/a2a_connector.pyi +14 -4
  145. aip_agents/utils/artifact_helpers.pyi +26 -2
  146. aip_agents/utils/constants.pyi +10 -0
  147. aip_agents/utils/datetime/__init__.pyi +4 -0
  148. aip_agents/utils/datetime/normalization.pyi +95 -0
  149. aip_agents/utils/datetime/timezone.pyi +48 -0
  150. aip_agents/utils/env_loader.pyi +2 -2
  151. aip_agents/utils/event_handler_registry.pyi +23 -0
  152. aip_agents/utils/file_prompt_utils.pyi +21 -0
  153. aip_agents/utils/final_response_builder.pyi +34 -0
  154. aip_agents/utils/formatter_llm_client.pyi +71 -0
  155. aip_agents/utils/langgraph/converter.pyi +1 -1
  156. aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.pyi +2 -2
  157. aip_agents/utils/langgraph/tool_managers/base_tool_manager.pyi +2 -3
  158. aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.pyi +14 -8
  159. aip_agents/utils/langgraph/tool_output_management.pyi +15 -2
  160. aip_agents/utils/logger.pyi +60 -0
  161. aip_agents/utils/metadata/__init__.pyi +5 -0
  162. aip_agents/utils/metadata/activity_metadata_helper.pyi +25 -0
  163. aip_agents/utils/metadata/activity_narrative/__init__.pyi +7 -0
  164. aip_agents/utils/metadata/activity_narrative/builder.pyi +35 -0
  165. aip_agents/utils/metadata/activity_narrative/constants.pyi +10 -0
  166. aip_agents/utils/metadata/activity_narrative/context.pyi +32 -0
  167. aip_agents/utils/metadata/activity_narrative/formatters.pyi +48 -0
  168. aip_agents/utils/metadata/activity_narrative/utils.pyi +12 -0
  169. aip_agents/utils/metadata/schemas/__init__.pyi +4 -0
  170. aip_agents/utils/metadata/schemas/activity_schema.pyi +18 -0
  171. aip_agents/utils/metadata/schemas/thinking_schema.pyi +20 -0
  172. aip_agents/utils/metadata/thinking_metadata_helper.pyi +4 -0
  173. aip_agents/utils/metadata_helper.pyi +50 -34
  174. aip_agents/utils/name_preprocessor/base_name_preprocessor.pyi +1 -2
  175. aip_agents/utils/name_preprocessor/google_name_preprocessor.pyi +1 -1
  176. aip_agents/utils/name_preprocessor/name_preprocessor.pyi +4 -4
  177. aip_agents/utils/name_preprocessor/openai_name_preprocessor.pyi +1 -1
  178. aip_agents/utils/pii/__init__.pyi +5 -0
  179. aip_agents/utils/pii/pii_handler.pyi +96 -0
  180. aip_agents/utils/pii/pii_helper.pyi +78 -0
  181. aip_agents/utils/pii/uuid_deanonymizer_mapping.pyi +73 -0
  182. aip_agents/utils/reference_helper.pyi +38 -6
  183. aip_agents/utils/sse_chunk_transformer.pyi +166 -0
  184. aip_agents/utils/step_limit_manager.pyi +112 -0
  185. aip_agents/utils/token_usage_helper.pyi +1 -1
  186. aip_agents.cp312-win_amd64.pyd +0 -0
  187. aip_agents.pyi +95 -34
  188. aip_agents_binary-0.5.5.dist-info/METADATA +669 -0
  189. aip_agents_binary-0.5.5.dist-info/RECORD +243 -0
  190. {aip_agents_binary-0.4.8.dist-info → aip_agents_binary-0.5.5.dist-info}/WHEEL +2 -1
  191. aip_agents_binary-0.5.5.dist-info/top_level.txt +1 -0
  192. aip_agents/agent/types.pyi +0 -109
  193. aip_agents/examples/hello_world_a2a_mem0_coordinator_client.pyi +0 -14
  194. aip_agents/examples/hello_world_a2a_mem0_coordinator_server.pyi +0 -10
  195. aip_agents/examples/hello_world_a2a_multi_agent_coordinator_client.pyi +0 -19
  196. aip_agents/examples/hello_world_a2a_multi_agent_coordinator_client_streaming.pyi +0 -9
  197. aip_agents/examples/hello_world_a2a_multi_agent_coordinator_server.pyi +0 -12
  198. aip_agents/examples/hello_world_langgraph_bosa.pyi +0 -5
  199. aip_agents/examples/hello_world_mem0_coordinator.pyi +0 -5
  200. aip_agents/examples/tools/pr_details_bosa_tool.pyi +0 -26
  201. aip_agents/memory/mem0_memory.pyi +0 -94
  202. aip_agents/tools/base.pyi +0 -44
  203. aip_agents/tools/base_bosa_tools.pyi +0 -12
  204. aip_agents/tools/bosa_connector.pyi +0 -30
  205. aip_agents/tools/bosa_tools_interface.pyi +0 -26
  206. aip_agents/utils/logger_manager.pyi +0 -151
  207. aip_agents.build/.gitignore +0 -1
  208. aip_agents_binary-0.4.8.dist-info/METADATA +0 -280
  209. aip_agents_binary-0.4.8.dist-info/RECORD +0 -166
@@ -1,30 +0,0 @@
1
- from _typeshed import Incomplete
2
- from bosa_connectors.connector import BosaConnector
3
- from typing import Any
4
-
5
- MAX_ATTEMPTS: int
6
- logger: Incomplete
7
-
8
- class BOSAConnector:
9
- """Handler for fetching data using the BOSA Connector."""
10
- bosa: BosaConnector
11
- def __init__(self, api_base_url: str, api_key: str) -> None:
12
- """Initialize the BOSA connector.
13
-
14
- Args:
15
- api_base_url: Base URL for the BOSA API
16
- api_key: API key for authentication
17
- """
18
- def execute_endpoint(self, action: str, endpoint: str, input_: dict[str, Any], max_attempts: int = ..., forwards_cursor: bool = True) -> dict[str, Any]:
19
- """Execute a BOSA endpoint and fetch data.
20
-
21
- Args:
22
- action: The BOSA API action to call
23
- endpoint: The BOSA API endpoint to call
24
- input_: Parameters matching the API spec
25
- max_attempts: Max retry attempts
26
- forwards_cursor: Whether to use cursor-based pagination (True) or page-based pagination (False)
27
-
28
- Returns:
29
- dict containing response data with '0', 'data', and 'meta' fields
30
- """
@@ -1,26 +0,0 @@
1
- import abc
2
- from abc import ABC, abstractmethod
3
- from aip_agents.tools.bosa_connector import BOSAConnector as BOSAConnector
4
- from pydantic import BaseModel as BaseModel
5
-
6
- class BosaToolInterface(ABC, metaclass=abc.ABCMeta):
7
- """Interface for BOSA tools.
8
-
9
- Defines the abstract base class for tools that agents can use.
10
-
11
- Attributes:
12
- name (str): The name of the tool.
13
- description (Optional[str]): The description of the tool.
14
- args_schema (Optional[Type[BaseModel]]): The schema for the tool arguments.
15
- _bosa_connector (Optional[BOSAConnector]): The BosaConnector instance.
16
- """
17
- name: str
18
- description: str | None
19
- args_schema: type[BaseModel] | None
20
- @abstractmethod
21
- def __init__(self):
22
- """Initialize the BosaToolInterface.
23
-
24
- This method should be implemented by subclasses to define the tool's
25
- initialization logic. The _init_bosa_connector should be called here.
26
- """
@@ -1,151 +0,0 @@
1
- import logging
2
- from _typeshed import Incomplete
3
-
4
- BOSA_CORE_AVAILABLE: bool
5
- DEFAULT_LOG_FORMAT: Incomplete
6
- DEFAULT_DATE_FORMAT: str
7
- LOG_COLORS: Incomplete
8
- MAX_LOG_COLORS_LENGTH: Incomplete
9
- TRUNCATED_MESSAGE: str
10
- MAX_MESSAGE_LENGTH: Incomplete
11
-
12
- class StandardizedFormatter(logging.Formatter):
13
- """Custom formatter that outputs logs in standardized JSON format with colors.
14
-
15
- Follows the standardized log format:
16
- - level: string (e.g., INFO, ERROR)
17
- - timestamp: ISO 8601 with timezone (e.g., 2025-07-23T00:29:05.091Z)
18
- - message: string (the content of the log) (max 500000 context length)
19
- - error: object (for error logs only)
20
- - message: string (the error message)
21
- - code: string (specific error code)
22
- - stacktrace: string (the stack trace for debugging)
23
- """
24
- def format(self, record: logging.LogRecord) -> str:
25
- """Format the log record in standardized JSON format with colors.
26
-
27
- Args:
28
- record (logging.LogRecord): The log record to be formatted.
29
-
30
- Returns:
31
- str: The formatted log message in JSON format.
32
- """
33
-
34
- class ColoredFormatter(logging.Formatter):
35
- """Custom formatter to add colors based on log level."""
36
- def format(self, record: logging.LogRecord) -> str:
37
- """Format the log record with colors based on log level.
38
-
39
- Args:
40
- record (logging.LogRecord): The log record to be formatted.
41
-
42
- Returns:
43
- str: The formatted log message with color codes.
44
- """
45
-
46
- class LoggerManager:
47
- '''A singleton class to manage logging configuration.
48
-
49
- This class ensures that the root logger is initialized only once and is used across the application.
50
- Supports both traditional colored output and standardized format with colors.
51
-
52
- Example to get and use the logger:
53
- ```python
54
- manager = LoggerManager()
55
-
56
- logger = manager.get_logger()
57
-
58
- logger.info("This is an info message")
59
- ```
60
-
61
- Example to set logging configuration:
62
- ```python
63
- manager = LoggerManager()
64
-
65
- manager.set_level(logging.DEBUG)
66
- manager.set_output_format("traditional") # or "standardized"
67
- ```
68
-
69
- Example to add a custom handler:
70
- ```python
71
- manager = LoggerManager()
72
-
73
- handler = logging.FileHandler("app.log")
74
- manager.add_handler(handler)
75
- ```
76
-
77
- Output format examples:
78
-
79
- Traditional format:
80
- ```python
81
- [16/04/2025 15:08:18.323 GDPLabsGenAILogger INFO] Loading prompt_builder catalog for chatbot `general-purpose`
82
- ```
83
-
84
- Standardized format:
85
- ```json
86
- {
87
- "level": "INFO",
88
- "timestamp": "2025-07-23T00:29:05.091Z",
89
- "message": "Loading prompt_builder catalog for chatbot `general-purpose`"
90
- }
91
- ```
92
-
93
- Error standardized format:
94
- ```json
95
- {
96
- "level": "ERROR",
97
- "timestamp": "2025-07-23T00:29:05.091Z",
98
- "message": "Failed to load configuration",
99
- "error": {
100
- "message": "Configuration file not found",
101
- "code": "CONFIG_NOT_FOUND",
102
- "stacktrace": "Traceback (most recent call last):..."
103
- }
104
- }
105
- ```
106
- '''
107
- def __new__(cls):
108
- """Initialize the singleton instance."""
109
- def get_logger(self, name: str | None = None) -> logging.Logger:
110
- """Get a logger instance.
111
-
112
- This method returns a logger instance that is a child of the root logger. If name is not provided,
113
- the root logger will be returned instead.
114
-
115
- Args:
116
- name (str | None, optional): The name of the child logger.
117
- If None, the root logger will be returned. Defaults to None.
118
-
119
- Returns:
120
- logging.Logger: Configured logger instance.
121
- """
122
- def set_level(self, level: int) -> None:
123
- """Set logging level for all loggers in the hierarchy.
124
-
125
- Args:
126
- level (int): The logging level to set (e.g., logging.INFO, logging.DEBUG).
127
- """
128
- def set_output_format(self, output_format: str) -> None:
129
- '''Set the output format for all loggers in the hierarchy.
130
-
131
- Args:
132
- output_format (str): The output format to set. Must be either "standardized" or "traditional".
133
- '''
134
- def set_log_format(self, log_format: str) -> None:
135
- """Set logging format for all loggers in the hierarchy (traditional mode only).
136
-
137
- Args:
138
- log_format (str): The log format to set.
139
- """
140
- def set_date_format(self, date_format: str) -> None:
141
- """Set date format for all loggers in the hierarchy (traditional mode only).
142
-
143
- Args:
144
- date_format (str): The date format to set.
145
- """
146
- def add_handler(self, handler: logging.Handler) -> None:
147
- """Add a custom handler to the root logger.
148
-
149
- Args:
150
- handler (logging.Handler): The handler to add to the root logger.
151
- """
@@ -1 +0,0 @@
1
- *
@@ -1,280 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: aip-agents-binary
3
- Version: 0.4.8
4
- Summary: A library for managing agents in Gen AI applications.
5
- Author: Raymond Christopher
6
- Author-email: raymond.christopher@gdplabs.id
7
- Requires-Python: >=3.11,<3.14
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.11
10
- Classifier: Programming Language :: Python :: 3.12
11
- Requires-Dist: a2a-sdk (>=0.2.4,<0.2.12)
12
- Requires-Dist: authlib (>=1.6.4,<2.0.0)
13
- Requires-Dist: bosa-connectors-binary (>=0.2.2,<0.3.0)
14
- Requires-Dist: bosa-core-binary[logger,telemetry] (>=0.8.0,<0.9.0)
15
- Requires-Dist: boto3 (>=1.35.33,<2.0.0)
16
- Requires-Dist: colorama (>=0.4.6,<0.5.0)
17
- Requires-Dist: deprecated (>=1.2.18,<2.0.0)
18
- Requires-Dist: fastapi (>=0.117.0,<0.118.0)
19
- Requires-Dist: gllm-core-binary (>=0.3,<0.4)
20
- Requires-Dist: gllm-inference-binary[anthropic,bedrock,google-genai,google-vertexai,openai] (>=0.5.0,<0.6.0)
21
- Requires-Dist: gllm-tools-binary (>=0.1.1,<0.2.0)
22
- Requires-Dist: google-adk (>=0.5.0,<0.6.0)
23
- Requires-Dist: langchain (>=0.3.0,<0.4.0)
24
- Requires-Dist: langchain-openai (>=0.3.17,<0.4.0)
25
- Requires-Dist: langgraph (>=0.2.16,<0.3.0)
26
- Requires-Dist: mem0ai (>=0.1.115,<0.2.0)
27
- Requires-Dist: minio (>=7.2.16,<8.0.0)
28
- Requires-Dist: pydantic (>=2.9.1,<3.0.0)
29
- Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
30
- Requires-Dist: requests (>=2.32.4,<3.0.0)
31
- Requires-Dist: starlette (>=0.47.2,<0.49.0)
32
- Requires-Dist: uvicorn (>=0.34.0,<0.35.0)
33
- Description-Content-Type: text/markdown
34
-
35
- # GLLM Agents
36
-
37
- ## Description
38
-
39
- A library for managing agents in Generative AI applications.
40
-
41
- ## Installation
42
-
43
- ### Prerequisites
44
- - Python 3.13+ - [Install here](https://www.python.org/downloads/)
45
- - Pip (if using Pip) - [Install here](https://pip.pypa.io/en/stable/installation/)
46
- - Poetry 1.8.1+ (if using Poetry) - [Install here](https://python-poetry.org/docs/#installation)
47
- - Git (if using Git) - [Install here](https://git-scm.com/downloads)
48
- - For git installation:
49
- - Access to the [GDP Labs SDK github repository](https://github.com/GDP-ADMIN/gen-ai-internal)
50
-
51
- ### 1. Installation from Artifact Registry
52
- Choose one of the following methods to install the package:
53
-
54
- #### Using pip
55
- ```bash
56
- pip install gllm-agents-binary
57
- ```
58
-
59
- #### Using Poetry
60
- ```bash
61
- poetry add gllm-agents-binary
62
- ```
63
-
64
- ### 2. Development Installation (Git)
65
- For development purposes, you can install directly from the Git repository:
66
- ```bash
67
- poetry add "git+ssh://git@github.com/GDP-ADMIN/gen-ai-internal.git#subdirectory=libs/gllm-agents"
68
- ```
69
-
70
- ## Managing Dependencies
71
- 1. Go to root folder of `gllm-agents` module, e.g. `cd libs/gllm-agents`.
72
- 2. Run `poetry shell` to create a virtual environment.
73
- 3. Run `poetry lock` to create a lock file if you haven't done it yet.
74
- 4. Run `poetry install` to install the `gllm-agents` requirements for the first time.
75
- 5. Run `poetry update` if you update any dependency module version at `pyproject.toml`.
76
-
77
- ## Contributing
78
- Please refer to this [Python Style Guide](https://docs.google.com/document/d/1uRggCrHnVfDPBnG641FyQBwUwLoFw0kTzNqRm92vUwM/edit?usp=sharing)
79
- to get information about code style, documentation standard, and SCA that you need to use when contributing to this project
80
-
81
- 1. Activate `pre-commit` hooks using `pre-commit install`
82
- 2. Run `poetry shell` to create a virtual environment.
83
- 3. Run `poetry lock` to create a lock file if you haven't done it yet.
84
- 4. Run `poetry install` to install the `gllm-agents` requirements for the first time.
85
- 5. Run `which python` to get the path to be referenced at Visual Studio Code interpreter path (`Ctrl`+`Shift`+`P` or `Cmd`+`Shift`+`P`)
86
- 6. Try running the unit test to see if it's working:
87
- ```bash
88
- poetry run pytest -s tests/unit_tests/
89
- ```
90
-
91
- ## Hello World Examples
92
-
93
- ### Prerequisites
94
- - Python 3.13+
95
- - Install the binary package:
96
-
97
- ```bash
98
- pip install gllm-agents-binary
99
- ```
100
-
101
- - For OpenAI: Set your API key in the environment:
102
- ```bash
103
- export OPENAI_API_KEY=your-openai-key
104
- ```
105
- - For Google ADK: Set your API key in the environment:
106
- ```bash
107
- export GOOGLE_API_KEY=your-google-api-key
108
- ```
109
-
110
- ### Run the Hello World Examples
111
-
112
- The example scripts are located in the `gllm_agents/examples` directory within the library. You can run them individually or use the `run_all_examples.py` script.
113
-
114
- **1. Running Individual Examples:**
115
-
116
- Navigate to the library's root directory (e.g., `libs/gllm-agents` if you cloned the repository).
117
-
118
- **LangGraph (OpenAI):**
119
- ```bash
120
- python gllm_agents/examples/hello_world_langgraph.py
121
- ```
122
-
123
- **LangGraph with BOSA Connector (OpenAI):**
124
- ```bash
125
- python gllm_agents/examples/hello_world_langgraph_bosa_twitter.py
126
- ```
127
-
128
- **LangGraph Streaming (OpenAI):**
129
- ```bash
130
- python gllm_agents/examples/hello_world_langgraph_stream.py
131
- ```
132
-
133
- **LangGraph Multi-Agent Coordinator (OpenAI):**
134
- ```bash
135
- python gllm_agents/examples/hello_world_a2a_multi_agent_coordinator_server.py
136
- ```
137
-
138
- **Google ADK:**
139
- ```bash
140
- python gllm_agents/examples/hello_world_google_adk.py
141
- ```
142
-
143
- **Google ADK Streaming:**
144
- ```bash
145
- python gllm_agents/examples/hello_world_google_adk_stream.py
146
- ```
147
-
148
- **LangChain (OpenAI):**
149
- ```bash
150
- python gllm_agents/examples/hello_world_langchain.py
151
- ```
152
-
153
- **LangChain Streaming (OpenAI):**
154
- ```bash
155
- python gllm_agents/examples/hello_world_langchain_stream.py
156
- ```
157
-
158
- **2. Running Individual MCP Examples:**
159
-
160
- * Navigate to the library's root directory (e.g., `libs/gllm-agents` if you cloned the repository).
161
- * Open a new terminal and navigate to the sample MCP servers directory `libs/gllm-agents/gllm_agents/examples/mcp_servers`
162
-
163
- Turn on the SSE MCP servers:
164
-
165
- ```bash
166
- python mcp_server_sse.py
167
- ```
168
-
169
- * Open a new terminal and navigate to the sample MCP servers directory `libs/gllm-agents/gllm_agents/examples/mcp_servers`
170
-
171
- Turn on the STDIO MCP servers:
172
-
173
- ```bash
174
- python mcp_server_stdio.py
175
- ```
176
-
177
- **LangGraph SSE Transport (OpenAI):**
178
- ```bash
179
- python gllm_agents/examples/hello_world_langgraph_mcp_sse.py
180
- ```
181
-
182
- **LangGraph Streaming SSE Transport (OpenAI):**
183
- ```bash
184
- python gllm_agents/examples/hello_world_langgraph_mcp_sse_stream.py
185
- ```
186
-
187
- **LangGraph STDIO Transport (OpenAI):**
188
- ```bash
189
- python gllm_agents/examples/hello_world_langgraph_mcp_stdio.py
190
- ```
191
-
192
- **LangGraph Streaming STDIO Transport (OpenAI):**
193
- ```bash
194
- python gllm_agents/examples/hello_world_langgraph_mcp_stdio_stream.py
195
- ```
196
-
197
- **Google ADK SSE Transport:**
198
- ```bash
199
- python gllm_agents/examples/hello_world_google_adk_mcp_sse.py
200
- ```
201
-
202
- **Google ADK Streaming SSE Transport:**
203
- ```bash
204
- python gllm_agents/examples/hello_world_google_adk_mcp_sse_stream.py
205
- ```
206
-
207
- **Google ADK STDIO Transport:**
208
- ```bash
209
- python gllm_agents/examples/hello_world_google_adk_mcp_stdio.py
210
- ```
211
-
212
- **Google ADK Streaming STDIO Transport:**
213
- ```bash
214
- python gllm_agents/examples/hello_world_google_adk_mcp_stdio_stream.py
215
- ```
216
-
217
- **LangChain SSE Transport (OpenAI):**
218
- ```bash
219
- python gllm_agents/examples/hello_world_langchain_mcp_sse.py
220
- ```
221
-
222
- **LangChain Streaming SSE Transport (OpenAI):**
223
- ```bash
224
- python gllm_agents/examples/hello_world_langchain_mcp_sse_stream.py
225
- ```
226
-
227
- **LangChain STDIO Transport (OpenAI):**
228
- ```bash
229
- python gllm_agents/examples/hello_world_langchain_mcp_stdio.py
230
- ```
231
-
232
- **LangChain Streaming STDIO Transport (OpenAI):**
233
- ```bash
234
- python gllm_agents/examples/hello_world_langchain_mcp_stdio_stream.py
235
- ```
236
-
237
- **3. Running Individual A2A Examples:**
238
-
239
- * Navigate to the library's root directory (e.g., `libs/gllm-agents` if you cloned the repository).
240
- * Open a new terminal and navigate to the `gllm_agents/examples` directory to run the A2A server.
241
-
242
- **LangChain Server:**
243
- ```bash
244
- python hello_world_a2a_langchain_server.py
245
- ```
246
-
247
- * Open a new terminal and navigate to the `gllm_agents/examples` directory to run the A2A client.
248
-
249
- **LangChain Client:**
250
- ```bash
251
- python hello_world_a2a_langchain_client.py
252
- ```
253
-
254
- **LangChain Client Integrated with Agent Workflow:**
255
- ```bash
256
- python hello_world_a2a_langchain_client_agent.py
257
- ```
258
-
259
- **LangChain Client Streaming:**
260
- ```bash
261
- python hello_world_a2a_langchain_client_stream.py
262
- ```
263
-
264
-
265
- ## Architectural Notes
266
-
267
- ### Agent Interface (`AgentInterface`)
268
-
269
- The `gllm_agents.agent.interface.AgentInterface` class defines a standardized contract for all agent implementations within the GLLM Agents ecosystem. It ensures that different agent types (e.g., LangGraph-based, Google ADK-based) expose a consistent set of methods for core operations.
270
-
271
- Key methods defined by `AgentInterface` typically include:
272
- - `arun()`: For asynchronous execution of the agent that returns a final consolidated response.
273
- - `arun_stream()`: For asynchronous execution that streams back partial responses or events from the agent.
274
-
275
- By adhering to this interface, users can interact with various agents in a uniform way, making it easier to switch between or combine different agent technologies.
276
-
277
- ### Inversion of Control (IoC) / Dependency Injection (DI)
278
-
279
- The agent implementations (e.g., `LangGraphAgent`, `GoogleADKAgent`) utilize Dependency Injection. For instance, `LangGraphAgent` accepts an `agent_executor` (like one created by LangGraph's `create_react_agent`) in its constructor. Similarly, `GoogleADKAgent` accepts a native `adk_native_agent`. This allows the core execution logic to be provided externally, promoting flexibility and decoupling the agent wrapper from the specific instantiation details of its underlying engine.
280
-
@@ -1,166 +0,0 @@
1
- aip_agents/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- aip_agents/a2a/__init__.pyi,sha256=WeGl6E8eTuZ694vIro2OmTckxHAon-IlZI0WmF4nCqc,298
3
- aip_agents/a2a/server/__init__.pyi,sha256=GORCQj-Av3Pl3zXVYlyCKVM5rlH2KWl98qHZBmBUV_w,252
4
- aip_agents/a2a/server/base_executor.pyi,sha256=k6Tn9FAxxkUbeCVShjQl0PwatYg26QCa6cYs1NalI9E,3709
5
- aip_agents/a2a/server/google_adk_executor.pyi,sha256=UHaGjC4s8LTs_0nyWAwMiWizhQ726ZFrwb0bCPDOyjc,2622
6
- aip_agents/a2a/server/langgraph_executor.pyi,sha256=w1uV67_-P1MFS9_oHDhXwQ2ik0SEts_1NYo4Ds27KIE,2381
7
- aip_agents/a2a/types.pyi,sha256=OUgvHW81GBtMoj0LPCjLYn-iWdrz0rqlze6V142TojM,4347
8
- aip_agents/agent/__init__.pyi,sha256=jMWFRtbH1eystuJM0Jh_ye1nRBD6JWmp0aM9KAeKFi8,616
9
- aip_agents/agent/base_agent.pyi,sha256=_TIN_vuWomFxeJ5N2MMJQ5cN5TRUmOanhXzQYM0fh2w,10725
10
- aip_agents/agent/base_langgraph_agent.pyi,sha256=tmWmVvVW_7wOu6wsBnLivNRGImMWnhsHKgR3szYUBV8,9193
11
- aip_agents/agent/google_adk_agent.pyi,sha256=G3A3RGUjhbGcSRt5TGUaf-THVN1ExpYtwyzeYcmKui8,5825
12
- aip_agents/agent/interface.pyi,sha256=QChzg2X9BnbCWnCaNAnbut9K6-4yQCgz0L5RONRREJ0,3226
13
- aip_agents/agent/langgraph_react_agent.pyi,sha256=2N2sC-vvcmJcwj1Irvp9cLzHjkuKswBFPGxGGbpdFJ4,6849
14
- aip_agents/agent/types.pyi,sha256=Ky6S3_lLVtNtCiIx8acgzojD0y7NIrxMorCYbeEqyLA,4428
15
- aip_agents/constants.pyi,sha256=DgqMBQR6-4-FRSzR9shbzowlkaxG5Qwq4--OMFCDpAw,129
16
- aip_agents/examples/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- aip_agents/examples/hello_world_a2a_google_adk_client.pyi,sha256=EG7az1Fv4m6b62fLIvTYrDq9Xm9z5iJlU1FhP2EWm2k,396
18
- aip_agents/examples/hello_world_a2a_google_adk_client_agent.pyi,sha256=EG7az1Fv4m6b62fLIvTYrDq9Xm9z5iJlU1FhP2EWm2k,396
19
- aip_agents/examples/hello_world_a2a_google_adk_client_streaming.pyi,sha256=7DRMKUj4spCvZm5zo9BJl5yLjv1zWiWxYQF88K0eZSg,404
20
- aip_agents/examples/hello_world_a2a_google_adk_server.pyi,sha256=P3MOqpVybqyGysJHCMkUcP4UY_kx1NUWIdFjdofJjCk,407
21
- aip_agents/examples/hello_world_a2a_langchain_client.pyi,sha256=RKF5IHFxwRxqRfBdniN47ftCyCegiz8NNQLHy1OI9fg,247
22
- aip_agents/examples/hello_world_a2a_langchain_client_agent.pyi,sha256=RKF5IHFxwRxqRfBdniN47ftCyCegiz8NNQLHy1OI9fg,247
23
- aip_agents/examples/hello_world_a2a_langchain_client_lm_invoker.pyi,sha256=RKF5IHFxwRxqRfBdniN47ftCyCegiz8NNQLHy1OI9fg,247
24
- aip_agents/examples/hello_world_a2a_langchain_client_streaming.pyi,sha256=paRTxy_AS5ms3dSE3WMZECLNhv-8AP06gKKVyU5H_1I,263
25
- aip_agents/examples/hello_world_a2a_langchain_reference_client_streaming.pyi,sha256=Pa6-9mS8mh16p1h5qfGQK9pGDu1JGAMDKb1CFisr5hU,249
26
- aip_agents/examples/hello_world_a2a_langchain_reference_server.pyi,sha256=Vxnn4UM0d9mvYFi-WHxfBFuer8CTmJzm4-InOcnQ76k,408
27
- aip_agents/examples/hello_world_a2a_langchain_server.pyi,sha256=9mOXABTu06qUNKlCI9mocibXINK8mzmzt-iVn1OSZ3U,395
28
- aip_agents/examples/hello_world_a2a_langchain_server_lm_invoker.pyi,sha256=9mOXABTu06qUNKlCI9mocibXINK8mzmzt-iVn1OSZ3U,395
29
- aip_agents/examples/hello_world_a2a_langgraph_artifact_client.pyi,sha256=Hsks3kW_aUQJvSdpslhFtRm2JCVdvzF_viyoZXWC89o,253
30
- aip_agents/examples/hello_world_a2a_langgraph_artifact_client_streaming.pyi,sha256=4e1s4glgY1tW9Ecdidchml79x0oiVs5RePJpQ-aE0Tc,263
31
- aip_agents/examples/hello_world_a2a_langgraph_artifact_server.pyi,sha256=SCIbPgitiVKQjy7rb1N0pdwk--3nHOUY3ICoBLTl-cM,503
32
- aip_agents/examples/hello_world_a2a_langgraph_client.pyi,sha256=k49nyYAZEmpuYOapNt5srooex_CNgIbonfyFUIcKKBU,379
33
- aip_agents/examples/hello_world_a2a_langgraph_client_agent.pyi,sha256=k49nyYAZEmpuYOapNt5srooex_CNgIbonfyFUIcKKBU,379
34
- aip_agents/examples/hello_world_a2a_langgraph_client_agent_lm_invoker.pyi,sha256=RGVfKjXvFMDH6tbl27X4yVFL8iYwoascyL1jkb-_8sw,134
35
- aip_agents/examples/hello_world_a2a_langgraph_client_streaming.pyi,sha256=PDM7f0Mbcvr35R6jaEH5Sjrvf2MdWQenhZ2g2wInNCI,387
36
- aip_agents/examples/hello_world_a2a_langgraph_client_streaming_lm_invoker.pyi,sha256=paRTxy_AS5ms3dSE3WMZECLNhv-8AP06gKKVyU5H_1I,263
37
- aip_agents/examples/hello_world_a2a_langgraph_client_streaming_tool_streaming.pyi,sha256=7KXMh8kj0_Qappu5-9bUExsNbk63yMBJ9bbGZV6zgWw,276
38
- aip_agents/examples/hello_world_a2a_langgraph_server.pyi,sha256=uh9c0oHILYPngxLMlFpIKakqOyQkfka2Tdx5q1JcnEg,304
39
- aip_agents/examples/hello_world_a2a_langgraph_server_lm_invoker.pyi,sha256=9mOXABTu06qUNKlCI9mocibXINK8mzmzt-iVn1OSZ3U,395
40
- aip_agents/examples/hello_world_a2a_langgraph_server_tool_streaming.pyi,sha256=dQnlSvOxoXsh8PEO19wzL18iiMKbiSta4Ksly772TiM,423
41
- aip_agents/examples/hello_world_a2a_mcp_langgraph.pyi,sha256=INuT-qxF4Fl08l06iKMyPbjY6yAx7ZJn7w4TezQT2iM,1587
42
- aip_agents/examples/hello_world_a2a_mem0_coordinator_client.pyi,sha256=2DNvdIXeDcUCBXRszX1GqY6k7sKP15ALcvWF7xxlgEw,782
43
- aip_agents/examples/hello_world_a2a_mem0_coordinator_server.pyi,sha256=toc3byvEO-UrLRruAVsyDiOvEVN_L7gRwrVis5WGW1A,392
44
- aip_agents/examples/hello_world_a2a_multi_agent_coordinator_client.pyi,sha256=uL-TU5S0AFreqHv-YK9XOwI8ceuMFhkZBdI2tPTtg_k,748
45
- aip_agents/examples/hello_world_a2a_multi_agent_coordinator_client_streaming.pyi,sha256=P8iHyMkkQ8r6jP9O1QNO958aQ9NMx3MjHOKlIeqXGT4,329
46
- aip_agents/examples/hello_world_a2a_multi_agent_coordinator_server.pyi,sha256=t2YCd9Et_RK1tTOTzO1aqWqAyySE08XUH8Eg9uMNPME,579
47
- aip_agents/examples/hello_world_a2a_three_level_agent_hierarchy_client.pyi,sha256=z_-f2ZtbC-Ef0vC-GJ1gnjjIkjzWoBNuqDYCBoZy92A,1259
48
- aip_agents/examples/hello_world_a2a_three_level_agent_hierarchy_server.pyi,sha256=n0EOEg6fmOkFJr-_wSthUfKlkG1Amd9iTjUUx-U54rQ,1004
49
- aip_agents/examples/hello_world_a2a_with_metadata_langchain_client.pyi,sha256=rZRJ60vCa7NPv4mXLGN6_17fjA6ummrwQNc_lPMZsFw,254
50
- aip_agents/examples/hello_world_a2a_with_metadata_langchain_server_lm_invoker.pyi,sha256=Nkr-Ll-9Xuww-aYIfsFyyAWUyL3_21CrV-AHhh9gNpY,512
51
- aip_agents/examples/hello_world_google_adk.pyi,sha256=A1FCstQ3E1QlUQIzy867wQU4UIEynsRqWBCVi85HjBc,268
52
- aip_agents/examples/hello_world_google_adk_mcp_http.pyi,sha256=Fm0YeFhglsrh564siCMUdl5Bit4kbp7Cr5RFX2Aj0yk,286
53
- aip_agents/examples/hello_world_google_adk_mcp_http_stream.pyi,sha256=DGKzp6WY3oTLOpkfM5ytCiI147yIqGSrwUabPfJm9KQ,300
54
- aip_agents/examples/hello_world_google_adk_mcp_sse.pyi,sha256=3xVx4f5IKV9t70oVbCVaYVUJCk_ORgTyegeomXdRg0I,272
55
- aip_agents/examples/hello_world_google_adk_mcp_sse_stream.pyi,sha256=xShSVLqBZLSQzMCUGt91KnG7Eg92-9Ih7gR4YOZUvhI,286
56
- aip_agents/examples/hello_world_google_adk_mcp_stdio.pyi,sha256=2vsm8260EtupgUDzXY1TihkHom81FQFzSgzT30Bq44o,278
57
- aip_agents/examples/hello_world_google_adk_mcp_stdio_stream.pyi,sha256=erDwifJBQhYxPZl5UdSjDBuHG5ijgO_F8zotWI0oZpA,292
58
- aip_agents/examples/hello_world_google_adk_stream.pyi,sha256=g3LSA24-OA_wahaantU0ughPEddDqgIlscV3XESDNbw,282
59
- aip_agents/examples/hello_world_langchain.pyi,sha256=TUaJYQQTAPy6XlY3gapm3Xhze_76kKasjjQtBq28syI,256
60
- aip_agents/examples/hello_world_langchain_lm_invoker.pyi,sha256=frOXncDtQONTsnAkER4B5AwN9IbVaFA81YMM7iq5Tp4,154
61
- aip_agents/examples/hello_world_langchain_mcp_http.pyi,sha256=8-7weQvIcjzVZFj46tqO7AVkVbOYVvGVri_3cdQ01vY,269
62
- aip_agents/examples/hello_world_langchain_mcp_http_stream.pyi,sha256=qb2j4vNrlqFb3Gy5ligS6s_7mVljrxljQD_jI5Sd4xk,296
63
- aip_agents/examples/hello_world_langchain_mcp_sse.pyi,sha256=WNOWiK4xgWmL1cSWdgkmE_z5wE1xswW3sdBqfQPVdjg,255
64
- aip_agents/examples/hello_world_langchain_mcp_sse_stream.pyi,sha256=RODuVKyxOJ3uFoifbya37FEVHEVbpn-04FHOiQywzf4,282
65
- aip_agents/examples/hello_world_langchain_mcp_stdio.pyi,sha256=N9FAcX_e38xRg8XmjIDb4DcWyLvv-v6XMX8rOyIQ2tE,261
66
- aip_agents/examples/hello_world_langchain_mcp_stdio_stream.pyi,sha256=e5BI4ElJVjcZET1gZmEMFUBn3SilIH5yynRSB6-YttI,288
67
- aip_agents/examples/hello_world_langchain_stream.pyi,sha256=8Z3hmC4-Cl-wM-1Iqw7qmMdDt_8lbKeqEdG16ExpZMQ,291
68
- aip_agents/examples/hello_world_langchain_stream_lm_invoker.pyi,sha256=8Z3hmC4-Cl-wM-1Iqw7qmMdDt_8lbKeqEdG16ExpZMQ,291
69
- aip_agents/examples/hello_world_langgraph.pyi,sha256=nCbikXhA0CFeIgDFoD4UcwkAXvEUUgwZCUXwc8jLWno,256
70
- aip_agents/examples/hello_world_langgraph_bosa.pyi,sha256=jwaUf32G-HB_fpOsA6pmEHSF3FN8PBT37xEz8nHX9NE,303
71
- aip_agents/examples/hello_world_langgraph_bosa_twitter.pyi,sha256=J1GU1IYl7xi_ML-EC-YTHANlQt-u2o_W7ToIpRGKz6Q,243
72
- aip_agents/examples/hello_world_langgraph_mcp_http.pyi,sha256=M1LXhrQOUDquRcGOWOtu_tbnjcOU0qtmEvizDa1H4PA,269
73
- aip_agents/examples/hello_world_langgraph_mcp_http_stream.pyi,sha256=jeGbAQRvodjgtjVQaiWVdkKomJwHKPnWVu0TeJacF5I,296
74
- aip_agents/examples/hello_world_langgraph_mcp_sse.pyi,sha256=MYtowC23_NlTiwiewuCI75_btRjvpntFfpNUJv5Auuc,255
75
- aip_agents/examples/hello_world_langgraph_mcp_sse_stream.pyi,sha256=C3eYaaWQlZo_8nydNDk5rlt7-YrliJfJiKU-p6h_rBM,282
76
- aip_agents/examples/hello_world_langgraph_mcp_stdio.pyi,sha256=I-rePYZW6jGxmGVTZ7nm3Mcd2y-fSvm06L0mvMwFO_U,261
77
- aip_agents/examples/hello_world_langgraph_mcp_stdio_stream.pyi,sha256=BV__YOJAsERaSGQjfLkfM2JuY-9QiBAc0teVILZid1s,275
78
- aip_agents/examples/hello_world_langgraph_stream.pyi,sha256=R19-AF0jST2PODu6n5o83zRB2zwVYAS7jEb4f1g1XOU,270
79
- aip_agents/examples/hello_world_langgraph_stream_lm_invoker.pyi,sha256=rjWwUmWHbB41I9F6R0r_tmUl8U41hJT_7Xdj6J1CMeU,271
80
- aip_agents/examples/hello_world_mem0_coordinator.pyi,sha256=Q5dJFCDGmOrrEQxxZeDL_d9q2lenx1lBeDvRyz9UWd4,235
81
- aip_agents/examples/hello_world_model_switch_cli.pyi,sha256=8IAuuaFyWBHwHk5dGImiNxz7mO6xHdUnB29XT4toSGU,560
82
- aip_agents/examples/hello_world_multi_agent_adk.pyi,sha256=Gi0iiVkXTZY6QiTOLyeFV0gEChos7OrBT3_40wAD10s,364
83
- aip_agents/examples/hello_world_multi_agent_langchain.pyi,sha256=FokZVjJFURZOC0B9rlVE3lGOBP5_XlDa4DnDbg5XTFk,267
84
- aip_agents/examples/hello_world_multi_agent_langgraph.pyi,sha256=loWwJwDbzV_PFU8J_Tn-ObjNQZjxr0A3j7Wk_0-6c9U,267
85
- aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.pyi,sha256=OHkTLSqRAM7TOZEp6TH5dsPq9zbpi9UA_l0rDIrqFlM,257
86
- aip_agents/examples/hello_world_pii_logger.pyi,sha256=pxvK-iEROTaTH5PysAXWE0Af0w_0BrhOuExU5ZIOoVA,153
87
- aip_agents/examples/hello_world_sentry.pyi,sha256=b06qvRiy_v7PrSO_LKmXVoeI5tpNQs1bykHkIELohQs,706
88
- aip_agents/examples/hello_world_stock_a2a_server.pyi,sha256=SoKBkPrMzaPX6GYbletjPORv78pUtkHb1YCnaurdycM,571
89
- aip_agents/examples/hello_world_tool_output_client.pyi,sha256=EK6B_fw92CDGBJ_bTR0NsLE-uE4UHRDJZU_k2hPMp-o,244
90
- aip_agents/examples/hello_world_tool_output_server.pyi,sha256=Kn0OG5nX1ssielk2uOMemgsqMLZu3hIvVFl5DvnNaKA,882
91
- aip_agents/examples/tools/__init__.pyi,sha256=RD-WOdTR3zbwZKkSUcBrDyMCUVXtSgqJxuzHQwEdNMU,592
92
- aip_agents/examples/tools/adk_arithmetic_tools.pyi,sha256=uxzknHYYwvbaknzLT9pvpnkAsz_EdCsfNFiCxgfOpDo,730
93
- aip_agents/examples/tools/adk_weather_tool.pyi,sha256=aV_bNU9XI0ei9t34BJGKtpqe24rzUlTu6k9ZDV8u2Oc,562
94
- aip_agents/examples/tools/data_generator_tool.pyi,sha256=ucpsIpamiyzQqDjg7gbP-AivxbgES7xINBz-kY2_VOc,464
95
- aip_agents/examples/tools/data_visualization_tool.pyi,sha256=L1LwiOZQBn58Yju1isCxtvdESDsafEOYZdJxVthAa6E,574
96
- aip_agents/examples/tools/image_artifact_tool.pyi,sha256=0NW_2VXi-tZJA4ef9JXKmgBZSe0HGgcog5xIoXdS-7c,870
97
- aip_agents/examples/tools/langchain_arithmetic_tools.pyi,sha256=2j1xTX3qZvhW3I9G8t4k9Wc0rEh6DYEzcIv23Ur3gWI,252
98
- aip_agents/examples/tools/langchain_currency_exchange_tool.pyi,sha256=DH50hPo_xk6a7CVOIxupvJ-79WrLLTI13tP_iKX8t1A,639
99
- aip_agents/examples/tools/langchain_graph_artifact_tool.pyi,sha256=HNsp0X3U4BuTlDltu62lGA7K8cSPzFZZO75EAK2Y4fk,758
100
- aip_agents/examples/tools/langchain_weather_tool.pyi,sha256=4f9mfCADk5AcXvYJZ0VasDuGdGmJ814v_gh8H8lP3Lo,498
101
- aip_agents/examples/tools/langgraph_streaming_tool.pyi,sha256=G-l0kW3ZUOZsBZ-DrxnhLzhpXFJPV26W9c0VccfaZW8,1720
102
- aip_agents/examples/tools/pr_details_bosa_tool.pyi,sha256=618hVCLownYyo9adesCJPO1ey49PjgEt8fhIdnlAq-w,958
103
- aip_agents/examples/tools/serper_tool.pyi,sha256=NSAV7iiTX9J-oi0j_-Lsrafq1aniPWx_YPjY_CAkjJw,451
104
- aip_agents/examples/tools/stock_tools.pyi,sha256=GfbAHUtAI6xss_KMtcEqYpmvZMx8tqkp3dHAZ9zzS8g,666
105
- aip_agents/examples/tools/table_generator_tool.pyi,sha256=_hdVWGTTd0HvR6gQ5O3X2bELWpEW--m5VSzehJ_Y0kw,776
106
- aip_agents/examples/tools/time_tool.pyi,sha256=NyPzggDwpzcwGt7YP6NkGjtFBE4fO_-nrO8hO-hl7hY,372
107
- aip_agents/examples/tools/weather_forecast_tool.pyi,sha256=UR5XFHI7yWpSJ-TjLfXdy0P-DsfHRvdXJwWKBSMYoxk,389
108
- aip_agents/mcp/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
- aip_agents/mcp/client/__init__.pyi,sha256=3IvkqmGn8AQYFqkcx48dxTFZa4irWCR8zZSE1HLOfOA,203
110
- aip_agents/mcp/client/google_adk/__init__.pyi,sha256=hXoWSuJPx6N_mJmTNvip1lPJLbfr15QzucEf4GaLPGc,98
111
- aip_agents/mcp/client/google_adk/client.pyi,sha256=Zcg0LV5JL-lx5aLiH546GdDSf9YIygkkpqnTbrwj0Kc,1539
112
- aip_agents/mcp/client/langchain/__init__.pyi,sha256=j30-G8Jk9FvF5_FLSGohqX0Avyo9hbxiQbRv-Tp_in8,98
113
- aip_agents/mcp/client/langchain/client.pyi,sha256=4tTZkg7HrVlzvqUhg9TMxMevFB0ChLo78HwG14Wi8XI,129
114
- aip_agents/memory/__init__.pyi,sha256=P22xkNJdUKKP40IfzYFmOCL1g8KPT0lMFJ9vW53128Q,262
115
- aip_agents/memory/base.pyi,sha256=yTHSWs6egLJS8n6iDYmGn8zVdZk3QcKW00XiyiqGL9U,2228
116
- aip_agents/memory/constants.pyi,sha256=ozpcF4KTa14vg58h0EGuR5mnqEt6gOnh28eByeoEvbI,444
117
- aip_agents/memory/factory.pyi,sha256=MbkznedRTO3Byyq-41d4DkJOin-cYMvWPE2KbEwDrO8,832
118
- aip_agents/memory/mem0_memory.pyi,sha256=Zrt6GM8c866IT5H3aj5uW6DnT_dznKSM-d5ZcdyuDPs,3762
119
- aip_agents/memory/simple_memory.pyi,sha256=aJRdDHUq50Y8_pSPHpzufnocLTQ92JbCt6m7iSFn9Ao,1149
120
- aip_agents/sentry/__init__.pyi,sha256=2OijqJoooSg33E8me_lHzUoMk1h-uo_I5rUI_PakjVs,89
121
- aip_agents/sentry/sentry.pyi,sha256=7S6LRHwxSl0Gr2nwNP50VomecKnxQbqKJdkNQ1U-Iz8,1509
122
- aip_agents/storage/__init__.pyi,sha256=jVVcK1_V657EPjpZn5y_jcn-HbiiqMPG9oLIbeVaUlI,909
123
- aip_agents/storage/base.pyi,sha256=9efNJ2e3sN14Lv9hQqjjsHWMMS6i-yV_S2hkCjtVvTg,2080
124
- aip_agents/storage/clients/__init__.pyi,sha256=wyrNY-zTuXbGjnroapTdVNyBTQclppy_djvr5BWGVH0,173
125
- aip_agents/storage/clients/minio_client.pyi,sha256=I3UQlBX6xWiX4BcPqyUoC8PemBN_jLQ2XQ6jLloGmBM,4814
126
- aip_agents/storage/config.pyi,sha256=PRfI1h-s2EFA60xCaCB2kO0FQwv-576-99bQWU37Evg,2525
127
- aip_agents/storage/providers/__init__.pyi,sha256=_sJaEnLl999k86j38dm-RelHiYhmLfmdPYW0xm2g2tc,429
128
- aip_agents/storage/providers/base.pyi,sha256=o5h_mukW1mrsLJkJvySO0rNgG8Ej0dJ6uQFXeUuVWOM,2451
129
- aip_agents/storage/providers/memory.pyi,sha256=NpsqKzboQGWtxtFV1ch_C3KT0KHOLyac6TtBgkLRgjI,2188
130
- aip_agents/storage/providers/object_storage.pyi,sha256=XRzNsMS1OcIkXlDHSdmRZq9ItffcZB-xNkD1EsUoPGQ,2990
131
- aip_agents/tools/__init__.pyi,sha256=CRKc5cUccJd4kgK0_D41GZGkEUdMmG1bk6hJA9VQL14,108
132
- aip_agents/tools/base.pyi,sha256=u7ja70_Y7ta1ChT3Qikp5BeqpSSXPn3RTSGa8lHIrn8,1550
133
- aip_agents/tools/base_bosa_tools.pyi,sha256=9rXmFVWG-SC9_pSN-FOYkRiBbAzcILKfy_BTjTTGdiI,676
134
- aip_agents/tools/bosa_connector.pyi,sha256=oZkLlSIwLUPq0w9eGYt1ZbF9OINayZse7Z1hfm7vgJQ,1155
135
- aip_agents/tools/bosa_tools.pyi,sha256=wBsTuQRLGbGINijSMO39qHlInMnCH6BofHLL86_e-fI,1157
136
- aip_agents/tools/bosa_tools_interface.pyi,sha256=MMc6rNSyYQ6RA_XeWawu7gN9YqWrCtFxdHgeN_zHr5k,982
137
- aip_agents/tools/constants.pyi,sha256=-I1dP7ql109PC8usmTddYbIsb9De0-zPNSwgnxGmhl4,4923
138
- aip_agents/tools/tool_config_injector.pyi,sha256=9m6SDm3cq9fm3BvL2E1Q4_h_Vt9kY3VANB9edDnY8x4,1081
139
- aip_agents/types/__init__.pyi,sha256=Srenstns_fHJ5Z9zGk85Ne1A72LxF7Gjdb-OSKhFp58,845
140
- aip_agents/types/a2a_events.pyi,sha256=Ah7LBvlkr2SMtkToRFK9YJvBWzMxEP44aKoTi59E0Ys,2820
141
- aip_agents/utils/__init__.pyi,sha256=8WbGYueTRy_RpYc45c7aVuzYMRWuKi9ahaE48W79xE4,888
142
- aip_agents/utils/a2a_connector.pyi,sha256=jsX0-B3jtn5aBO0a-30VxsiU88GxnGTADxlpvUi4F98,7005
143
- aip_agents/utils/artifact_helpers.pyi,sha256=DLPU-yrPa4F1XVBZJTiiWLX_K05RJjJBUU-Pe1SZoEM,8510
144
- aip_agents/utils/env_loader.pyi,sha256=-AjIjq8XMSOVGHNhKgQHcdBYhUdUL4IC_LfwJyq-8p0,272
145
- aip_agents/utils/langgraph/__init__.pyi,sha256=FatR5jsVWWJ5Jw0UreaSHqYwk21xHEf4z36iBpE7N14,616
146
- aip_agents/utils/langgraph/converter.pyi,sha256=yr8MKZKSr2bc4Sp0Vha6AMrnWWAKX2DVUsdoYfzD13k,2025
147
- aip_agents/utils/langgraph/tool_managers/__init__.pyi,sha256=ts9bnhpknKjOIIX2faLwYPMejq7Rn0mHZnwves5kBlQ,439
148
- aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.pyi,sha256=LnESbGIGgQXWfQrEJUdYk9xelYKcfmbTaf10xArlam0,1460
149
- aip_agents/utils/langgraph/tool_managers/base_tool_manager.pyi,sha256=Hhk6-74nGWuoDAT9xuxO_hOtS-8gbDpDKCjTNmvEBbg,1608
150
- aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.pyi,sha256=ZgjMSsoZkMAGqIyfXBQ3lmtiuVd46Io8SCAvAU2Kjzw,2472
151
- aip_agents/utils/langgraph/tool_output_management.pyi,sha256=IXuKIEV4bGZKJHzFhlDWLcBsSvt6-3UVBFjgFoLBj8Y,12432
152
- aip_agents/utils/logger_manager.pyi,sha256=Q-7rIo6_jfshXTM2vutIoHG2BwGpCJS4eSKTFa_a5tg,4997
153
- aip_agents/utils/metadata_helper.pyi,sha256=2St9SGlHBSRrFcnvw1gWxI-sIOC42CxgHXIKfTrGxiw,3939
154
- aip_agents/utils/name_preprocessor/__init__.pyi,sha256=QBaeKtxcZWBogSHAT5cNEkaqAihY3_wuuLStE0HsEZk,573
155
- aip_agents/utils/name_preprocessor/base_name_preprocessor.pyi,sha256=q6tvJqBbmV6e1c5BVC5yVOxCC-FEh-Pm_-crrUX3V8o,1672
156
- aip_agents/utils/name_preprocessor/google_name_preprocessor.pyi,sha256=MFq6EEOtooU5iWw3YxK1_8ECx4yKi3k3QSHwPO6pyHo,1534
157
- aip_agents/utils/name_preprocessor/name_preprocessor.pyi,sha256=nWGfRf1MzgAz_qEZkN78WoHvOIDz4kPhrmj3LgcJUV0,1424
158
- aip_agents/utils/name_preprocessor/openai_name_preprocessor.pyi,sha256=ExO_eznLiqZ-VRxNYa05QhWX-0iumi0YxUeYCMCWTbc,1283
159
- aip_agents/utils/reference_helper.pyi,sha256=2eZTFXnY9yLyn-hdcy6Hh6_jHb49fvJLVf2rWuWx1yk,1732
160
- aip_agents/utils/token_usage_helper.pyi,sha256=vzTlNkq_gWE-021HrN8BgDzWNuB6zNRU7ysyKXiBDbM,2202
161
- aip_agents.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
162
- aip_agents.cp312-win_amd64.pyd,sha256=ppIicuWqf8H-NSs2wfRMvY14t-SCgXSwjJ9h_5Dk_Sw,4968448
163
- aip_agents.pyi,sha256=dXqmStiYvHv1MeX2cayde49RqH3ZqIunPGlW1BwAiN8,4580
164
- aip_agents_binary-0.4.8.dist-info/METADATA,sha256=wpDnYti7mdxZC8QmeHcTrtebYqVu9f3qODrnyvyrcOs,9209
165
- aip_agents_binary-0.4.8.dist-info/WHEEL,sha256=4N0hGcnWMI_Ty6ATf4qJqqSl-UNI-Ln828iTWGIywmU,98
166
- aip_agents_binary-0.4.8.dist-info/RECORD,,