pygeai 0.6.0b12__py3-none-any.whl → 0.6.0b13__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ from pygeai.analytics.responses import (
22
22
 
23
23
  class AnalyticsManager:
24
24
 
25
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default"):
25
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None):
26
26
  self.__analytics_client = AnalyticsClient(api_key=api_key, base_url=base_url, alias=alias)
27
27
 
28
28
  def get_agents_created_and_modified(
@@ -20,7 +20,7 @@ from pygeai.core.common.exceptions import MissingRequirementException, APIError
20
20
 
21
21
  class AssistantManager:
22
22
 
23
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default"):
23
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None):
24
24
  self.__assistant_client = AssistantClient(api_key, base_url, alias)
25
25
  self.__chat_client = ChatClient(api_key, base_url, alias)
26
26
  self.__rag_client = RAGAssistantClient(api_key, base_url, alias)
pygeai/chat/managers.py CHANGED
@@ -10,7 +10,7 @@ from pygeai.core.responses import ChatResponse, ProviderResponse
10
10
 
11
11
  class ChatManager:
12
12
 
13
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default"):
13
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None):
14
14
  self.__chat_client = ChatClient(api_key, base_url, alias)
15
15
 
16
16
  def chat_completion(
pygeai/cli/geai.py CHANGED
@@ -45,8 +45,13 @@ def main() -> int:
45
45
 
46
46
  :return: int - Exit code indicating success or error.
47
47
  """
48
- driver = CLIDriver()
49
- return driver.main()
48
+ try:
49
+ driver = CLIDriver()
50
+ return driver.main()
51
+ except MissingRequirementException as e:
52
+ error_msg = ErrorHandler.handle_missing_requirement(str(e))
53
+ Console.write_stderr(error_msg)
54
+ return ExitCode.MISSING_REQUIREMENT
50
55
 
51
56
 
52
57
  class CLIDriver:
@@ -110,6 +110,8 @@ def get_session(alias: str = None) -> Session:
110
110
  if _session is None:
111
111
  if not alias:
112
112
  alias = "default"
113
+
114
+ _validate_alias(alias)
113
115
 
114
116
  _session = Session(
115
117
  api_key=settings.get_api_key(alias),
@@ -120,6 +122,8 @@ def get_session(alias: str = None) -> Session:
120
122
  alias=alias,
121
123
  )
122
124
  elif _session is not None and alias:
125
+ _validate_alias(alias)
126
+
123
127
  _session.alias = alias
124
128
  _session.api_key = settings.get_api_key(alias)
125
129
  _session.base_url = settings.get_base_url(alias)
@@ -135,3 +139,12 @@ def get_session(alias: str = None) -> Session:
135
139
  except ValueError as e:
136
140
  logger.warning(f"Warning: API_KEY and/or BASE_URL not set. {e}")
137
141
  sys.stdout.write("Warning: API_KEY and/or BASE_URL not set. Please run geai configure to set them up.\n")
142
+
143
+
144
+ def _validate_alias(alias: str):
145
+ # Validate alias exists
146
+ available_aliases = settings.list_aliases()
147
+ if alias not in available_aliases:
148
+ raise MissingRequirementException(
149
+ f"The profile '{alias}' doesn't exist. Use 'geai configure --list' to see available profiles."
150
+ )
@@ -10,7 +10,7 @@ from pygeai.core.handlers import ErrorHandler
10
10
 
11
11
  class EmbeddingsManager:
12
12
 
13
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default"):
13
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None):
14
14
  self.__client = EmbeddingsClient(api_key, base_url, alias)
15
15
 
16
16
  def generate_embeddings(
@@ -24,7 +24,7 @@ class FileManager:
24
24
  self,
25
25
  api_key: str = None,
26
26
  base_url: str = None,
27
- alias: str = "default",
27
+ alias: str = None,
28
28
  organization_id: str = None,
29
29
  project_id: str = None
30
30
  ):
@@ -8,7 +8,7 @@ from pygeai.core.rerank.models import RerankResponse
8
8
 
9
9
  class RerankManager:
10
10
 
11
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default"):
11
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None):
12
12
  self.__client = RerankClient(api_key, base_url, alias)
13
13
 
14
14
  def rerank_chunks(
@@ -7,7 +7,7 @@ from pygeai.core.utils.validators import validate_status_code
7
7
 
8
8
  class EvaluationClient(BaseClient):
9
9
 
10
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default", eval_url: str = None, *,
10
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None, eval_url: str = None, *,
11
11
  access_token: str = None, project_id: str = None):
12
12
  super().__init__(api_key, base_url, alias, access_token=access_token, project_id=project_id)
13
13
  eval_url = self.session.eval_url if not eval_url else eval_url
pygeai/lab/managers.py CHANGED
@@ -22,7 +22,7 @@ from pygeai.lab.tools.mappers import ToolMapper
22
22
 
23
23
  class AILabManager:
24
24
 
25
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default", project_id: str = None):
25
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None, project_id: str = None):
26
26
  self.__agent_client = AgentClient(api_key=api_key, base_url=base_url, alias=alias, project_id=project_id)
27
27
  self.__tool_client = ToolClient(api_key=api_key, base_url=base_url, alias=alias, project_id=project_id)
28
28
  self.__reasoning_strategy_client = ReasoningStrategyClient(api_key=api_key, base_url=base_url, alias=alias, project_id=project_id)
@@ -26,7 +26,7 @@ class UsageLimitManager:
26
26
  self,
27
27
  api_key: str = None,
28
28
  base_url: str = None,
29
- alias: str = "default",
29
+ alias: str = None,
30
30
  organization_id: str = None
31
31
  ):
32
32
  self.__client = UsageLimitClient(api_key, base_url, alias)
@@ -19,7 +19,7 @@ class OrganizationManager:
19
19
  If errors are found in the response, they are processed to raise an APIError.
20
20
  """
21
21
 
22
- def __init__(self, api_key: str = None, base_url: str = None, alias: str = "default"):
22
+ def __init__(self, api_key: str = None, base_url: str = None, alias: str = None):
23
23
  self.__organization_client = OrganizationClient(api_key=api_key, base_url=base_url, alias=alias)
24
24
 
25
25
  def get_assistant_list(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygeai
3
- Version: 0.6.0b12
3
+ Version: 0.6.0b13
4
4
  Summary: Software Development Kit to interact with Globant Enterprise AI.
5
5
  Author-email: Globant <geai-sdk@globant.com>
6
6
  License-Expression: MIT
@@ -141,13 +141,13 @@ pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
141
141
  pygeai/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
142
  pygeai/analytics/clients.py,sha256=MbLRZUR-ONP6RJ2lgitLhh6iRA9yvI8M1GgJR8Q7V7c,18874
143
143
  pygeai/analytics/endpoints.py,sha256=qlVYc-D12Cpv6cn8x5cZTACRC1_qkgAss85ACVdxSLw,5626
144
- pygeai/analytics/managers.py,sha256=nt9ZYUh9lbnhRmz_PZwYxsWXUxWCIRVGrqsviHofBF4,26218
144
+ pygeai/analytics/managers.py,sha256=PhwcOBnWtJtPF1Jh8V9ITcsC5jlt6YNEI890Zejmmxk,26213
145
145
  pygeai/analytics/mappers.py,sha256=enenIBwJHHqPAyAvo2juro4TjXAtSAA885EnbzWDlIE,10893
146
146
  pygeai/analytics/responses.py,sha256=OWb_kkwxwa--dJQo8W3_2PtZhdFJAPpwrbvb2qdEajU,4813
147
147
  pygeai/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
148
  pygeai/assistant/clients.py,sha256=gGhALWddo30SM7mvoDe2TM9cVQrJ8RzoI4LVQ8ov9VQ,9856
149
149
  pygeai/assistant/endpoints.py,sha256=7LuXWm0-sbrmHsngqW63wuk37K24wcMLinmJ6HdSimg,1026
150
- pygeai/assistant/managers.py,sha256=aQxJ0QtZjTfeQXdwYBDc7oJA2LwPSFUcJOeoihCe8uQ,34632
150
+ pygeai/assistant/managers.py,sha256=pc_1HVUhReavbKFD2W445abGyakWzeyOn9nz3sx1M94,34627
151
151
  pygeai/assistant/mappers.py,sha256=oSx_k1edknbKGlASke5ASzKEekG613TepVQRm1ecPOc,5915
152
152
  pygeai/assistant/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
153
  pygeai/assistant/data/clients.py,sha256=PeSYxbHti8PIdImV4-rhcTWlOvj2nedGX21ulXZi3wQ,660
@@ -167,14 +167,14 @@ pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
167
  pygeai/chat/clients.py,sha256=-PovdRQnwpsHtqoH0UNyAvx8XhDm8xLcZyvTBmsqhNc,19829
168
168
  pygeai/chat/endpoints.py,sha256=r_zvsL5UIqnqhz9I0CG0eQSKV-egwx6EKdaZXj-HndA,343
169
169
  pygeai/chat/iris.py,sha256=-9pDHQpWhR_PvbZ6rD8eMPFk46PI9sCdPQ9aAyvSexs,413
170
- pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
170
+ pygeai/chat/managers.py,sha256=XVnO9yGlS1SpnHXsmzwO2hizt4pKXrDM29cE-3pfIk8,3109
171
171
  pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
172
172
  pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
173
173
  pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
174
174
  pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
175
175
  pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
176
176
  pygeai/cli/error_handler.py,sha256=Lw28yRk0mBvwMpuYrfbYV87g_AHoiidZo9SakoOZva4,5745
177
- pygeai/cli/geai.py,sha256=JosBT-BjcbRNStFfz4K2uJgbHCZW9aPOj15KBTGjPlY,9090
177
+ pygeai/cli/geai.py,sha256=cAoJLcjFkfCVmzQhXiO5TpUhs8OtBJ3JZ6mswZN0vRY,9304
178
178
  pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
179
179
  pygeai/cli/install_man.py,sha256=DjZ3k05sKSzpLFqsU4LHz1b37NHLVdOvS6oZihdBSis,3794
180
180
  pygeai/cli/parsers.py,sha256=0Y38zQ9tG9rqVspr-ksV6LrC0Ynt8uBWbvae89HAWe8,4716
@@ -223,7 +223,7 @@ pygeai/core/base/clients.py,sha256=sIO5TExfeSMmRp06q1cF9iuP3YywGgzZczu7xSgyFFY,2
223
223
  pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
224
224
  pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
225
225
  pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
226
- pygeai/core/base/session.py,sha256=9ViCCzD4pltfK0XQKgComT-0dotnpyTtHHHc9BVN-S8,4269
226
+ pygeai/core/base/session.py,sha256=bxooljwjFNYLuLUuBAgb1kNq2DbEcwlyxWNY7naXp-k,4674
227
227
  pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
228
  pygeai/core/common/config.py,sha256=_MFT5xxQ1ae8d6l-ksC8ziQOu7WvW3fWPv6uFxrMmhU,5506
229
229
  pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
@@ -231,7 +231,7 @@ pygeai/core/common/exceptions.py,sha256=J_5g1jumvkSlg64peMFXfivbQv4vymUBRldxwYo7
231
231
  pygeai/core/embeddings/__init__.py,sha256=sn0wz0qNJeJy-1AQW4on62LX7bqhlVs7xcS0MaPQcW4,486
232
232
  pygeai/core/embeddings/clients.py,sha256=s-yHs99puVw4H1ShQ_jU-7c8S9BUs7WqwUavTKVpcMc,4146
233
233
  pygeai/core/embeddings/endpoints.py,sha256=b__cuKQjribog9PSUeDzwrQ0vBO4WyYahLhLjDiUpL0,98
234
- pygeai/core/embeddings/managers.py,sha256=j6sxPiQTGYXKbaV9K4_rmG6_4-16_ky2LUvfDL-24EY,3520
234
+ pygeai/core/embeddings/managers.py,sha256=F6MZtWVVe9Z55WyNGkck6Myk_rjVNMP8E4QwsZ7tWyY,3515
235
235
  pygeai/core/embeddings/mappers.py,sha256=9K5AB5FA9KWYd-MOHpZu6MkqfZxVq9ESQLf76MQdDj0,2019
236
236
  pygeai/core/embeddings/models.py,sha256=T9FehWk_0doiiZG7yMzSCK9_TBHibaocA4b8sJP7T4M,366
237
237
  pygeai/core/embeddings/responses.py,sha256=ny7iE4p-1yADcRC7U2TdhxtXI3wZ87QXrDfGGbiEvpE,674
@@ -242,7 +242,7 @@ pygeai/core/feedback/models.py,sha256=VdeVVWTQ8qc4TEPbL2XbYI4-UP2m2eh1pkBptw_do1
242
242
  pygeai/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
243
  pygeai/core/files/clients.py,sha256=1wxpKaq2nDjEDm7wWXAK9xFV2vXZGKlJropMEjLV1Ng,5663
244
244
  pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWYQ,337
245
- pygeai/core/files/managers.py,sha256=kvl5Du_N95Rm8Z-EKSXmi5puNwHjtgp5rVEtZWVPEas,8773
245
+ pygeai/core/files/managers.py,sha256=jxmnzgke4fDqUniGG4BlRBA2iagKvzzdCkuNi_7_Eio,8768
246
246
  pygeai/core/files/mappers.py,sha256=8PXXsQJZEH45yLISn_xsOZmcRUEe_F6ELkUeR1lzc-M,1462
247
247
  pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
248
248
  pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
@@ -256,7 +256,7 @@ pygeai/core/plugins/models.py,sha256=SzqE-NToxbqTTMerUk_ELkI6-P6KNIDJY_AOZx0-PTU
256
256
  pygeai/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
257
  pygeai/core/rerank/clients.py,sha256=gmUxcQFplByLadLafrq31dEBp8lqzXTktW3niHBN134,1010
258
258
  pygeai/core/rerank/endpoints.py,sha256=PZcA1i73fyGbpnbpWYr1-gHc6zy7L60b_E8sMLwsXw8,85
259
- pygeai/core/rerank/managers.py,sha256=MdfKTQnwWjduBa2gjXDq_OErgXH_bNZfNUjLCARpZwc,2043
259
+ pygeai/core/rerank/managers.py,sha256=FHGxD0h1fct1RgJlysVG5kbNEUuLKeKGdJA73zbG8fk,2038
260
260
  pygeai/core/rerank/mappers.py,sha256=Jx8PAymebA2TPxGssaKAj4eS0OVsKJqecntAugRO9ww,957
261
261
  pygeai/core/rerank/models.py,sha256=WLE-waHk2glKSl1xx9EpmE1k4bva7c14jjraaWuQ5Uk,430
262
262
  pygeai/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -275,7 +275,7 @@ pygeai/core/utils/validators.py,sha256=LoDrO5z0K8_axMdoMHGZZHlxdIFQWnzC9L7RbEQFI
275
275
  pygeai/dbg/__init__.py,sha256=97HEKO5JdnaZi2qcJEXT1C-MUk0plqpSF_yQ0tUAPrw,91
276
276
  pygeai/dbg/debugger.py,sha256=juoNZplNYGdcLeYjU6Mbe5N6kj7OeZJtvHF-0byJdXg,26471
277
277
  pygeai/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
- pygeai/evaluation/clients.py,sha256=muJ7nhCTClilXc66C2f7ampM2oARttcrYQu8UN8RVaI,1064
278
+ pygeai/evaluation/clients.py,sha256=5go1j-YgfgD8b4wXJ8Vwzit1eccJ5zqsymbov8RPE-c,1059
279
279
  pygeai/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
280
  pygeai/evaluation/dataset/clients.py,sha256=mzinQp-bZ2h6GdNJ6N2TQ9ceCkCzZINwBMyAPp6hbss,20033
281
281
  pygeai/evaluation/dataset/endpoints.py,sha256=d_llUcXNDncNrIyYgjJ_lMBnX2YPVxmeu8op3N30mLs,2922
@@ -297,7 +297,7 @@ pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
297
297
  pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
298
  pygeai/lab/clients.py,sha256=9-eHdXtjDJ9OoNAR07aGQ9yaL2MXmg3J6T8aODWkJQ0,1229
299
299
  pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
300
- pygeai/lab/managers.py,sha256=XpMgWUkdcUr-pOfHToJUzLsF9m5SBNyRU1D3KzDfHEI,70756
300
+ pygeai/lab/managers.py,sha256=GLs2I28jB3mZVkpYBQhHZoojcnGTgOq7N7IVfQHorpA,70751
301
301
  pygeai/lab/models.py,sha256=sHMFXWmr_y7qrdA1MWr3zNH5V72tectz-RDxVeiaTwE,74913
302
302
  pygeai/lab/runners.py,sha256=-uaCPHpFyiKtVOxlEjPjAc9h-onSdGAcYJ5IAZPqlb0,4147
303
303
  pygeai/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -329,13 +329,13 @@ pygeai/migration/tools.py,sha256=d6YtJ2xPdEAxMBiDgOXaMiXSgbUcErzN0wj0kmA9skU,620
329
329
  pygeai/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
330
  pygeai/organization/clients.py,sha256=fCOHkklrdkdjUdV6dPq0RZ9D-EpC_pXzmhsMo4R4ruE,17964
331
331
  pygeai/organization/endpoints.py,sha256=BWdpYPMJCoROoSZnXfX9ROcQRgbcDiuhopxLSZVERQg,1993
332
- pygeai/organization/managers.py,sha256=f1rJEZekmkKTOpAUGYwnm-3o_fUjzjYEfpFoCj1fk1Y,25464
332
+ pygeai/organization/managers.py,sha256=Qkh1g8MR4DzGjNp8VOFDsSUPG6KQdPWOpUqKigj5tMk,25459
333
333
  pygeai/organization/mappers.py,sha256=10JxUTdt9jBgcHfW7ViY2HdtY-UfI9t_qhX8KvuMPn0,5897
334
334
  pygeai/organization/responses.py,sha256=rVQo5N3aUE2tpJiflkFO1eG36imqJqVF3m4rRjKv7-s,1919
335
335
  pygeai/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
336
  pygeai/organization/limits/clients.py,sha256=hoj31n_Lxt40sCV9umxXt3Q3BzFaKSTTtdhMc-4dAZ4,15600
337
337
  pygeai/organization/limits/endpoints.py,sha256=mtca6U6l47jbbbmGc8KoXCDMnyNHtaPo8dxWVuHuUE0,2578
338
- pygeai/organization/limits/managers.py,sha256=fba8goiRXg_yWn0SyOjjhyZcL7VdzGZg-wM5V2yZwWg,14507
338
+ pygeai/organization/limits/managers.py,sha256=S7LHCQJTzTr-_-UH7abipRIv9Qnt8e-ek0U1sIGBYMU,14502
339
339
  pygeai/organization/limits/mappers.py,sha256=nINHaXOnZLnpc39PG3xf_7HX6tS9_-cT-H50ARwCGvw,777
340
340
  pygeai/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
341
  pygeai/proxy/clients.py,sha256=7g0SJbYjBp02rX6WH-HdGOevclGNJLsELIgf68fR14w,8059
@@ -787,9 +787,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
787
787
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
788
788
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
789
789
  pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
790
- pygeai-0.6.0b12.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
791
- pygeai-0.6.0b12.dist-info/METADATA,sha256=CJPgIEAlXo5XCxDkNT5wHDXWQ8fppnZvoB-lL9_R4Ic,7978
792
- pygeai-0.6.0b12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
793
- pygeai-0.6.0b12.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
794
- pygeai-0.6.0b12.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
795
- pygeai-0.6.0b12.dist-info/RECORD,,
790
+ pygeai-0.6.0b13.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
791
+ pygeai-0.6.0b13.dist-info/METADATA,sha256=jh6TnF6a2qnslbtTvT1xj4lmx0aRrkbc80mMALlXtVM,7978
792
+ pygeai-0.6.0b13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
793
+ pygeai-0.6.0b13.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
794
+ pygeai-0.6.0b13.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
795
+ pygeai-0.6.0b13.dist-info/RECORD,,