pygeai 0.4.0b12__py3-none-any.whl → 0.6.0b3__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 (88) hide show
  1. pygeai/__init__.py +1 -1
  2. pygeai/auth/__init__.py +0 -0
  3. pygeai/auth/clients.py +55 -0
  4. pygeai/auth/endpoints.py +2 -0
  5. pygeai/cli/__init__.py +0 -1
  6. pygeai/cli/commands/auth.py +123 -0
  7. pygeai/cli/commands/base.py +22 -1
  8. pygeai/cli/commands/docs.py +105 -0
  9. pygeai/cli/texts/help.py +157 -24
  10. pygeai/core/base/session.py +1 -1
  11. pygeai/core/files/responses.py +4 -3
  12. pygeai/lab/clients.py +3 -3
  13. pygeai/lab/tools/clients.py +4 -4
  14. pygeai/tests/admin/test_clients.py +143 -0
  15. pygeai/tests/auth/__init__.py +0 -0
  16. pygeai/tests/auth/test_clients.py +105 -0
  17. pygeai/tests/cli/commands/lab/test_ai_lab.py +41 -35
  18. pygeai/tests/cli/commands/lab/test_spec.py +24 -56
  19. pygeai/tests/cli/commands/test_chat.py +21 -3
  20. pygeai/tests/cli/commands/test_evaluation.py +649 -0
  21. pygeai/tests/cli/commands/test_secrets.py +171 -0
  22. pygeai/tests/cli/docker/__init__.py +0 -0
  23. pygeai/tests/core/base/data/models.py +7 -0
  24. pygeai/tests/core/base/test_mappers.py +43 -11
  25. pygeai/tests/core/base/test_models.py +3 -1
  26. pygeai/tests/core/base/test_responses.py +53 -0
  27. pygeai/tests/core/common/test_config.py +2 -3
  28. pygeai/tests/core/files/test_mappers.py +137 -0
  29. pygeai/tests/core/plugins/__init__.py +0 -0
  30. pygeai/tests/core/plugins/test_clients.py +64 -0
  31. pygeai/tests/evaluation/__init__.py +0 -0
  32. pygeai/tests/evaluation/dataset/__init__.py +0 -0
  33. pygeai/tests/evaluation/dataset/test_clients.py +263 -0
  34. pygeai/tests/evaluation/plan/__init__.py +0 -0
  35. pygeai/tests/evaluation/plan/test_clients.py +193 -0
  36. pygeai/tests/evaluation/result/__init__.py +0 -0
  37. pygeai/tests/evaluation/result/test_clients.py +64 -0
  38. pygeai/tests/integration/assistants/rag/test_create_rag.py +24 -5
  39. pygeai/tests/integration/chat/test_generate_image.py +2 -6
  40. pygeai/tests/integration/lab/agents/test_agents_list.py +1 -1
  41. pygeai/tests/integration/lab/agents/test_create_agent.py +16 -10
  42. pygeai/tests/integration/lab/agents/test_create_sharing_link.py +5 -2
  43. pygeai/tests/integration/lab/agents/test_delete_agent.py +2 -2
  44. pygeai/tests/integration/lab/agents/test_get_agent.py +1 -1
  45. pygeai/tests/integration/lab/agents/test_publish_agent_revision.py +2 -2
  46. pygeai/tests/integration/lab/agents/test_update_agent.py +18 -21
  47. pygeai/tests/integration/lab/processes/__init__.py +0 -0
  48. pygeai/tests/integration/lab/processes/test_create_process.py +345 -0
  49. pygeai/tests/integration/lab/processes/test_create_task.py +211 -0
  50. pygeai/tests/integration/lab/processes/test_delete_process.py +111 -0
  51. pygeai/tests/integration/lab/processes/test_get_process.py +201 -0
  52. pygeai/tests/integration/lab/processes/test_list_process_instances.py +91 -0
  53. pygeai/tests/integration/lab/processes/test_list_processes.py +138 -0
  54. pygeai/tests/integration/lab/processes/test_publish_process_revision.py +232 -0
  55. pygeai/tests/integration/lab/processes/test_update_process.py +289 -0
  56. pygeai/tests/integration/lab/reasoning_strategies/__init__.py +0 -0
  57. pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py +70 -0
  58. pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py +93 -0
  59. pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py +149 -0
  60. pygeai/tests/integration/lab/tools/test_create_tool.py +13 -17
  61. pygeai/tests/integration/lab/tools/test_delete_tool.py +4 -4
  62. pygeai/tests/integration/lab/tools/test_get_parameter.py +1 -1
  63. pygeai/tests/integration/lab/tools/test_get_tool.py +4 -4
  64. pygeai/tests/integration/lab/tools/test_list_tools.py +1 -1
  65. pygeai/tests/integration/lab/tools/test_publish_tool_revision.py +1 -1
  66. pygeai/tests/integration/lab/tools/test_set_parameter.py +1 -1
  67. pygeai/tests/integration/lab/tools/test_update_tool.py +9 -10
  68. pygeai/tests/lab/agents/test_clients.py +17 -34
  69. pygeai/tests/lab/processes/test_clients.py +30 -93
  70. pygeai/tests/lab/processes/test_mappers.py +12 -71
  71. pygeai/tests/lab/strategies/test_clients.py +63 -63
  72. pygeai/tests/lab/test_managers.py +3 -6
  73. pygeai/tests/lab/test_models.py +9 -8
  74. pygeai/tests/lab/tools/test_clients.py +22 -45
  75. pygeai/tests/migration/test_strategies.py +16 -16
  76. pygeai/tests/organization/test_mappers.py +11 -4
  77. pygeai/tests/organization/test_responses.py +137 -0
  78. pygeai/tests/snippets/lab/agentic_flow_example_4.py +23 -23
  79. pygeai/tests/snippets/lab/samples/summarize_files.py +3 -3
  80. pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py +3 -3
  81. pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py +11 -11
  82. pygeai/tests/snippets/lab/use_cases/update_web_reader.py +1 -2
  83. {pygeai-0.4.0b12.dist-info → pygeai-0.6.0b3.dist-info}/METADATA +44 -16
  84. {pygeai-0.4.0b12.dist-info → pygeai-0.6.0b3.dist-info}/RECORD +88 -53
  85. {pygeai-0.4.0b12.dist-info → pygeai-0.6.0b3.dist-info}/WHEEL +0 -0
  86. {pygeai-0.4.0b12.dist-info → pygeai-0.6.0b3.dist-info}/entry_points.txt +0 -0
  87. {pygeai-0.4.0b12.dist-info → pygeai-0.6.0b3.dist-info}/licenses/LICENSE +0 -0
  88. {pygeai-0.4.0b12.dist-info → pygeai-0.6.0b3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygeai
3
- Version: 0.4.0b12
3
+ Version: 0.6.0b3
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=VpX09d3yWymZmWS4bQbYYIWJLEQpYTWJyTKhVGHSwb0,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
@@ -18,6 +18,9 @@ pygeai/assistant/rag/endpoints.py,sha256=7YlHIvAYj3-xsCWtVMDYobxXbAO0lCo9yJdOrQx
18
18
  pygeai/assistant/rag/mappers.py,sha256=n3aeNXqz_7zq_JWq5wJfeNX1kvV3arOxAoUsqRYOZsc,8645
19
19
  pygeai/assistant/rag/models.py,sha256=g5UiHuRjobgU1WgUMxeBzXykxgJ5q7eb_YY8qDciNvw,15732
20
20
  pygeai/assistant/rag/responses.py,sha256=fY97ibsCVLQ3Ssnjuvj-JeA883WqjOw7ZdxbpQp_B1E,196
21
+ pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ pygeai/auth/clients.py,sha256=MAiCVxYEi8EpEmZfWV0xui4WoC11Ch1iQfUuTskcOkY,2381
23
+ pygeai/auth/endpoints.py,sha256=Au0w6bADAX7avQEErwfs7bpKOTuZqkkxCCa1rNN0J94,191
21
24
  pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
25
  pygeai/chat/clients.py,sha256=QEyeTIPxp6xXKAEkE_XkjIxZDnaH808GKhIYr7ulrSA,10785
23
26
  pygeai/chat/endpoints.py,sha256=tIPBK5EiQGbQlDZz96A9AfumIFs4Z6QiD_oK8PTVQFg,206
@@ -26,7 +29,7 @@ pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
26
29
  pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
27
30
  pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
28
31
  pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
29
- pygeai/cli/__init__.py,sha256=9fVRZ6_hmlv9adqGukFuS_s5Yb3jSyF8vv50-d4mbQo,117
32
+ pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
30
33
  pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
31
34
  pygeai/cli/geai.py,sha256=Smqxqc3XIy8RMuFVIsS9qNuYtqkNWba_CJJrhe7kW0E,4451
32
35
  pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
@@ -35,11 +38,13 @@ pygeai/cli/parsers.py,sha256=8kKvUbg33K4VbE7ryHwq3Uwwp42BK6ZOAKycYjEj1Io,2525
35
38
  pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
36
39
  pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
37
40
  pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
38
- pygeai/cli/commands/base.py,sha256=kkJEObpT2xSiObWAliJfGV73JS3LjLTMq7FEd4SpxkE,6930
41
+ pygeai/cli/commands/auth.py,sha256=xiW9GEXZy7ti3HJMUEX5fSKe6XqxTVciZiCz1Trws7E,3361
42
+ pygeai/cli/commands/base.py,sha256=pnZDBKLv4ZN1mEvIQOR35S9n07mYvCuxa-Nrgm8DOao,7397
39
43
  pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
40
44
  pygeai/cli/commands/chat.py,sha256=Y2e3NjDXYjutdxbpGUDmewZfKnR_QHb69Jz4L-2GHY4,25170
41
45
  pygeai/cli/commands/common.py,sha256=zL1cWKMTqzqMsHBDFfVzbZe0i2l0hgJNpzjSRgvloY8,16568
42
46
  pygeai/cli/commands/configuration.py,sha256=J1Y8AH1xYWvcY4bzqKvF-_ggEDJ22Dv4iEcCBi2pq_8,4140
47
+ pygeai/cli/commands/docs.py,sha256=vk-nM4r3Ru07rxkjF3AgJCw6QnsSHuBL7W6WF8WbCjE,3438
43
48
  pygeai/cli/commands/embeddings.py,sha256=om_RR3CHgfmHcTN43F6TzP71n-BS8Lf589wyBMVZJ3g,4220
44
49
  pygeai/cli/commands/evaluation.py,sha256=7fgqihWtJ1h7dGXdTR3AbanNAIjeAI5qY7TAaTSi6WI,63828
45
50
  pygeai/cli/commands/feedback.py,sha256=nJdrI974N_3IsloJMqe7GRay5_ijOSkeZ9MIdGeQZa0,2442
@@ -63,7 +68,7 @@ pygeai/cli/commands/lab/options.py,sha256=T13Vi97zochr0cU4yjyvvwWRPENILFDYpvqpU4
63
68
  pygeai/cli/commands/lab/spec.py,sha256=EjNdEnljKpYPQyT4d4ViAPrM1g7oIitv6ddnWVkWXPk,8301
64
69
  pygeai/cli/commands/lab/utils.py,sha256=uxhgHvCRrV6WYRxR2qd3nED_hhXcxJ1tAU8MlzoshEg,456
65
70
  pygeai/cli/texts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- pygeai/cli/texts/help.py,sha256=0idAj91GTubRRXgN1t8_SRiF1Ou89ssHC5vKwONDxMM,16074
71
+ pygeai/cli/texts/help.py,sha256=cdTdEO9QRm3SVCzCEJq4vhunKHkGdpzWfmdoel8TDsw,22054
67
72
  pygeai/core/__init__.py,sha256=bbNktFp7t2dOBIvWto-uGVBW8acaKIe8EKcfuLV-HmA,189
68
73
  pygeai/core/handlers.py,sha256=la1QcQbLwfiNd-xDQ3jtWRHmeEm6E93Rfx5c-5bkLmw,934
69
74
  pygeai/core/models.py,sha256=uIwrmlB6yuulScUcYIBSH3Sxm5YyzaicV7Dz2bYLi2I,24229
@@ -74,7 +79,7 @@ pygeai/core/base/clients.py,sha256=umtT6WoecCivXAxFajF-lMI5EbTNLKJBthuIHHixdNY,1
74
79
  pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
75
80
  pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
76
81
  pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
77
- pygeai/core/base/session.py,sha256=WVb4MmptwdgK7paHOSvfEle_HPXRRXO8CHgi0qbgtOg,2990
82
+ pygeai/core/base/session.py,sha256=XxHpTPeBfBogRUnqpIc-Rqx2drA4blFqtAyLPcoACb4,2971
78
83
  pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
84
  pygeai/core/common/config.py,sha256=uEPqTTonya8IBX0KSRI927cjUJ39JvYExnkqep-5U6o,4395
80
85
  pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
@@ -96,7 +101,7 @@ pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWY
96
101
  pygeai/core/files/managers.py,sha256=Hzq-XMEJnnNrh3pG5PViQqSt1WrbO-z5wHXsoGrSQxA,7158
97
102
  pygeai/core/files/mappers.py,sha256=8PXXsQJZEH45yLISn_xsOZmcRUEe_F6ELkUeR1lzc-M,1462
98
103
  pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
99
- pygeai/core/files/responses.py,sha256=fnNLK-stnXGnB9d38szWrZMu7JLTtXghAoRZnFTFJCE,356
104
+ pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
100
105
  pygeai/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
106
  pygeai/core/llm/clients.py,sha256=TjSFULqFn97wBYUnkPVinuAquGlryzawMI7v7S3ads0,3095
102
107
  pygeai/core/llm/endpoints.py,sha256=EF5wNJH8Au3ZYl_hF2uCRL4hPSe2_MIy6TGpzubNVak,435
@@ -144,7 +149,7 @@ pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
149
  pygeai/health/clients.py,sha256=U2eb1tkXt1Rf_KdV0ZFQS2k4wGnJTXHHd9-Er0eWQuw,1011
145
150
  pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
146
151
  pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
- pygeai/lab/clients.py,sha256=5JebyNpKCVwAQpeOAkJPIHRf_6hoKA3uUm9xewm01UQ,816
152
+ pygeai/lab/clients.py,sha256=vBQHSK3nNWuXxycGlTDKGDtv140Q-0Y4GrvoHkvSeu0,949
148
153
  pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
149
154
  pygeai/lab/managers.py,sha256=EGU2NTpZyWtPo-VBX_wSrNOjLNPBIt7cxha9lIbuXgk,70725
150
155
  pygeai/lab/models.py,sha256=1m41gSqpXZVO9AcPVxzlsC-TgxZcCsgGUbpN5zoDMjU,71451
@@ -165,7 +170,7 @@ pygeai/lab/strategies/clients.py,sha256=_a1yc8kwd50Yv4g1jqfa0gRnMiROR7Dn0gx3xqFU
165
170
  pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
166
171
  pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
167
172
  pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
- pygeai/lab/tools/clients.py,sha256=3yESr0NQoO7qKi9s7VodxaV_4qjBlJ6cT_fBmEhyT48,28151
173
+ pygeai/lab/tools/clients.py,sha256=bwOuMrkGKzNbUal8gAwkz-PNiVZ_ucw9klgP6YZB6QA,28145
169
174
  pygeai/lab/tools/endpoints.py,sha256=HiGoMs4OVeCgH7EAERTtifFPl53NryA1Awh7D6AO8bA,699
170
175
  pygeai/lab/tools/mappers.py,sha256=bYi5k36h0k4mCvOnV-r8YOHKz0U9P0mH21GNs20w2eM,4998
171
176
  pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
@@ -194,7 +199,7 @@ pygeai/proxy/servers.py,sha256=gWEceLmla_doKfEx6UJNIfrcr5USqkiYfz0LB9O80vA,11518
194
199
  pygeai/proxy/tool.py,sha256=gxDd_jABg68vB_WOAGsosd0dQc3AbRKnFqY6qpXsBDk,2338
195
200
  pygeai/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
196
201
  pygeai/tests/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
- pygeai/tests/admin/test_clients.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
+ pygeai/tests/admin/test_clients.py,sha256=UnTPxDd2Jvu8qCz1mPEsduWTO0RqV7_2DwTGyYwq8cs,6498
198
203
  pygeai/tests/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
204
  pygeai/tests/assistants/test_clients.py,sha256=q6WRPdtqvTkfZGDBoAoiU-Tt7eD-B1dMD45U-1Le8HE,8375
200
205
  pygeai/tests/assistants/test_managers.py,sha256=EbwGVabdCBqgMryjRMoWVFWa5kR9HqzsckB-DR3EuSA,11196
@@ -203,6 +208,8 @@ pygeai/tests/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
203
208
  pygeai/tests/assistants/rag/test_clients.py,sha256=fHKi1qwBQSuMz7UPP9zPQslBX9Bsiqlt3SylKBzXae8,14713
204
209
  pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP79jiMC-R1Vnvus,8359
205
210
  pygeai/tests/assistants/rag/test_models.py,sha256=45eAQ4vE3gMvE8qWKlXg2klulQMZ3riHx5XWurE0mVA,10790
211
+ pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ pygeai/tests/auth/test_clients.py,sha256=QvVr0CC4wD4lV7tnS2Sg1vc4-ucxmjiXuicyDAeTrgg,4253
206
213
  pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
214
  pygeai/tests/chat/test_clients.py,sha256=zYV3p9F0UPUoyYZlH-c8CoSL-6abrHhbS_6bAtkHa5E,7655
208
215
  pygeai/tests/chat/test_iris.py,sha256=kWGrQ0T7E5Lg9-F9157GvF32l1sbaejbI5qbGKjWkxM,1186
@@ -212,9 +219,10 @@ pygeai/tests/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
212
219
  pygeai/tests/cli/test_parsers.py,sha256=EoZur-PByaXnNmXbIileISFGJLYiOvp3M6VO1RIKFHM,7442
213
220
  pygeai/tests/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
221
  pygeai/tests/cli/commands/test_assistant.py,sha256=IT1ORQZRFoNvGXn67SweI8DU3d0G8fJbnLAFfEJCV0k,10547
215
- pygeai/tests/cli/commands/test_chat.py,sha256=ePqDnYylsgY4MbojYN75JL_Ao349YVkZevVQN1h-KKM,4989
222
+ pygeai/tests/cli/commands/test_chat.py,sha256=4TK_sRqEQlgpCribkMjKqzAONVxAP7oSkfYw5bIRYb8,6120
216
223
  pygeai/tests/cli/commands/test_common.py,sha256=gv1GOEAXq5IqiXu5xjANq4pxyjClcu2taCHIaG38Gjc,13514
217
224
  pygeai/tests/cli/commands/test_embeddings.py,sha256=E6A5AlvQHgK97bqTUauvJBg-Cn34IJ3f92wBJpCsL-0,4535
225
+ pygeai/tests/cli/commands/test_evaluation.py,sha256=F8ZYcTZ1hRKw12j5tVdF2BVSGLfllIDG1q_NxofnBY0,30620
218
226
  pygeai/tests/cli/commands/test_feedback.py,sha256=gHJ8Jt8kEemTvlpWLCyZCo73i0iBPlKhONRj4bJfhWU,3192
219
227
  pygeai/tests/cli/commands/test_files.py,sha256=cJ0W4f8eg1T2TBZCah1k93nrk7R8ZL6_1HwCOhJOacI,7583
220
228
  pygeai/tests/cli/commands/test_gam.py,sha256=oIFj4HJV6z1fQkIU2BmgP1VJ2zJ65UWDM6a3G8AenHM,8318
@@ -223,24 +231,27 @@ pygeai/tests/cli/commands/test_migrate.py,sha256=NPUe58OC74e47WKjqTKaBERhW2X8fGe
223
231
  pygeai/tests/cli/commands/test_organization.py,sha256=ret6Aboh4ew34VSo_dZcfBOrtce1dDNQO7DvyGUbFx4,9227
224
232
  pygeai/tests/cli/commands/test_rag.py,sha256=7SdTbCgdPDoLca4Y7LECkL6AVPpgIYXiXyTRubBNe1Y,11761
225
233
  pygeai/tests/cli/commands/test_rerank.py,sha256=G9Kc-VnLJgx_fYy1qgoL0swYp9-VV6OSL9eNnU0Xkpw,5305
234
+ pygeai/tests/cli/commands/test_secrets.py,sha256=CXd2ZTpuUGK4SgfPuSGo9p_C2TiILj4HJUi_O4n0XK0,7562
226
235
  pygeai/tests/cli/commands/test_show_help.py,sha256=RHF-xzrgk25OrQTdxsAfnEspDfvmyAtEryYEVpnaqNc,1608
227
236
  pygeai/tests/cli/commands/test_usage_limits.py,sha256=tt2LBaWmUhQnp9X3fHZc5-xpzKCVn-IHyZqT3cJn3ao,18636
228
237
  pygeai/tests/cli/commands/test_validators.py,sha256=HSKL9_nwTk18vrCZVBs8j1BEohgaIhOurW870hLzkpA,7445
229
238
  pygeai/tests/cli/commands/test_version.py,sha256=e6TIxU-USX8o0q3S2OGEGb-yMTHTb45yiUr2pN3zJ9Y,3989
230
239
  pygeai/tests/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
- pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=zu3MbeTlP4fA3yBYlAnB7O-iRJuDFccKXJX9z5nRgAw,43137
240
+ pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=ouOGHdROpK3zEf6BsfC4tt5dGUE72MU-E-w29rgHpaQ,42841
232
241
  pygeai/tests/cli/commands/lab/test_common.py,sha256=vJuS0rNoLB2IWWtfaWdtR0H9FkPW9gpee4URbdiDl70,8678
233
- pygeai/tests/cli/commands/lab/test_spec.py,sha256=f4hjUUfTfh-zHZtHZgG-yJ4b0uiLfrXsusojRheM6vg,14774
242
+ pygeai/tests/cli/commands/lab/test_spec.py,sha256=aymKywo6TH7EJVkPW_R3RXLQeCyXX8UFbnXwlO46q0Y,12474
243
+ pygeai/tests/cli/docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
244
  pygeai/tests/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
245
  pygeai/tests/core/test_handlers.py,sha256=xzPLBXLF3sBt5B1VhQ4ynnwmyQEbSTIoWsL8Djvrnyc,2470
236
246
  pygeai/tests/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
- pygeai/tests/core/base/test_mappers.py,sha256=OTPzct9vRBr6M-lxuED4w_bn9Ne65DHH-jBrHwY87gA,24577
238
- pygeai/tests/core/base/test_models.py,sha256=jKbV69UqyO6cI_17f26UcBVGXmvxlfmH4AoxL40Z2gM,16074
247
+ pygeai/tests/core/base/test_mappers.py,sha256=CH6xIVebzqW43YOhmSDQtzVlRRlpZUTwNGWtsBKtUBA,25715
248
+ pygeai/tests/core/base/test_models.py,sha256=SC1AKP56t-nM4wskLfGEnw_bZffi4dj9jqxPjhTvPak,16362
249
+ pygeai/tests/core/base/test_responses.py,sha256=ToRBmy3tTYMT2jET0OCt3N0JT15edZ8Obeh2QWGGEJI,1798
239
250
  pygeai/tests/core/base/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
251
  pygeai/tests/core/base/data/mappers.py,sha256=0SEtD2m48ZOYj6AesxzB6LbGSNrxoyq2BhI0gLACkII,3135
241
- pygeai/tests/core/base/data/models.py,sha256=zdbhWJXwfglFhpwHUWaUpSZ8fn9n5aR61yizdeT7gcI,8649
252
+ pygeai/tests/core/base/data/models.py,sha256=EKSSst7IrWbRc_TzGoFh6PMlubqEMOuPV6DcLHYDjAE,8890
242
253
  pygeai/tests/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
- pygeai/tests/core/common/test_config.py,sha256=OGcB3pEE0WSRRUZ3_2qPML0G4TY5TN-ginAb2bwdn9E,8530
254
+ pygeai/tests/core/common/test_config.py,sha256=wmh9mb3KN7LU_EkeYl1NiiARdZKYwultAokUYNGEOMY,8431
244
255
  pygeai/tests/core/common/test_decorators.py,sha256=HK3I46fTRZ8AQjVd_Fme_Wvoy2-SIl5GOGhldmd6xRc,2405
245
256
  pygeai/tests/core/common/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
257
  pygeai/tests/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -250,10 +261,13 @@ pygeai/tests/core/feedback/test_clients.py,sha256=hHNs6kYLusLZgLVYQlSYet0uhNQj84
250
261
  pygeai/tests/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
262
  pygeai/tests/core/files/test_clients.py,sha256=fo_aMLICgSeOg2kB8uVY0cHwnPrsPLnyleN7yknvmVY,4592
252
263
  pygeai/tests/core/files/test_managers.py,sha256=hGRTJoC4hVTVryz2042Ue2PIJ_BEoSwU9IVpqbgwfx0,10811
264
+ pygeai/tests/core/files/test_mappers.py,sha256=FGLsUCCagV8oJOJxg77QPHtWGClJreAn2beBHX6BF3g,4680
253
265
  pygeai/tests/core/files/test_models.py,sha256=H54GUf3OWBF1OL0ewwKlavFaKO80OzzfN31lDylsvzw,4297
254
266
  pygeai/tests/core/files/test_responses.py,sha256=ppb3P4ME_SowDHZiKSriAZAT0vbI-zbiO9pW9vxNfTU,5222
255
267
  pygeai/tests/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
268
  pygeai/tests/core/llm/test_clients.py,sha256=re73cBZREfP7mGEt5CNMXH4WjZ9pzzEwtbBvYyEJ26w,6094
269
+ pygeai/tests/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
+ pygeai/tests/core/plugins/test_clients.py,sha256=sGvv4XF0Kw-dyq_9YpwKU1lHXxgPrhcfsBH9xMje8mw,2360
257
271
  pygeai/tests/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
272
  pygeai/tests/core/rerank/test_clients.py,sha256=QOn9ayry0JPdpA9plco0WvqO8DKtnKz5LBioSA6j974,2659
259
273
  pygeai/tests/core/rerank/test_managers.py,sha256=qWu_tOXghsPJ8ENbMlcVpPFfxtRQteHmAnhESDRxZUU,4834
@@ -266,6 +280,13 @@ pygeai/tests/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
266
280
  pygeai/tests/core/utils/test_console.py,sha256=EvP0HpvD4bpq2WouH53UYovgh4Gq29xMudiLt-UNyA0,3266
267
281
  pygeai/tests/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
282
  pygeai/tests/dbg/test_debugger.py,sha256=L22axGlJlIDJFUMs9n0AjPYVATtFuT5GpTIi9hR7kig,6371
283
+ pygeai/tests/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
+ pygeai/tests/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
+ pygeai/tests/evaluation/dataset/test_clients.py,sha256=huWaCSiWHrZGxGMpXzjq__ciYsiROZOszcv0qouFT8I,11284
286
+ pygeai/tests/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
+ pygeai/tests/evaluation/plan/test_clients.py,sha256=IbP-JXHY2z_-KiZ_4T84uwP3fqq5KYCG-THjjRxQi6M,8725
288
+ pygeai/tests/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
+ pygeai/tests/evaluation/result/test_clients.py,sha256=Lk7vXrUbOiMnCRk3DTHQdIMf5b6Vmn-Dy3NiJS_ahEU,2487
269
290
  pygeai/tests/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
291
  pygeai/tests/gam/test_clients.py,sha256=vNz-4ux0cubztTY-_fEPWEoMCt5VAmZLecd0V-sEK1E,8906
271
292
  pygeai/tests/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -273,53 +294,67 @@ pygeai/tests/health/test_clients.py,sha256=kfakkZHFMfo2IAN-PzmtMGmgR4iNiN1RpRopI
273
294
  pygeai/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
295
  pygeai/tests/integration/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
275
296
  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
297
+ pygeai/tests/integration/assistants/rag/test_create_rag.py,sha256=BIt5WkxUIyqV745tLxd48h8Iq3gzPZen7D0hUGCN6-0,2600
277
298
  pygeai/tests/integration/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
- pygeai/tests/integration/chat/test_generate_image.py,sha256=byCQQK6dIy68yPAhAa66bh7N0Xz5WnKSClx1vaIIzZA,5431
299
+ pygeai/tests/integration/chat/test_generate_image.py,sha256=grLr46o1Ey9QDXCKvXLDzD7zzE3hoC5H1l86g-fLTxI,5297
279
300
  pygeai/tests/integration/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
301
  pygeai/tests/integration/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
- 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
284
- pygeai/tests/integration/lab/agents/test_delete_agent.py,sha256=sb3RfoZJdzQvcVdNcXY2C2FO3yY1ZNiAZ_6Ay6f331E,2524
285
- pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=oW1F6SENvhL9jZC021Rj-f_Xek2DSTx3SsZBr3YT6Hk,3666
286
- 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
302
+ pygeai/tests/integration/lab/agents/test_agents_list.py,sha256=6VwDwWZA-8CWUB9_I32d8ww1rR2fEkopGO4UoiVU8rs,4175
303
+ pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=PdpZsuw0Ad3W6FIwQRRsZz1ivtQMUuN4JlbTyzdHPZg,14356
304
+ pygeai/tests/integration/lab/agents/test_create_sharing_link.py,sha256=J4_CS8lHO_vrCUzZEXUsJwi8A_0gkHNtXSqkxVPErQI,2686
305
+ pygeai/tests/integration/lab/agents/test_delete_agent.py,sha256=JVMg43gOgPJf5s4TX73d_LeMISUkQfocnIbuKrG9dVs,2499
306
+ pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=sNuh1SHxzbrvTweya1xVSfqapJP2dzY1S-E5Bydi4Mw,3654
307
+ pygeai/tests/integration/lab/agents/test_publish_agent_revision.py,sha256=rA_4ovD1o_gvjA61-SUvPpJ9vuff7KW0J5fX_xI-rx8,5157
308
+ pygeai/tests/integration/lab/agents/test_update_agent.py,sha256=V8959eS6XzN8O8bIJwg-FlavrXbY7DvVI4Mms7ggqjM,11384
309
+ pygeai/tests/integration/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
+ pygeai/tests/integration/lab/processes/test_create_process.py,sha256=L6ab-oylHNqLdHYkLEqoHj4exHTSmt46C6t-5ZhEQPc,14313
311
+ pygeai/tests/integration/lab/processes/test_create_task.py,sha256=I5X9mjy1caFXBKS7IFNqBtpbyFefZr73bSeOQA3MF3k,7848
312
+ pygeai/tests/integration/lab/processes/test_delete_process.py,sha256=usCxPl8_g5XzCjzDxRHEzJoptzHuhZTyZ2EVD-zHVf8,4290
313
+ pygeai/tests/integration/lab/processes/test_get_process.py,sha256=SIGj1edQNMNZI1Krd3lFeDDBkfOXgnKJlIAm-33qbJw,7668
314
+ pygeai/tests/integration/lab/processes/test_list_process_instances.py,sha256=A3E5XkkVzczGK-mhanF4F_qQeoXcCnjyLu7dg4fWm8k,3700
315
+ pygeai/tests/integration/lab/processes/test_list_processes.py,sha256=zmjrNMmvUr19eiUcqDqTg78dFJm6yj2f1sMCVU5GRrg,5582
316
+ pygeai/tests/integration/lab/processes/test_publish_process_revision.py,sha256=4W1Kjga-McywnXBtbzDw_hEfPlAyLqahp9Pq15GNIQo,10257
317
+ pygeai/tests/integration/lab/processes/test_update_process.py,sha256=XSPod-91OM2WAkinPRLQR4xznLV_RTS--ETC1B4YYwk,12285
318
+ pygeai/tests/integration/lab/reasoning_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
+ pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py,sha256=QmzjtskmUq0hCrkrwKDEyjgx_kTJcsicIYHOhkWTDY0,2757
320
+ pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py,sha256=yWV1lVicWcYjVItoko8DmQX-cpfy9lGNEZs-okMg3Is,3531
321
+ pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py,sha256=DBhPuWOaCWqEQa2kTOecjmp7CHZT4GaYtGXm6A_Fwms,5783
288
322
  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
291
- 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
293
- pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=KMLWXUmk_hKChKo4t5xEZtuIS1UmhAH6VdEq15KCrbY,3744
294
- pygeai/tests/integration/lab/tools/test_publish_tool_revision.py,sha256=AoCdHF8f7jUwAEL3PUvZMEE67m8OCcn_hqY67thJplU,4589
295
- 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
323
+ pygeai/tests/integration/lab/tools/test_create_tool.py,sha256=9gYn8-G2TH3srZSdJ1Px65FQqXNDFp3aHrrYfxA5_8Q,12253
324
+ pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=kRkb2jKlO3k3GmlUdzA5mY8W_x6eUsr6x22p1rFKWUU,2871
325
+ pygeai/tests/integration/lab/tools/test_get_parameter.py,sha256=-S_hQdtKI24c5_t2NwjpWK7KAxByx4cepfVD_kMJd_s,3598
326
+ pygeai/tests/integration/lab/tools/test_get_tool.py,sha256=tC9zOqG0k7o1KuWOQJDzCrU4CeJSfwk1h7krVYsydeo,3449
327
+ pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=sUldh_DInUyUHZq8FZHvt5zaIadUSS1vl7N9aTCnYLg,3732
328
+ pygeai/tests/integration/lab/tools/test_publish_tool_revision.py,sha256=_f16aFxinGibEX7tqA2RlhMwyCEeiLMYLwhMZujOxUw,4577
329
+ pygeai/tests/integration/lab/tools/test_set_parameter.py,sha256=Qqs3kkvZvNhU35hcxSge7oiAVK_7e4YWwC25o9QmBuE,4013
330
+ pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=rEKd06kDVYW_JJeNT08O90U3SaF1FV7tuLYh2Lw8KG0,11700
297
331
  pygeai/tests/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
- pygeai/tests/lab/test_managers.py,sha256=AsOAvyCkRpbskEy214aV2TwrqilWH6bxOiTWDOb1twQ,29778
332
+ pygeai/tests/lab/test_managers.py,sha256=ZjUGS9rk9NiGwamacaSRgEWmMIfJ8BecgAfXZtszm_g,29514
299
333
  pygeai/tests/lab/test_mappers.py,sha256=2cLSggf168XWFpeZeBR7uJ-8C32TKb7qA91i_9fr_b0,11409
300
- pygeai/tests/lab/test_models.py,sha256=MyOPqPb18w0yQj8tEf1zLhY_qBsRy_Cm5kYArB0I8es,54325
334
+ pygeai/tests/lab/test_models.py,sha256=yozezeaJ6g4GDFPZoI5ixiSqENvJ7zdAM8tuu3xq1_s,54340
301
335
  pygeai/tests/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
- pygeai/tests/lab/agents/test_clients.py,sha256=XnnJH5l14qBo3suHCkHFKApKGMboMvlkgV1UX422QYQ,22080
336
+ pygeai/tests/lab/agents/test_clients.py,sha256=cBtfBPkgbPm0MyN1rZdieGnMWkvHoJYekgw851PUTXc,21337
303
337
  pygeai/tests/lab/agents/test_mappers.py,sha256=Ilkgc6w-VzFb_Hs6_K7HUf5IJ0NZ2-eutrHeDdbHVLk,13560
304
338
  pygeai/tests/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- pygeai/tests/lab/processes/test_clients.py,sha256=bEtu2jr0ZaoQaDy4UR8Gc-V6SbY8HqEARDxEGDI6iJE,61590
306
- pygeai/tests/lab/processes/test_mappers.py,sha256=sjPZKKnaTWndsBZBUYumJZxvFuRL2lacFIqWohexuaw,42125
339
+ pygeai/tests/lab/processes/test_clients.py,sha256=JrzTFpU08oJGWge7m3xxsImDThPNezAr6elMEaa-EO0,58345
340
+ pygeai/tests/lab/processes/test_mappers.py,sha256=JoI41IWXjHABNsdpVYiyRElx_G3NNuC6nwIdpgbuiPc,39774
307
341
  pygeai/tests/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
308
342
  pygeai/tests/lab/spec/test_loader.py,sha256=Yhyy0zHxH6F1TeFSbop6YgRFwKjRkjFRdzM8aSaAkKk,2414
309
343
  pygeai/tests/lab/spec/test_parsers.py,sha256=C0sAqgpVu1CqivQ2VWdqusIaeg8f25Vb9uBbFZO1Sfg,7744
310
344
  pygeai/tests/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
311
- pygeai/tests/lab/strategies/test_clients.py,sha256=K-fHQg5Q8gaLr7vzI77mceXe2M1Y2Wz1T8agxEnZoYg,10588
345
+ pygeai/tests/lab/strategies/test_clients.py,sha256=-pXRlovlOR3ne5Xo6VGTQvGCpiMwpwzysWsiWHC1kIo,10157
312
346
  pygeai/tests/lab/strategies/test_mappers.py,sha256=gm0G2W-YAuvjn6qFa1O0nkkgTLSA1eIJAt9qE_I7BFU,5783
313
347
  pygeai/tests/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
- pygeai/tests/lab/tools/test_clients.py,sha256=zxdbdZ1ybpSAQS3yMWWwY1pQmvJUSAl2HRjNq2Ufokg,23867
348
+ pygeai/tests/lab/tools/test_clients.py,sha256=dYhT4wbz-IVYZ5BNj5qSUmtnJ-gKfL6UdYkdxtYcIWE,22672
315
349
  pygeai/tests/lab/tools/test_mappers.py,sha256=_wA40iFvSze5-ddJ8WhjF0-IKNE5lwIFTTviVRxy-Wc,7803
316
350
  pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
- pygeai/tests/migration/test_strategies.py,sha256=oxgfNRDvc2hnQ--v3eC5NO5moY_kABbnnCpCiCXkSYU,26766
351
+ pygeai/tests/migration/test_strategies.py,sha256=Mj7ICxTp35U4hKXZvhbmyfGdvueQDVIKqgLNcmwh8Pk,26246
318
352
  pygeai/tests/migration/test_tools.py,sha256=3hIgeHr-qxw9M23Xi_iqI7jrz-ISMI3IrGdZwerE8ic,1174
319
353
  pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
320
354
  pygeai/tests/organization/test_clients.py,sha256=nipjF1aQP3gHBF3WvgSUxgkeTMGG8_2zb0VjQrU8KW4,13695
321
355
  pygeai/tests/organization/test_managers.py,sha256=7-ct1iJCFrCRNO0ws_Fh5w_XKL7IN30jL0Y8e9yY5To,12730
322
- pygeai/tests/organization/test_mappers.py,sha256=jlYax9BkIGebuzwQ8lp41s5tVOLRrx6GBj9CXj2R3QI,6348
356
+ pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
357
+ pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
323
358
  pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
324
359
  pygeai/tests/organization/limits/test_clients.py,sha256=5Qh4sidVRAE6Viji-d3PSfXoegabP5o5x0tOkD6w-WY,27554
325
360
  pygeai/tests/organization/limits/test_managers.py,sha256=XPwWxT3l7x--_F9CwZhKsoVQe4Y6a7lDBU494HQc0IY,20445
@@ -378,7 +413,7 @@ pygeai/tests/snippets/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
378
413
  pygeai/tests/snippets/lab/agentic_flow_example_1.py,sha256=ihbGdb5ayvmrO1LPQXIHJe0T3xFesFzam9nSNK5aXt0,13461
379
414
  pygeai/tests/snippets/lab/agentic_flow_example_2.py,sha256=uUnl1bpyLje1ArY1B7NzA6iIgMc2VYL1OffCTeZnuws,8251
380
415
  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
416
+ pygeai/tests/snippets/lab/agentic_flow_example_4.py,sha256=Coda7IoTtheL8hmVZhHVj2-jGYHQqzXsJAXeDDZA4sQ,17434
382
417
  pygeai/tests/snippets/lab/assistant_to_agent.py,sha256=RHzGV1uHH4BQNHLDtH1XJyzJWDaeil-cmPke8gKDew0,7587
383
418
  pygeai/tests/snippets/lab/crud_ui.py,sha256=3ehUGUyAJSJI820GyEcmT7rTC8KRno_zaLd56qlTSPU,23404
384
419
  pygeai/tests/snippets/lab/runner_1.py,sha256=QD92MvC22wpWj6YyrSgpp46EcL0ciac2x1zalS7-GkI,7960
@@ -405,7 +440,7 @@ pygeai/tests/snippets/lab/processes/kbs/get_kb.py,sha256=yxq-9nWhIVUefvkbwDkRINi
405
440
  pygeai/tests/snippets/lab/processes/kbs/list_kbs.py,sha256=bAjVbGbMpXswMld03WhjQ00hHY7_0zgI-Y5WTimi1g8,869
406
441
  pygeai/tests/snippets/lab/processes/kbs/try_all.py,sha256=rfTOHHn73Qyn5nZi6A_ScroeCvs8lTSAY2H_PFkPwEo,2623
407
442
  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
443
+ pygeai/tests/snippets/lab/samples/summarize_files.py,sha256=BkLqYW2yhlqf8T3s8vtGSS1Yl4Ff0qWIAtMOzCPCufo,5782
409
444
  pygeai/tests/snippets/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
410
445
  pygeai/tests/snippets/lab/strategies/create_reasoning_strategy.py,sha256=e4NM2SE06GuIGmff43hOT7ANsSRVZ1fMwq1z37Fjbcw,749
411
446
  pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py,sha256=OxxXIRWH_c6RhkjlHdoqnVFnQRv7-1OlYCVivwzbGvg,281
@@ -428,12 +463,12 @@ pygeai/tests/snippets/lab/use_cases/create_lab_expert.py,sha256=CdiuEBW6CAEGXQwN
428
463
  pygeai/tests/snippets/lab/use_cases/create_tool_headless_web_browser.py,sha256=T1HgeYD8GfV98anO4mC7Q-uLsI5hhGdbB3fOntn-Hdo,6054
429
464
  pygeai/tests/snippets/lab/use_cases/create_web_designer.py,sha256=Hpl690wEDX1iCrm1EulZd0CNZDeBsik0GsUEeMvgIvc,10817
430
465
  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
466
+ pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py,sha256=pknGVJY042Fw8mdCerzO1_ZnupC6WjGJPLricXTcS0c,5523
467
+ pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py,sha256=uXosAiO9NTGXSoBbHEJimyl4ngjK7twBxcDhjxGRP_I,5520
433
468
  pygeai/tests/snippets/lab/use_cases/update_cli_expert.py,sha256=qRrKbxcJn9tIGUtJh3DlvbD-wrWQAU0F5ma6-aSvAVw,98580
434
469
  pygeai/tests/snippets/lab/use_cases/update_lab_expert.py,sha256=-YLKCxoIXV9RNTh5D48qtns3SWmbDojDERqQ92MtyAc,173266
435
470
  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
471
+ pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=BgHpf4kiLVQEc-YrapaiuomqIfzbRzr6kniInAhgO94,11620
437
472
  pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py,sha256=a3oj9i2RMnGj-BpDjSthDZVvAzcEyXo9cqygJ1jaVqA,14459
438
473
  pygeai/tests/snippets/migrate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
474
  pygeai/tests/snippets/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -502,9 +537,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
502
537
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
503
538
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
504
539
  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,,
540
+ pygeai-0.6.0b3.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
541
+ pygeai-0.6.0b3.dist-info/METADATA,sha256=QA3RKfpdxgcSs6AoWXw3ZIBwiwbsRknthn-7WdjDyP4,7977
542
+ pygeai-0.6.0b3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
543
+ pygeai-0.6.0b3.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
544
+ pygeai-0.6.0b3.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
545
+ pygeai-0.6.0b3.dist-info/RECORD,,