pygeai 0.4.0b12__py3-none-any.whl → 0.5.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. pygeai/__init__.py +1 -1
  2. pygeai/cli/__init__.py +1 -1
  3. pygeai/core/base/session.py +1 -1
  4. pygeai/tests/cli/docker/__init__.py +0 -0
  5. pygeai/tests/integration/assistants/rag/test_create_rag.py +24 -5
  6. pygeai/tests/integration/chat/test_generate_image.py +1 -5
  7. pygeai/tests/integration/lab/agents/test_create_agent.py +13 -7
  8. pygeai/tests/integration/lab/agents/test_create_sharing_link.py +4 -1
  9. pygeai/tests/integration/lab/agents/test_update_agent.py +15 -18
  10. pygeai/tests/integration/lab/processes/__init__.py +0 -0
  11. pygeai/tests/integration/lab/processes/test_create_process.py +345 -0
  12. pygeai/tests/integration/lab/processes/test_get_process.py +201 -0
  13. pygeai/tests/integration/lab/processes/test_update_process.py +289 -0
  14. pygeai/tests/integration/lab/reasoning_strategies/__init__.py +0 -0
  15. pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py +70 -0
  16. pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py +93 -0
  17. pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py +149 -0
  18. pygeai/tests/integration/lab/tools/test_create_tool.py +12 -16
  19. pygeai/tests/integration/lab/tools/test_delete_tool.py +3 -3
  20. pygeai/tests/integration/lab/tools/test_get_tool.py +3 -3
  21. pygeai/tests/integration/lab/tools/test_update_tool.py +8 -9
  22. pygeai/tests/snippets/lab/agentic_flow_example_4.py +23 -23
  23. pygeai/tests/snippets/lab/samples/summarize_files.py +3 -3
  24. pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py +3 -3
  25. pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py +11 -11
  26. pygeai/tests/snippets/lab/use_cases/update_web_reader.py +1 -2
  27. {pygeai-0.4.0b12.dist-info → pygeai-0.5.0.dist-info}/METADATA +44 -16
  28. {pygeai-0.4.0b12.dist-info → pygeai-0.5.0.dist-info}/RECORD +32 -23
  29. {pygeai-0.4.0b12.dist-info → pygeai-0.5.0.dist-info}/WHEEL +0 -0
  30. {pygeai-0.4.0b12.dist-info → pygeai-0.5.0.dist-info}/entry_points.txt +0 -0
  31. {pygeai-0.4.0b12.dist-info → pygeai-0.5.0.dist-info}/licenses/LICENSE +0 -0
  32. {pygeai-0.4.0b12.dist-info → pygeai-0.5.0.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ def rollback():
27
27
  print("\n=== Initiating Rollback ===")
28
28
  if created_entities["agent_id"]:
29
29
  print(f"Deleting agent {created_entities['agent_id']}...")
30
- result = lab_manager.delete_agent(project_id=project_id, agent_id=created_entities["agent_id"])
30
+ result = lab_manager.delete_agent(agent_id=created_entities["agent_id"])
31
31
  print(f"Rollback: {result}")
32
32
  if created_entities["file_id"]:
33
33
  print(f"Deleting file {created_entities['file_id']}...")
@@ -37,8 +37,8 @@ def rollback():
37
37
 
38
38
 
39
39
  def main():
40
- # File Upload Flow
41
- print("\n=== File Upload Flow ===")
40
+ # File Upload Step
41
+ print("\n=== File Upload Step ===")
42
42
  print("Uploading file 'test.txt'...")
43
43
  file_to_upload = UploadFile(
44
44
  name="test.txt",
@@ -65,8 +65,8 @@ def main():
65
65
  rollback()
66
66
  exit()
67
67
 
68
- # Agent Flow
69
- print("\n=== Agent Flow ===")
68
+ # Agent Step
69
+ print("\n=== Agent Step ===")
70
70
  print("Creating agent 'FileSummaryAgent2' as draft...")
71
71
  agent_id = str(uuid4())
72
72
  agent = Agent(
@@ -95,14 +95,14 @@ def main():
95
95
  sampling=Sampling(temperature=0.8)
96
96
  ),
97
97
  models=ModelList(models=[
98
- Model(name="vertex_ai/gemini-1.5-pro")
98
+ Model(name="openai/gpt-4o")
99
99
  ])
100
100
  ),
101
101
  is_draft=True,
102
102
  revision=1,
103
103
  status="pending"
104
104
  )
105
- create_agent_result = lab_manager.create_agent(project_id=project_id, agent=agent, automatic_publish=False)
105
+ create_agent_result = lab_manager.create_agent(agent=agent, automatic_publish=False)
106
106
  if isinstance(create_agent_result, Agent):
107
107
  print(f"Success: Created Agent: {create_agent_result.name}, ID: {create_agent_result.id}")
108
108
  created_entities["agent_id"] = create_agent_result.id
@@ -112,7 +112,7 @@ def main():
112
112
  exit()
113
113
 
114
114
  print("Publishing agent revision '1'...")
115
- publish_agent_result = lab_manager.publish_agent_revision(project_id=project_id, agent_id=created_entities["agent_id"], revision="1")
115
+ publish_agent_result = lab_manager.publish_agent_revision(agent_id=created_entities["agent_id"], revision="1")
116
116
  if isinstance(publish_agent_result, Agent):
117
117
  print(f"Success: Published Agent Revision: {publish_agent_result.name}")
118
118
  else:
@@ -120,8 +120,8 @@ def main():
120
120
  rollback()
121
121
  exit()
122
122
 
123
- # Chat Completion Flow
124
- print("\n=== Chat Completion Flow ===")
123
+ # Chat Completion Step
124
+ print("\n=== Chat Completion Step ===")
125
125
  print(f"Asking agent about the uploaded file '{file_name}'...")
126
126
  messages = ChatMessageList(messages=[
127
127
  ChatMessage(
@@ -154,4 +154,4 @@ if __name__ == "__main__":
154
154
  rollback()
155
155
  except Exception as e:
156
156
  rollback()
157
- print(f"\n# Critical error: {e}")
157
+ print(f"\n# Critical error: {e}")
@@ -185,7 +185,6 @@ WEB_READING_GUIDE:
185
185
  # Update the agent
186
186
  manager = AILabManager()
187
187
  result = manager.update_agent(
188
- project_id="2ca6883f-6778-40bb-bcc1-85451fb11107",
189
188
  agent=agent,
190
189
  automatic_publish=True
191
190
  )
@@ -193,4 +192,4 @@ result = manager.update_agent(
193
192
  if isinstance(result, Agent):
194
193
  print(f"Agent updated successfully: {agent.to_dict()}")
195
194
  else:
196
- print("Errors:", result.errors if hasattr(result, 'errors') else "Unknown error occurred")
195
+ print("Errors:", result.errors if hasattr(result, 'errors') else "Unknown error occurred")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygeai
3
- Version: 0.4.0b12
3
+ Version: 0.5.0
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
@@ -48,7 +48,7 @@ By using the Python SDK to interact with Globant Enterprise AI, you agree with t
48
48
  [Terms and Conditions](https://www.globant.com/enterprise-ai/terms-of-use)
49
49
 
50
50
  ## Compatibility
51
- This package is compatible with the Globant Enterprise AI release from June 2025.
51
+ This package is compatible with the Globant Enterprise AI release from November 2025.
52
52
 
53
53
  ## Configuration
54
54
 
@@ -60,22 +60,50 @@ Before using the SDK, you need to define `GEAI_API_KEY` (`$SAIA_APITOKEN`) and `
60
60
 
61
61
  **Note:** If you plan to use the [Evaluation Module](https://wiki.genexus.com/enterprise-ai/wiki?896,Evaluation), you must also define `GEAI_API_EVAL_URL`
62
62
 
63
+ ### Credentials file
64
+ The credentials file is organized via profiles, so one can interact with different instances of Globant Enterprise AI by just
65
+ referencing which profile one wishes to use. This also applies to different levels of permissions.
66
+
67
+ The structure of the credentials file is as follows:
68
+
69
+ ```
70
+ [default]
71
+ geai_api_key = <API_TOKEN>
72
+ geai_api_base_url = <GEAI_BASE_URL>
73
+ geai_api_evaul_url = <GEAI_EVALUATION_MODULE_URL>
74
+
75
+ [<another alias>]
76
+ geai_api_key = <API_TOKEN>
77
+ geai_api_base_url = <GEAI_BASE_URL>
78
+ geai_api_evaul_url = <GEAI_EVALUATION_MODULE_URL>
79
+
80
+ ```
81
+
82
+ After setting the profiles, one can use them with the --alias option, for example:
83
+
84
+ ```bash
85
+ geai --alias test llm list-providers
86
+ ```
87
+
63
88
  ## Modules
64
89
 
65
- The SDK consists of several modules, all accessible through a meta-package:
66
-
67
- - **`pygeai`**: This meta-package encapsulates all components of the SDK.
68
- - **`pygeai-cli`**: This package provides a command-line tool for interacting with the SDK.
69
- - **`pygeai-chat`**: This package offers facilities to chat with assistants/agents created in Globant Enterprise AI.
70
- - **`pygeai-dbg`**: This package includes a debugger to troubleshoot potential SDK issues and gain detailed insights into its operations.
71
- - **`pygeai-core`**: This package handles interactions with the fundamental components of Globant Enterprise AI, including users, groups, permissions, API keys, organizations, and [Projects](https://wiki.genexus.com/enterprise-ai/wiki?565,Projects).
72
- - **`pygeai-admin`**: This package enables interactions with the Globant Enterprise AI instance.
73
- - **`pygeai-lab`**: This package facilitates interactions with AI LAB.
74
- - **`pygeai-evaluation`**: This package provides functionality from the evaluation module.
75
- - **`pygeai-gam`**: This package allows interaction with [GAM] (https://wiki.genexus.com/commwiki/wiki?24746,Table+of+contents%3AGeneXus+Access+Manager+%28GAM%29,).
76
- - **`pygeai-assistant`**: This package handles interactions with various Assistants, including [Data Analyst Assistants](https://wiki.genexus.com/enterprise-ai/wiki?886,Data+Analyst+Assistant+2.0), [RAG Assistants](https://wiki.genexus.com/enterprise-ai/wiki?44,RAG+Assistants+Introduction), [Chat with Data Assistants](https://wiki.genexus.com/enterprise-ai/wiki?159,Chat+with+Data+Assistant), [Chat with API Assistants](https://wiki.genexus.com/enterprise-ai/wiki?110,API+Assistant), and [Chat Assistants](https://wiki.genexus.com/enterprise-ai/wiki?708,Chat+Assistant).
77
- - **`pygeai-organization`**: This package facilitates interactions with Organizations in Globant Enterprise AI.
78
- - **`pygeai-flows`**: This package enables interactions with [Flows](https://wiki.genexus.com/enterprise-ai/wiki?321,Flows+in+Globant+Enterprise+AI) [in development].
90
+ The SDK consists of several modules, all accessible through a single package `pygeai`:
91
+
92
+ - **`pygeai`**: The package encapsulates all components of the SDK.
93
+ - **`admin`**: Allows the user to interact with some of the administration endpoints of Globant Enterprise AI.
94
+ - **`assistant`**: This module handles interactions with various Assistants, including [Data Analyst Assistants](https://wiki.genexus.com/enterprise-ai/wiki?886,Data+Analyst+Assistant+2.0), [RAG Assistants](https://wiki.genexus.com/enterprise-ai/wiki?44,RAG+Assistants+Introduction), [Chat with Data Assistants](https://wiki.genexus.com/enterprise-ai/wiki?159,Chat+with+Data+Assistant), [Chat with API Assistants](https://wiki.genexus.com/enterprise-ai/wiki?110,API+Assistant), and [Chat Assistants](https://wiki.genexus.com/enterprise-ai/wiki?708,Chat+Assistant [soon to be deprecated]).
95
+ - **`chat`**: This module offers facilities to chat with assistants/agents created in Globant Enterprise AI.
96
+ - **`core`**: This module handles interactions with the fundamental components of Globant Enterprise.
97
+ - **`cli`**: This module provides a command-line tool for interacting with the SDK.
98
+ - **`dbg`**: This module includes a debugger to troubleshoot potential SDK issues and gain detailed insights into its operations.
99
+ - **`evaluation`**: This module provides functionality for the evaluation module.
100
+ - **`flows`**: This module enables interactions with [Flows](https://wiki.genexus.com/enterprise-ai/wiki?321,Flows+in+Globant+Enterprise+AI) [in development].
101
+ - **`gam`**: This module allows interaction with [GAM] (https://wiki.genexus.com/commwiki/wiki?24746,Table+of+contents%3AGeneXus+Access+Manager+%28GAM%29,).
102
+ - **`health`**: Provides an easy way to check the status of the Globant Enterprise AI instance one is using.
103
+ - **`lab`**: This module facilitates interactions with [The Lab] (https://docs.globant.ai/en/wiki?1671,The+Lab).
104
+ - **`organization`**: This module facilitates interactions with Organizations and [Projects](https://wiki.genexus.com/enterprise-ai/wiki?565,Projects) in Globant Enterprise AI.
105
+ - **`migration`**: This module provides functionality to migrate Agents, Tools and Projects between instances and organizations.
106
+ - **`proxy`**: This module handles [integrations with MCP and A2A] (https://docs.globant.ai/en/wiki?1179,Importing+Tools+using+MCP+and+A2A+Servers).
79
107
 
80
108
  ## Usage
81
109
 
@@ -1,4 +1,4 @@
1
- pygeai/__init__.py,sha256=robCZ_NkO88faXr08sW9mAJ-eBXAcAUU24mINsALRVs,502
1
+ pygeai/__init__.py,sha256=umr3RpyF_UgMuplDKpprgCswPGG4LXkhBnOvcQlUbno,502
2
2
  pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  pygeai/admin/clients.py,sha256=2wuXSmTyg-gCbempDFCeI1yCKeOlKDBZsrFyFWxcwBg,6698
4
4
  pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
@@ -26,7 +26,7 @@ pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
26
26
  pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
27
27
  pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
28
28
  pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
29
- pygeai/cli/__init__.py,sha256=9fVRZ6_hmlv9adqGukFuS_s5Yb3jSyF8vv50-d4mbQo,117
29
+ pygeai/cli/__init__.py,sha256=wZjg1uiXApeacVQDfk5h3g_2Mupl6763O3ef5JISXBM,117
30
30
  pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
31
31
  pygeai/cli/geai.py,sha256=Smqxqc3XIy8RMuFVIsS9qNuYtqkNWba_CJJrhe7kW0E,4451
32
32
  pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
@@ -74,7 +74,7 @@ pygeai/core/base/clients.py,sha256=umtT6WoecCivXAxFajF-lMI5EbTNLKJBthuIHHixdNY,1
74
74
  pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
75
75
  pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
76
76
  pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
77
- pygeai/core/base/session.py,sha256=WVb4MmptwdgK7paHOSvfEle_HPXRRXO8CHgi0qbgtOg,2990
77
+ pygeai/core/base/session.py,sha256=XxHpTPeBfBogRUnqpIc-Rqx2drA4blFqtAyLPcoACb4,2971
78
78
  pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
79
  pygeai/core/common/config.py,sha256=uEPqTTonya8IBX0KSRI927cjUJ39JvYExnkqep-5U6o,4395
80
80
  pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
@@ -231,6 +231,7 @@ pygeai/tests/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
231
231
  pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=zu3MbeTlP4fA3yBYlAnB7O-iRJuDFccKXJX9z5nRgAw,43137
232
232
  pygeai/tests/cli/commands/lab/test_common.py,sha256=vJuS0rNoLB2IWWtfaWdtR0H9FkPW9gpee4URbdiDl70,8678
233
233
  pygeai/tests/cli/commands/lab/test_spec.py,sha256=f4hjUUfTfh-zHZtHZgG-yJ4b0uiLfrXsusojRheM6vg,14774
234
+ pygeai/tests/cli/docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
235
  pygeai/tests/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
236
  pygeai/tests/core/test_handlers.py,sha256=xzPLBXLF3sBt5B1VhQ4ynnwmyQEbSTIoWsL8Djvrnyc,2470
236
237
  pygeai/tests/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -273,27 +274,35 @@ pygeai/tests/health/test_clients.py,sha256=kfakkZHFMfo2IAN-PzmtMGmgR4iNiN1RpRopI
273
274
  pygeai/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
275
  pygeai/tests/integration/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
275
276
  pygeai/tests/integration/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
276
- pygeai/tests/integration/assistants/rag/test_create_rag.py,sha256=yTHlfTUi7DeZRzo4T25sqAAoS3mV5apN-Elf1DX8aoM,2121
277
+ pygeai/tests/integration/assistants/rag/test_create_rag.py,sha256=zmlRPNvDYGPxqcWvi2kFmuC9xPv7z6NAuXJcC7J_mzY,2612
277
278
  pygeai/tests/integration/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
- pygeai/tests/integration/chat/test_generate_image.py,sha256=byCQQK6dIy68yPAhAa66bh7N0Xz5WnKSClx1vaIIzZA,5431
279
+ pygeai/tests/integration/chat/test_generate_image.py,sha256=oT-WiFVX4MxQbbmiZkOMFC7yDnr3lYavGMTlXGYSjv8,5309
279
280
  pygeai/tests/integration/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
281
  pygeai/tests/integration/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
282
  pygeai/tests/integration/lab/agents/test_agents_list.py,sha256=F2KUCdeiaBC3dn8ARNWqSz_kJcRyA0HC1nquhamN35Q,4187
282
- pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=JLCnrij_uS4wTvu06Ng3ODfLTikFQwmPep4HG0ebUKI,14104
283
- pygeai/tests/integration/lab/agents/test_create_sharing_link.py,sha256=y-e8Q_TfuLz7XXMRERSKA_-OQJUMBIsJcK0lQ0Oh858,2467
283
+ pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=UzQACXzOvZzXFDw1RPTOrMsjhLEnfsO-DIPb455o9Dw,14394
284
+ pygeai/tests/integration/lab/agents/test_create_sharing_link.py,sha256=9v0MELsWH2sFqa15cQS3cQt3NGiugysWkPWDyBT73nQ,2698
284
285
  pygeai/tests/integration/lab/agents/test_delete_agent.py,sha256=sb3RfoZJdzQvcVdNcXY2C2FO3yY1ZNiAZ_6Ay6f331E,2524
285
286
  pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=oW1F6SENvhL9jZC021Rj-f_Xek2DSTx3SsZBr3YT6Hk,3666
286
287
  pygeai/tests/integration/lab/agents/test_publish_agent_revision.py,sha256=PGlYn8y2L2FUfSG3NGDPHl3ZyIiohhir1spYqO6J3xY,5182
287
- pygeai/tests/integration/lab/agents/test_update_agent.py,sha256=X3SpA1CPr4ZZQazsCSv8Z9rDcHJTih1c8AFKdwW80xg,11624
288
+ pygeai/tests/integration/lab/agents/test_update_agent.py,sha256=VMDw9Fc187HuZDwbXb7HIRqTdjp4VNu6Nx6ashvf2Dc,11422
289
+ pygeai/tests/integration/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
+ pygeai/tests/integration/lab/processes/test_create_process.py,sha256=cqN8qgY0dKpmNa1CUpoqPhpMc_3bE9O0q7jem30qtAE,14325
291
+ pygeai/tests/integration/lab/processes/test_get_process.py,sha256=NaG3UfboqvaOeIe0pLTWhxk5N22pqhHsorNsXsuU9sU,7680
292
+ pygeai/tests/integration/lab/processes/test_update_process.py,sha256=08XE264_ZGHUR3pITO5Ly55un5djan0-_heJidftY6Y,12297
293
+ pygeai/tests/integration/lab/reasoning_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
294
+ pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py,sha256=qHFUXsAmZjYaWDDhE8wR5pNlRcUt7MfWyfvMS3ZFtC8,2769
295
+ pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py,sha256=pKOlu8KIjUyzuhfd9_TPI6flMeAwVdvdI0oElj1ZbHo,3543
296
+ pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py,sha256=lBOIi0RU6iOXV4w5j5GumJlx6xASeteQgTF4kwnH4Xs,5795
288
297
  pygeai/tests/integration/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
- pygeai/tests/integration/lab/tools/test_create_tool.py,sha256=0Yzlu9ATnsxPVPa4vO4j-j5Hc6VyHQ2KoSaf0dfmqpk,12351
290
- pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=wy979nZh8ERd-k3jhJTjHqG4wxWE4sx-r4yn2nBc7Aw,2913
298
+ pygeai/tests/integration/lab/tools/test_create_tool.py,sha256=6pe69k90tt0fsyuNs7baoKUwMZT0FQq1NBfN9IzbCAw,12265
299
+ pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=HocyA9LPvTfMXyqOnW5qmip2dt6zSstDMfGSbD9Y2Ls,2883
291
300
  pygeai/tests/integration/lab/tools/test_get_parameter.py,sha256=r5TIaY_ABdyrtGfQwvs6F76dxEoy5HnvOSDwYpZo4ow,3610
292
- pygeai/tests/integration/lab/tools/test_get_tool.py,sha256=3fVDQlklmvOUgYDp0ATv5RqRmApgD4Qw_YGqjBOaOOo,3437
301
+ pygeai/tests/integration/lab/tools/test_get_tool.py,sha256=gZlfEBS0cwLfJmkjZoFdDLQuprJfDkeC9jC_3J9Q_qg,3461
293
302
  pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=KMLWXUmk_hKChKo4t5xEZtuIS1UmhAH6VdEq15KCrbY,3744
294
303
  pygeai/tests/integration/lab/tools/test_publish_tool_revision.py,sha256=AoCdHF8f7jUwAEL3PUvZMEE67m8OCcn_hqY67thJplU,4589
295
304
  pygeai/tests/integration/lab/tools/test_set_parameter.py,sha256=NqLVMlOF4QiTcc2HTdVaJuWCrEvb5QkOX_xScyjyWGU,4025
296
- pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=tZKZDoYS6RuTdRLgAmENq5tRvK-MohJGCt-s83QoBCA,11683
305
+ pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=YenjdJLaMMimVHGQnbDtUAzBFJ9xuu9KGz1e_I13Rtw,11712
297
306
  pygeai/tests/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
307
  pygeai/tests/lab/test_managers.py,sha256=AsOAvyCkRpbskEy214aV2TwrqilWH6bxOiTWDOb1twQ,29778
299
308
  pygeai/tests/lab/test_mappers.py,sha256=2cLSggf168XWFpeZeBR7uJ-8C32TKb7qA91i_9fr_b0,11409
@@ -378,7 +387,7 @@ pygeai/tests/snippets/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
378
387
  pygeai/tests/snippets/lab/agentic_flow_example_1.py,sha256=ihbGdb5ayvmrO1LPQXIHJe0T3xFesFzam9nSNK5aXt0,13461
379
388
  pygeai/tests/snippets/lab/agentic_flow_example_2.py,sha256=uUnl1bpyLje1ArY1B7NzA6iIgMc2VYL1OffCTeZnuws,8251
380
389
  pygeai/tests/snippets/lab/agentic_flow_example_3.py,sha256=mnDbSZixOlLoG0OFsMDQLdwQYFCL-HeL35WrOxoHuto,19134
381
- pygeai/tests/snippets/lab/agentic_flow_example_4.py,sha256=M9STkCuWcfpnfEagji3SgyhTn29hrO5P_eAmbup-AAo,17963
390
+ pygeai/tests/snippets/lab/agentic_flow_example_4.py,sha256=Coda7IoTtheL8hmVZhHVj2-jGYHQqzXsJAXeDDZA4sQ,17434
382
391
  pygeai/tests/snippets/lab/assistant_to_agent.py,sha256=RHzGV1uHH4BQNHLDtH1XJyzJWDaeil-cmPke8gKDew0,7587
383
392
  pygeai/tests/snippets/lab/crud_ui.py,sha256=3ehUGUyAJSJI820GyEcmT7rTC8KRno_zaLd56qlTSPU,23404
384
393
  pygeai/tests/snippets/lab/runner_1.py,sha256=QD92MvC22wpWj6YyrSgpp46EcL0ciac2x1zalS7-GkI,7960
@@ -405,7 +414,7 @@ pygeai/tests/snippets/lab/processes/kbs/get_kb.py,sha256=yxq-9nWhIVUefvkbwDkRINi
405
414
  pygeai/tests/snippets/lab/processes/kbs/list_kbs.py,sha256=bAjVbGbMpXswMld03WhjQ00hHY7_0zgI-Y5WTimi1g8,869
406
415
  pygeai/tests/snippets/lab/processes/kbs/try_all.py,sha256=rfTOHHn73Qyn5nZi6A_ScroeCvs8lTSAY2H_PFkPwEo,2623
407
416
  pygeai/tests/snippets/lab/samples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
408
- pygeai/tests/snippets/lab/samples/summarize_files.py,sha256=AjNOaH1kTT9wx0yKwqaV42U2SofS5b-m_vw3q4Fk1Lo,5851
417
+ pygeai/tests/snippets/lab/samples/summarize_files.py,sha256=BkLqYW2yhlqf8T3s8vtGSS1Yl4Ff0qWIAtMOzCPCufo,5782
409
418
  pygeai/tests/snippets/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
410
419
  pygeai/tests/snippets/lab/strategies/create_reasoning_strategy.py,sha256=e4NM2SE06GuIGmff43hOT7ANsSRVZ1fMwq1z37Fjbcw,749
411
420
  pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py,sha256=OxxXIRWH_c6RhkjlHdoqnVFnQRv7-1OlYCVivwzbGvg,281
@@ -428,12 +437,12 @@ pygeai/tests/snippets/lab/use_cases/create_lab_expert.py,sha256=CdiuEBW6CAEGXQwN
428
437
  pygeai/tests/snippets/lab/use_cases/create_tool_headless_web_browser.py,sha256=T1HgeYD8GfV98anO4mC7Q-uLsI5hhGdbB3fOntn-Hdo,6054
429
438
  pygeai/tests/snippets/lab/use_cases/create_web_designer.py,sha256=Hpl690wEDX1iCrm1EulZd0CNZDeBsik0GsUEeMvgIvc,10817
430
439
  pygeai/tests/snippets/lab/use_cases/create_web_reader.py,sha256=BlQ_JsQ3xsmFI7HwMPlJhFKapTqa3XEQp--c8095wK0,10665
431
- pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py,sha256=HZqbk63ULwtD0gJ7ie2O5UI81IKxAK0u9xzLOUGKU8M,5592
432
- pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py,sha256=sREwmzPP1UbN9suXK7m_4FsVfqtQlr39TMmrK4dQxu8,5599
440
+ pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py,sha256=pknGVJY042Fw8mdCerzO1_ZnupC6WjGJPLricXTcS0c,5523
441
+ pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py,sha256=uXosAiO9NTGXSoBbHEJimyl4ngjK7twBxcDhjxGRP_I,5520
433
442
  pygeai/tests/snippets/lab/use_cases/update_cli_expert.py,sha256=qRrKbxcJn9tIGUtJh3DlvbD-wrWQAU0F5ma6-aSvAVw,98580
434
443
  pygeai/tests/snippets/lab/use_cases/update_lab_expert.py,sha256=-YLKCxoIXV9RNTh5D48qtns3SWmbDojDERqQ92MtyAc,173266
435
444
  pygeai/tests/snippets/lab/use_cases/update_web_designer.py,sha256=MRKwJmnh_O_YF7i1zQl--yN7Ib5P7D7y2Keey02pK0A,10620
436
- pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=OOs23oJF6bm-C4rD-ILo88Lqq0eNI7rJYImjXwLt8NE,11674
445
+ pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=BgHpf4kiLVQEc-YrapaiuomqIfzbRzr6kniInAhgO94,11620
437
446
  pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py,sha256=a3oj9i2RMnGj-BpDjSthDZVvAzcEyXo9cqygJ1jaVqA,14459
438
447
  pygeai/tests/snippets/migrate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
448
  pygeai/tests/snippets/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -502,9 +511,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
502
511
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
503
512
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
504
513
  pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
505
- pygeai-0.4.0b12.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
506
- pygeai-0.4.0b12.dist-info/METADATA,sha256=4GKLJjLWFsGzD8vMzbE90o9HKovdZsG4_Ip_EBAOBU0,6941
507
- pygeai-0.4.0b12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
508
- pygeai-0.4.0b12.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
509
- pygeai-0.4.0b12.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
510
- pygeai-0.4.0b12.dist-info/RECORD,,
514
+ pygeai-0.5.0.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
515
+ pygeai-0.5.0.dist-info/METADATA,sha256=rXUkkMjrF0Ix5l1Hopo4I0eaChqi1FNQyKVnYmlAeys,7975
516
+ pygeai-0.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
517
+ pygeai-0.5.0.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
518
+ pygeai-0.5.0.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
519
+ pygeai-0.5.0.dist-info/RECORD,,