pygeai 0.6.0b6__py3-none-any.whl → 0.6.0b10__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 (227) hide show
  1. pygeai/_docs/source/conf.py +78 -6
  2. pygeai/_docs/source/content/api_reference/admin.rst +161 -0
  3. pygeai/_docs/source/content/api_reference/assistant.rst +326 -0
  4. pygeai/_docs/source/content/api_reference/auth.rst +379 -0
  5. pygeai/_docs/source/content/api_reference/embeddings.rst +31 -1
  6. pygeai/_docs/source/content/api_reference/evaluation.rst +590 -0
  7. pygeai/_docs/source/content/api_reference/feedback.rst +237 -0
  8. pygeai/_docs/source/content/api_reference/files.rst +592 -0
  9. pygeai/_docs/source/content/api_reference/gam.rst +401 -0
  10. pygeai/_docs/source/content/api_reference/health.rst +58 -0
  11. pygeai/_docs/source/content/api_reference/project.rst +20 -18
  12. pygeai/_docs/source/content/api_reference/proxy.rst +318 -0
  13. pygeai/_docs/source/content/api_reference/rerank.rst +94 -0
  14. pygeai/_docs/source/content/api_reference/secrets.rst +495 -0
  15. pygeai/_docs/source/content/api_reference/usage_limits.rst +390 -0
  16. pygeai/_docs/source/content/api_reference.rst +13 -1
  17. pygeai/_docs/source/content/debugger.rst +376 -83
  18. pygeai/_docs/source/content/migration.rst +528 -0
  19. pygeai/_docs/source/content/modules.rst +1 -1
  20. pygeai/_docs/source/index.rst +59 -7
  21. pygeai/_docs/source/pygeai.auth.rst +29 -0
  22. pygeai/_docs/source/pygeai.cli.commands.rst +16 -0
  23. pygeai/_docs/source/pygeai.cli.rst +8 -0
  24. pygeai/_docs/source/pygeai.core.utils.rst +16 -0
  25. pygeai/_docs/source/pygeai.rst +1 -0
  26. pygeai/_docs/source/pygeai.tests.auth.rst +21 -0
  27. pygeai/_docs/source/pygeai.tests.cli.commands.rst +16 -0
  28. pygeai/_docs/source/pygeai.tests.cli.rst +16 -0
  29. pygeai/_docs/source/pygeai.tests.core.base.rst +8 -0
  30. pygeai/_docs/source/pygeai.tests.core.embeddings.rst +16 -0
  31. pygeai/_docs/source/pygeai.tests.core.files.rst +8 -0
  32. pygeai/_docs/source/pygeai.tests.core.plugins.rst +21 -0
  33. pygeai/_docs/source/pygeai.tests.core.rst +1 -0
  34. pygeai/_docs/source/pygeai.tests.evaluation.dataset.rst +21 -0
  35. pygeai/_docs/source/pygeai.tests.evaluation.plan.rst +21 -0
  36. pygeai/_docs/source/pygeai.tests.evaluation.result.rst +21 -0
  37. pygeai/_docs/source/pygeai.tests.evaluation.rst +20 -0
  38. pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst +8 -0
  39. pygeai/_docs/source/pygeai.tests.organization.rst +8 -0
  40. pygeai/_docs/source/pygeai.tests.rst +2 -0
  41. pygeai/_docs/source/pygeai.tests.snippets.auth.rst +10 -0
  42. pygeai/_docs/source/pygeai.tests.snippets.chat.rst +40 -0
  43. pygeai/_docs/source/pygeai.tests.snippets.dbg.rst +45 -0
  44. pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst +40 -0
  45. pygeai/_docs/source/pygeai.tests.snippets.evaluation.dataset.rst +197 -0
  46. pygeai/_docs/source/pygeai.tests.snippets.evaluation.plan.rst +133 -0
  47. pygeai/_docs/source/pygeai.tests.snippets.evaluation.result.rst +37 -0
  48. pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst +10 -0
  49. pygeai/_docs/source/pygeai.tests.snippets.organization.rst +40 -0
  50. pygeai/_docs/source/pygeai.tests.snippets.rst +2 -0
  51. pygeai/admin/clients.py +12 -32
  52. pygeai/assistant/clients.py +16 -44
  53. pygeai/assistant/data/clients.py +1 -0
  54. pygeai/assistant/data_analyst/clients.py +6 -13
  55. pygeai/assistant/rag/clients.py +24 -67
  56. pygeai/auth/clients.py +88 -14
  57. pygeai/auth/endpoints.py +4 -0
  58. pygeai/chat/clients.py +192 -25
  59. pygeai/chat/endpoints.py +2 -1
  60. pygeai/cli/commands/auth.py +178 -2
  61. pygeai/cli/commands/chat.py +227 -1
  62. pygeai/cli/commands/embeddings.py +56 -8
  63. pygeai/cli/commands/lab/ai_lab.py +0 -2
  64. pygeai/cli/commands/migrate.py +994 -434
  65. pygeai/cli/commands/organization.py +241 -0
  66. pygeai/cli/error_handler.py +116 -0
  67. pygeai/cli/geai.py +28 -10
  68. pygeai/cli/parsers.py +8 -2
  69. pygeai/core/base/clients.py +4 -1
  70. pygeai/core/common/exceptions.py +11 -10
  71. pygeai/core/embeddings/__init__.py +19 -0
  72. pygeai/core/embeddings/clients.py +20 -9
  73. pygeai/core/embeddings/mappers.py +16 -2
  74. pygeai/core/embeddings/responses.py +9 -2
  75. pygeai/core/feedback/clients.py +4 -8
  76. pygeai/core/files/clients.py +10 -25
  77. pygeai/core/files/managers.py +42 -0
  78. pygeai/core/llm/clients.py +11 -26
  79. pygeai/core/models.py +107 -0
  80. pygeai/core/plugins/clients.py +4 -7
  81. pygeai/core/rerank/clients.py +4 -8
  82. pygeai/core/secrets/clients.py +14 -37
  83. pygeai/core/services/rest.py +1 -1
  84. pygeai/core/utils/parsers.py +32 -0
  85. pygeai/core/utils/validators.py +10 -0
  86. pygeai/dbg/__init__.py +3 -0
  87. pygeai/dbg/debugger.py +565 -70
  88. pygeai/evaluation/clients.py +2 -1
  89. pygeai/evaluation/dataset/clients.py +46 -44
  90. pygeai/evaluation/plan/clients.py +28 -26
  91. pygeai/evaluation/result/clients.py +38 -5
  92. pygeai/gam/clients.py +10 -25
  93. pygeai/health/clients.py +4 -7
  94. pygeai/lab/agents/clients.py +21 -54
  95. pygeai/lab/agents/endpoints.py +2 -0
  96. pygeai/lab/clients.py +1 -0
  97. pygeai/lab/models.py +3 -3
  98. pygeai/lab/processes/clients.py +45 -127
  99. pygeai/lab/strategies/clients.py +11 -25
  100. pygeai/lab/tools/clients.py +23 -67
  101. pygeai/lab/tools/endpoints.py +3 -0
  102. pygeai/migration/__init__.py +31 -0
  103. pygeai/migration/strategies.py +404 -155
  104. pygeai/migration/tools.py +170 -3
  105. pygeai/organization/clients.py +135 -51
  106. pygeai/organization/endpoints.py +6 -1
  107. pygeai/organization/limits/clients.py +32 -91
  108. pygeai/organization/managers.py +157 -1
  109. pygeai/organization/mappers.py +76 -2
  110. pygeai/organization/responses.py +25 -1
  111. pygeai/proxy/clients.py +4 -1
  112. pygeai/tests/admin/test_clients.py +16 -11
  113. pygeai/tests/assistants/rag/test_clients.py +35 -23
  114. pygeai/tests/assistants/test_clients.py +22 -15
  115. pygeai/tests/auth/test_clients.py +191 -7
  116. pygeai/tests/chat/test_clients.py +211 -1
  117. pygeai/tests/cli/commands/test_embeddings.py +32 -9
  118. pygeai/tests/cli/commands/test_evaluation.py +7 -0
  119. pygeai/tests/cli/commands/test_migrate.py +112 -243
  120. pygeai/tests/cli/test_error_handler.py +225 -0
  121. pygeai/tests/cli/test_geai_driver.py +154 -0
  122. pygeai/tests/cli/test_parsers.py +5 -5
  123. pygeai/tests/core/embeddings/test_clients.py +144 -0
  124. pygeai/tests/core/embeddings/test_managers.py +171 -0
  125. pygeai/tests/core/embeddings/test_mappers.py +142 -0
  126. pygeai/tests/core/feedback/test_clients.py +2 -0
  127. pygeai/tests/core/files/test_clients.py +1 -0
  128. pygeai/tests/core/llm/test_clients.py +14 -9
  129. pygeai/tests/core/plugins/test_clients.py +5 -3
  130. pygeai/tests/core/rerank/test_clients.py +1 -0
  131. pygeai/tests/core/secrets/test_clients.py +19 -13
  132. pygeai/tests/dbg/test_debugger.py +453 -75
  133. pygeai/tests/evaluation/dataset/test_clients.py +3 -1
  134. pygeai/tests/evaluation/plan/test_clients.py +4 -2
  135. pygeai/tests/evaluation/result/test_clients.py +7 -5
  136. pygeai/tests/gam/test_clients.py +1 -1
  137. pygeai/tests/health/test_clients.py +1 -0
  138. pygeai/tests/lab/agents/test_clients.py +9 -0
  139. pygeai/tests/lab/processes/test_clients.py +36 -0
  140. pygeai/tests/lab/processes/test_mappers.py +3 -0
  141. pygeai/tests/lab/strategies/test_clients.py +14 -9
  142. pygeai/tests/migration/test_strategies.py +45 -218
  143. pygeai/tests/migration/test_tools.py +133 -9
  144. pygeai/tests/organization/limits/test_clients.py +17 -0
  145. pygeai/tests/organization/test_clients.py +206 -1
  146. pygeai/tests/organization/test_managers.py +122 -1
  147. pygeai/tests/proxy/test_clients.py +2 -0
  148. pygeai/tests/proxy/test_integration.py +1 -0
  149. pygeai/tests/snippets/auth/__init__.py +0 -0
  150. pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py +18 -0
  151. pygeai/tests/snippets/chat/get_response.py +15 -0
  152. pygeai/tests/snippets/chat/get_response_streaming.py +20 -0
  153. pygeai/tests/snippets/chat/get_response_with_files.py +16 -0
  154. pygeai/tests/snippets/chat/get_response_with_tools.py +36 -0
  155. pygeai/tests/snippets/dbg/__init__.py +0 -0
  156. pygeai/tests/snippets/dbg/basic_debugging.py +32 -0
  157. pygeai/tests/snippets/dbg/breakpoint_management.py +48 -0
  158. pygeai/tests/snippets/dbg/stack_navigation.py +45 -0
  159. pygeai/tests/snippets/dbg/stepping_example.py +40 -0
  160. pygeai/tests/snippets/embeddings/cache_example.py +31 -0
  161. pygeai/tests/snippets/embeddings/cohere_example.py +41 -0
  162. pygeai/tests/snippets/embeddings/openai_base64_example.py +27 -0
  163. pygeai/tests/snippets/embeddings/openai_example.py +30 -0
  164. pygeai/tests/snippets/embeddings/similarity_example.py +42 -0
  165. pygeai/tests/snippets/evaluation/dataset/__init__.py +0 -0
  166. pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py +195 -0
  167. pygeai/tests/snippets/evaluation/dataset/create_dataset.py +26 -0
  168. pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py +11 -0
  169. pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py +17 -0
  170. pygeai/tests/snippets/evaluation/dataset/create_expected_source.py +18 -0
  171. pygeai/tests/snippets/evaluation/dataset/create_filter_variable.py +19 -0
  172. pygeai/tests/snippets/evaluation/dataset/delete_dataset.py +9 -0
  173. pygeai/tests/snippets/evaluation/dataset/delete_dataset_row.py +10 -0
  174. pygeai/tests/snippets/evaluation/dataset/delete_expected_source.py +15 -0
  175. pygeai/tests/snippets/evaluation/dataset/delete_filter_variable.py +15 -0
  176. pygeai/tests/snippets/evaluation/dataset/get_dataset.py +9 -0
  177. pygeai/tests/snippets/evaluation/dataset/get_dataset_row.py +10 -0
  178. pygeai/tests/snippets/evaluation/dataset/get_expected_source.py +15 -0
  179. pygeai/tests/snippets/evaluation/dataset/get_filter_variable.py +15 -0
  180. pygeai/tests/snippets/evaluation/dataset/list_dataset_rows.py +9 -0
  181. pygeai/tests/snippets/evaluation/dataset/list_datasets.py +6 -0
  182. pygeai/tests/snippets/evaluation/dataset/list_expected_sources.py +10 -0
  183. pygeai/tests/snippets/evaluation/dataset/list_filter_variables.py +10 -0
  184. pygeai/tests/snippets/evaluation/dataset/update_dataset.py +15 -0
  185. pygeai/tests/snippets/evaluation/dataset/update_dataset_row.py +20 -0
  186. pygeai/tests/snippets/evaluation/dataset/update_expected_source.py +18 -0
  187. pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py +19 -0
  188. pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py +10 -0
  189. pygeai/tests/snippets/evaluation/plan/__init__.py +0 -0
  190. pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py +13 -0
  191. pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py +136 -0
  192. pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py +24 -0
  193. pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py +22 -0
  194. pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py +9 -0
  195. pygeai/tests/snippets/evaluation/plan/delete_plan_system_metric.py +13 -0
  196. pygeai/tests/snippets/evaluation/plan/execute_evaluation_plan.py +11 -0
  197. pygeai/tests/snippets/evaluation/plan/get_evaluation_plan.py +9 -0
  198. pygeai/tests/snippets/evaluation/plan/get_plan_system_metric.py +13 -0
  199. pygeai/tests/snippets/evaluation/plan/get_system_metric.py +9 -0
  200. pygeai/tests/snippets/evaluation/plan/list_evaluation_plans.py +7 -0
  201. pygeai/tests/snippets/evaluation/plan/list_plan_system_metrics.py +9 -0
  202. pygeai/tests/snippets/evaluation/plan/list_system_metrics.py +7 -0
  203. pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py +22 -0
  204. pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py +14 -0
  205. pygeai/tests/snippets/evaluation/result/__init__.py +0 -0
  206. pygeai/tests/snippets/evaluation/result/complete_workflow_example.py +150 -0
  207. pygeai/tests/snippets/evaluation/result/get_evaluation_result.py +26 -0
  208. pygeai/tests/snippets/evaluation/result/list_evaluation_results.py +17 -0
  209. pygeai/tests/snippets/migrate/__init__.py +45 -0
  210. pygeai/tests/snippets/migrate/agent_migration.py +110 -0
  211. pygeai/tests/snippets/migrate/assistant_migration.py +64 -0
  212. pygeai/tests/snippets/migrate/orchestrator_examples.py +179 -0
  213. pygeai/tests/snippets/migrate/process_migration.py +64 -0
  214. pygeai/tests/snippets/migrate/project_migration.py +42 -0
  215. pygeai/tests/snippets/migrate/tool_migration.py +64 -0
  216. pygeai/tests/snippets/organization/create_project.py +2 -2
  217. pygeai/tests/snippets/organization/get_memberships.py +12 -0
  218. pygeai/tests/snippets/organization/get_organization_members.py +6 -0
  219. pygeai/tests/snippets/organization/get_project_members.py +6 -0
  220. pygeai/tests/snippets/organization/get_project_memberships.py +12 -0
  221. pygeai/tests/snippets/organization/get_project_roles.py +6 -0
  222. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b10.dist-info}/METADATA +1 -1
  223. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b10.dist-info}/RECORD +227 -124
  224. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b10.dist-info}/WHEEL +0 -0
  225. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b10.dist-info}/entry_points.txt +0 -0
  226. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b10.dist-info}/licenses/LICENSE +0 -0
  227. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b10.dist-info}/top_level.txt +0 -0
@@ -1,19 +1,20 @@
1
1
  pygeai/__init__.py,sha256=VpX09d3yWymZmWS4bQbYYIWJLEQpYTWJyTKhVGHSwb0,502
2
2
  pygeai/_docs/Makefile,sha256=4zv3TVkTACm6JBaKgTES3ZI9cETXgM6ULbZkXZP1as8,638
3
3
  pygeai/_docs/make.bat,sha256=L4I5T7uDUIjwGyMRJ-y9FoT61sxIyCuaYuJyLt8c-nA,804
4
- pygeai/_docs/source/conf.py,sha256=3B8QPySCAqNFLxKYdiojBTwJE8pAyL7__TPoYAVT_is,1239
5
- pygeai/_docs/source/index.rst,sha256=Koz3zjIuEJIsHM7V0LVIPXF2kTtOXfzMKZ1apXQmYmw,665
4
+ pygeai/_docs/source/conf.py,sha256=H6XjfAFdBZ5H4aqxy88TzUQBfUYeVZSxIFbOACqLlUM,3591
5
+ pygeai/_docs/source/index.rst,sha256=A930R3a3mBzMUrRP6EjTxFMS-rrC40nO3SNG9xw4q9A,1630
6
6
  pygeai/_docs/source/modules.rst,sha256=LrEcy3DTRTHFjGk0PcMgSVdy4cKmEDQW_GnwvPvtSic,55
7
7
  pygeai/_docs/source/pygeai.admin.rst,sha256=BErqezo4qPNthV4QTQl9sNpPJrBfQ904R93xTky4bEI,486
8
8
  pygeai/_docs/source/pygeai.assistant.data.rst,sha256=CObeMQ4LO1NCIfg_FBkbdJAYwMfxkKLgMz1iXIonAf4,385
9
9
  pygeai/_docs/source/pygeai.assistant.data_analyst.rst,sha256=r5q_HYl5dlb0_z2Yh8_dTmkgZIWo2Al0IJ1i-ZSEDcA,645
10
10
  pygeai/_docs/source/pygeai.assistant.rag.rst,sha256=Y-JNIBd2sGwX_qclqmDKMSQHbniZhiFe_1FeG5NkCIk,1080
11
11
  pygeai/_docs/source/pygeai.assistant.rst,sha256=UM1rs3EZoMoF16XHO5sycwsMqWB9ci1jZPBcO8GCst0,985
12
+ pygeai/_docs/source/pygeai.auth.rst,sha256=99Dbf-hng18guWy1Bi8_6jvCZtVQ6xFWrHz6LII2fQ4,477
12
13
  pygeai/_docs/source/pygeai.chat.rst,sha256=cW35lNsOImawmYiriUwSGjJITGnx0Kxa_wYJRnACwvw,1189
13
14
  pygeai/_docs/source/pygeai.cli.commands.flows.rst,sha256=_oPTa5gn3jtsYo8SSjr5LWp3hHkOcVXa-9sOXwST8Ik,198
14
15
  pygeai/_docs/source/pygeai.cli.commands.lab.rst,sha256=48iA3vbixQBMmBmnthf_Jy7jJhHyozhXFXNki-zmOTY,1106
15
- pygeai/_docs/source/pygeai.cli.commands.rst,sha256=PLxTWp_f0dQyDmyTsqMAjdGLOU2Czx9hWJ5Eo00BDbo,4072
16
- pygeai/_docs/source/pygeai.cli.rst,sha256=SXVkOJhUZFrcvJJMtqUlsAFsqoIa2mF96fy-L5rEPWw,863
16
+ pygeai/_docs/source/pygeai.cli.commands.rst,sha256=XLmfgH8bMFtgM6hTBq-2mcp6RrXYw1MQ4K45hTCyUvE,4394
17
+ pygeai/_docs/source/pygeai.cli.rst,sha256=KDv2owHUAqulKv_AEpgmXnvoTGkPUyBUnyGD90tWFcM,1026
17
18
  pygeai/_docs/source/pygeai.cli.texts.rst,sha256=z2dfcJAwQPLkfDJxTp7iyGJ5KijBhC7LcRlbdSB3bqw,346
18
19
  pygeai/_docs/source/pygeai.core.base.rst,sha256=IKexE5NtfxU_oot-y4dwKGPkvTjyuFD8B4LE_dPXEJw,1002
19
20
  pygeai/_docs/source/pygeai.core.common.rst,sha256=TsSyb22e_zwO7MDwBLu8zayERe0GDp2m8xa05KWoEss,716
@@ -27,7 +28,7 @@ pygeai/_docs/source/pygeai.core.rst,sha256=OsOdfmGmIeto1DaYMXMlYct0s-dOidn-_ERW0
27
28
  pygeai/_docs/source/pygeai.core.secrets.rst,sha256=Or8sbF3-tDQNVw7SGAqv06Vx4jGVj9sZWX7HAs9YpTc,549
28
29
  pygeai/_docs/source/pygeai.core.services.llm.rst,sha256=stTaWu4W0knoQEHHVyptlFa41HR-Gt3oI8agxeuvA3U,588
29
30
  pygeai/_docs/source/pygeai.core.services.rst,sha256=1lTLW85kOVgm-dtKdltC2t0ao5MpIxuwBOfaiC3ymI8,630
30
- pygeai/_docs/source/pygeai.core.utils.rst,sha256=SA2qunmsJHBA4MsYXLdzT7xcsrSNuz9tiKAAOvDIPuU,361
31
+ pygeai/_docs/source/pygeai.core.utils.rst,sha256=LgI6vvhcCk1Q9VSFIh4Dw5pHtXZqjbdXz6vd9vk6x8o,698
31
32
  pygeai/_docs/source/pygeai.dbg.rst,sha256=mg6bsMmAREoCFuow8VyU2JZ680tMbzc9hemqBqj5SpY,322
32
33
  pygeai/_docs/source/pygeai.evaluation.dataset.rst,sha256=vPuc2d_5zt9WAc29lq50uzWnJgSRoQpHEZLWpLIYV1s,603
33
34
  pygeai/_docs/source/pygeai.evaluation.plan.rst,sha256=Eqdeu9e-lPoiMIn5eIjN5vi8aUQYGYHG3ilBocag-zU,576
@@ -48,36 +49,42 @@ pygeai/_docs/source/pygeai.migration.rst,sha256=LmccQTJ1idwY37lg8-29pTm6szsgaSbY
48
49
  pygeai/_docs/source/pygeai.organization.limits.rst,sha256=5rjKRtaXl_FUQss_UuQjws-kej97IbMqvS9hks_3fxg,997
49
50
  pygeai/_docs/source/pygeai.organization.rst,sha256=91Fby-1S78q0VJ8Yt5iGJ2M2brqtXqH3vlNKJj63dk4,1154
50
51
  pygeai/_docs/source/pygeai.proxy.rst,sha256=XgZwF0OmOUJa_AasledYKAIH3JPIubOUEnO4SIf0LKk,918
51
- pygeai/_docs/source/pygeai.rst,sha256=gZf-JUHsh3v-W0821P_uw_9A1Eh34d5ouyjs7Fb-rP0,462
52
+ pygeai/_docs/source/pygeai.rst,sha256=yaUcMIMQP246VTVdGu_9KKKNxChVbffx3OUy4wUcAeY,477
52
53
  pygeai/_docs/source/pygeai.tests.admin.rst,sha256=z3vaTaKOVea_zmgQwKRZSD-HZQ6dC3B8GEXY6DD9kEw,384
53
54
  pygeai/_docs/source/pygeai.tests.assistants.rag.rst,sha256=aTM3TccZgohUBwVqJx7lbVQsH_p_d5LvUCKMBV4UjeE,857
54
55
  pygeai/_docs/source/pygeai.tests.assistants.rst,sha256=JlPdf3soviMwSH6HAXjdgI7qFsqN5GL_NQLJjnQ8bYI,902
56
+ pygeai/_docs/source/pygeai.tests.auth.rst,sha256=OEQtek7xgptYQpZfetx2xX7ZrMaf3CKWIJUHiqUb9-w,378
55
57
  pygeai/_docs/source/pygeai.tests.chat.rst,sha256=xiTEjTTXU0hLeIaNx32u30HuqDDlHuBN8oOD2GaY-yA,897
56
58
  pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst,sha256=Ph5mvvnfn7qTDtbgU3ScxVzZGcRqvguVpUzboTnEiig,871
57
- pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=ei0h4KbpKEgIAGsKG3MdrdG6LFjBkm8BEIHv-dasi8Q,3600
59
+ pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=95znjo_v7JLK2FZcUPnE57ofrW4CHF3U8OeYeqsEkHA,4019
58
60
  pygeai/_docs/source/pygeai.tests.cli.docker.rst,sha256=UM4B_DAlsak4hAGFH-vjNiif0U6SDXxeYg_LqG7f9N4,192
59
- pygeai/_docs/source/pygeai.tests.cli.rst,sha256=WrsiBUPkIkxLX8ZepttNZaG8R6BAnTAHWFVaap-xipg,484
61
+ pygeai/_docs/source/pygeai.tests.cli.rst,sha256=z8-ucnierNSaUZtUtlfCkyHo5NQvqKW547cpSpwGFzU,874
60
62
  pygeai/_docs/source/pygeai.tests.core.base.data.rst,sha256=SsV7Q4nT37voKqp1BDbP7Rub29jVarIPbrNZktQb5Jg,612
61
- pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ZtDGK2cWTSL9Ds3e2mLgNA25LrxRSa8z3gz2sJrs980,688
63
+ pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ndRoX3malfqip5_eZfmWPwhyI85aBNfu8gVhSBBUghY,890
62
64
  pygeai/_docs/source/pygeai.tests.core.common.data.rst,sha256=-oOOj8QUOJRw6y9wk31e6ZyS-2kTBJC8PNbLh0GA16c,210
63
65
  pygeai/_docs/source/pygeai.tests.core.common.rst,sha256=07o4RYKqCf757VTBfySjHkfyvHUXY1oMVD2lq2r0N0U,717
64
- pygeai/_docs/source/pygeai.tests.core.embeddings.rst,sha256=8_kn4Dh6j2-7CK_9qZwJ6I3Fs2iTOrIv3FRC8Zx7dfQ,444
66
+ pygeai/_docs/source/pygeai.tests.core.embeddings.rst,sha256=UMEE4lol9mnxuU17fdOMOE1Bf2RIBUdMjEhW5Mtwfyw,875
65
67
  pygeai/_docs/source/pygeai.tests.core.feedback.rst,sha256=9H40ALCDjSEMRz9wABan1WyEroubvsPf4rvdqpIfTCU,432
66
- pygeai/_docs/source/pygeai.tests.core.files.rst,sha256=PzVUQXZe0fZZQsqZFGp1OX6pD5r_wwOCIsYxY5OQbAA,1017
68
+ pygeai/_docs/source/pygeai.tests.core.files.rst,sha256=5FAxa0Jef8QOZuYqyvy5S1ISm4wcsNrs0h-6Et-vU8E,1216
67
69
  pygeai/_docs/source/pygeai.tests.core.llm.rst,sha256=y9sVhRP7V0CfwjRrbb1NC_ui7EUGA43McfbjqmeUPMk,402
70
+ pygeai/_docs/source/pygeai.tests.core.plugins.rst,sha256=qvKCfyvArjbFcCISZ7Ig3DqscvgZr_LcuiSY17LYNA8,426
68
71
  pygeai/_docs/source/pygeai.tests.core.rerank.rst,sha256=y4HrgcgimfUHRrcYKLGc1jtituy6nQAl78f7pgI_BAI,827
69
- pygeai/_docs/source/pygeai.tests.core.rst,sha256=kS7v6qr5TgfmX9J8g16OFikrXkCuTtQ3H5TWEDm9E6Q,719
72
+ pygeai/_docs/source/pygeai.tests.core.rst,sha256=ypcwqmEmra-uoifoDzQgNDkgaX4t9mqzv_pb5K8Onug,748
70
73
  pygeai/_docs/source/pygeai.tests.core.secrets.rst,sha256=FuE6pZvrM5rsHsIOVc9m4YcW3Zu8rM02NQzL_XsR3Rc,426
71
74
  pygeai/_docs/source/pygeai.tests.core.services.rst,sha256=4xL4sdjTv1lHcO9jgloXKyjYxN2xUzGcEkD-UMFyE2g,423
72
75
  pygeai/_docs/source/pygeai.tests.core.utils.rst,sha256=wJtGlLlQF6p3E4ywmSJr5dMYZsYGudIRwqVWNW8Omg8,414
73
76
  pygeai/_docs/source/pygeai.tests.dbg.rst,sha256=9hsXIno_7hC6oLjVG7FPhlHAJw993ybYtXi52GiiCVI,375
77
+ pygeai/_docs/source/pygeai.tests.evaluation.dataset.rst,sha256=CPg1J3PdXhIZ9lnpcSy5jJCl_SC6eCXX4WoUjdGRAkU,462
78
+ pygeai/_docs/source/pygeai.tests.evaluation.plan.rst,sha256=T8ZJ3CcKck7n_ROUWEpkbNMjzCXhYUoEDrI9Mi2a8mg,444
79
+ pygeai/_docs/source/pygeai.tests.evaluation.result.rst,sha256=6xSyb7SJHjn_Fr1Z4f4hyzcz2wgXtcohmWal9iDidYI,456
80
+ pygeai/_docs/source/pygeai.tests.evaluation.rst,sha256=vEUIxZy-Eft-i-IL1ZIH4bj0Z5LSUE4aX3CprdNeTIk,349
74
81
  pygeai/_docs/source/pygeai.tests.gam.rst,sha256=Rl2kATXXoS-JYYwMbSgxEd8bbNLpyh5hKq9OtKUAVyE,372
75
82
  pygeai/_docs/source/pygeai.tests.health.rst,sha256=1jSPXAOcrMaP0bsyD0GcF6eqV-Kf_mr1yF8yriDbRnA,390
76
83
  pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst,sha256=6ln50eZnW0kP3GUN4EaDkMV3K6YEKQ8S-jkTy3ecygs,521
77
84
  pygeai/_docs/source/pygeai.tests.integration.assistants.rst,sha256=L7uS5CnA7skmPQf3Cdec7ZAwGTN_v2gXuHwQGZZU7Xo,327
78
85
  pygeai/_docs/source/pygeai.tests.integration.chat.rst,sha256=DTIYNCzxLxwrCls8xhuhSGSFMDEi5FgrCu5Kwr8MLw8,473
79
86
  pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst,sha256=LlMEyt0ATVMMSN9ohnhXtSovhNFw8UIxjL3jBezD7ic,2058
80
- pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst,sha256=2NOAKNEKkjsYHHLprCK7mowBca4X_DYQWka_-rzHau4,2178
87
+ pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst,sha256=S9nbhEP7apPgY__pertBcapWwFJTW140jOcyqCTNsTo,2436
81
88
  pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst,sha256=3fjZzzFCSJ5p8p0PHWo3c3dyPqFzdcnIH_aoTq-MUpg,1297
82
89
  pygeai/_docs/source/pygeai.tests.integration.lab.rst,sha256=VvG17L2E9g8GVZsR_ImG437Qsfk0-bWKMjVojBlIwds,435
83
90
  pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst,sha256=5TCpyK_IMhPgIUldvupE6XAnAZQdVxbqXupGYZpwYmE,2248
@@ -90,15 +97,20 @@ pygeai/_docs/source/pygeai.tests.lab.strategies.rst,sha256=phIZJib0m8WVv3klnVe-P
90
97
  pygeai/_docs/source/pygeai.tests.lab.tools.rst,sha256=0r74wroe80KosW60hGEYUzM-gAbvoJeLcoUmkIw03Q0,604
91
98
  pygeai/_docs/source/pygeai.tests.migration.rst,sha256=RrOUG2jhf9ZPmhrj8sRbzoV8f3o45bzLk8x1vfIeasQ,607
92
99
  pygeai/_docs/source/pygeai.tests.organization.limits.rst,sha256=TQGsWAEkfgblivHoYUZ7VBgNDEo7B1SbocYPdX_LWqI,697
93
- pygeai/_docs/source/pygeai.tests.organization.rst,sha256=iQPw3NON6JFZSfTUhehc6CBEEsLy1pJHLBphMie1Yko,931
100
+ pygeai/_docs/source/pygeai.tests.organization.rst,sha256=81b5GWMVbJ0vGwM0I2lA1frwxReEEdv3cHiFCrZ3yhY,1142
94
101
  pygeai/_docs/source/pygeai.tests.proxy.rst,sha256=k3_wXvaRaXGEo77ETI-TD0n7f9hCgAVmEGP_Osw35vs,1307
95
- pygeai/_docs/source/pygeai.tests.rst,sha256=eyU6QLRLB3DdIYAaOo_Jfn4Niq2Mj69yv8RaInMSXK4,539
102
+ pygeai/_docs/source/pygeai.tests.rst,sha256=Vr0Trtak7qWb3o-cbUofIewUin-wu2WwPCsvb8BTTJQ,587
96
103
  pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst,sha256=9BhQEuja2fubrvK96gwfC1kP9bpHIS4KyWm9Pww8wKc,1098
97
104
  pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst,sha256=MJjQOlUuJRHrVZGP2JXx0HqM-WfdxQN_k0fLaH4ihPo,2552
98
105
  pygeai/_docs/source/pygeai.tests.snippets.assistants.rst,sha256=HSsTyB8Vw-m_9ZU_ukhMq-BPWoTvq8zRLqk6yTOhnLM,2140
99
- pygeai/_docs/source/pygeai.tests.snippets.chat.rst,sha256=yIpbOH7XXrGcTkhT9pNiTGb66QMJ09mNWx36qUoG-Jw,2257
100
- pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst,sha256=heK_JqYIpYr-Sz90PGhE0R5EgrllsURApyeqcgYuL2M,489
101
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst,sha256=xktMl4wbfdZpBFwXS5nnpJqJJdByPfkvE4ntzwpShwU,219
106
+ pygeai/_docs/source/pygeai.tests.snippets.auth.rst,sha256=zmZRwspFVQwPFRSzetlgf5DX9ylU-zgx_b7VERjNkS0,201
107
+ pygeai/_docs/source/pygeai.tests.snippets.chat.rst,sha256=NbcsP4amd1XlkKs5NpCtCnsCX1IGQRI8GyrlfpeE9fc,3484
108
+ pygeai/_docs/source/pygeai.tests.snippets.dbg.rst,sha256=e-ulTTAz6q3HqWB7_rNS0cUYTJ5xUT6M5DWAmWuyChw,1101
109
+ pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst,sha256=5ZbUpABPIIubh_lrB7BFMQHlygeJSf8wmlcLo6AHfdg,1681
110
+ pygeai/_docs/source/pygeai.tests.snippets.evaluation.dataset.rst,sha256=JyDjU5J_i-C40T1LtgCH5yYlePvqWB5tIn5rtlDxkQo,6539
111
+ pygeai/_docs/source/pygeai.tests.snippets.evaluation.plan.rst,sha256=WCFRqVASkb1LXSomboRI9oyuDP_IwgrOPy9eah8IfxE,4376
112
+ pygeai/_docs/source/pygeai.tests.snippets.evaluation.result.rst,sha256=HljXbQugGrdcgk5GyDoIh4d9SY_OGDihP0OpeZ0g2pk,1109
113
+ pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst,sha256=THfX5Ole6p24ITLZQKc4p2Grdk8jYstvBAGrjlLABFE,403
102
114
  pygeai/_docs/source/pygeai.tests.snippets.extras.rst,sha256=XUrOZUU24z5NrgX5h-FHQvfl1YsqFcaSNTjMRRgcwWQ,819
103
115
  pygeai/_docs/source/pygeai.tests.snippets.files.rst,sha256=gx-f28YqxMRkuCoNexEpJEUcAbdXT1gDbouXYJZo0pI,1300
104
116
  pygeai/_docs/source/pygeai.tests.snippets.gam.rst,sha256=0c1zqQVNLKyklJnZ9sEHsfjTDVf_v658ZX2Iyh8VFco,440
@@ -112,19 +124,20 @@ pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst,sha256=hSZDlOoBFX9C
112
124
  pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst,sha256=Z5sN-ocA04__NI_UHJZ8Cy-LbAMj7fcHiac49Gg9P-k,2288
113
125
  pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst,sha256=56o_i5rP3eLyrFmiJjnJ80nSC5awhoZ4G-1-MEhjn2M,3716
114
126
  pygeai/_docs/source/pygeai.tests.snippets.migrate.rst,sha256=Z9WmOIr1MFCpDP72QD02yI7M4Z7a6QBF949ONYQDJ4E,210
115
- pygeai/_docs/source/pygeai.tests.snippets.organization.rst,sha256=jxg07dF8TX11I-d26cW7OVup9Q52e_Xrj_PZNg6ka-c,1961
127
+ pygeai/_docs/source/pygeai.tests.snippets.organization.rst,sha256=sSwv9PHlUX5kNRdFnhbcRLd-y3UUXX6-y-PWeF1jl5A,3243
116
128
  pygeai/_docs/source/pygeai.tests.snippets.rag.rst,sha256=v_FFSm6fVE4CVOW79HI8piz8MOYa8PEvm28WoPpQGRo,2222
117
129
  pygeai/_docs/source/pygeai.tests.snippets.rerank.rst,sha256=RwkOt3kGBsoUtiqmA3rMeMDMkZ-idMm08VWnMzo3w2c,447
118
- pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=rxJlKKzRKEf7E3BOttfYFPGCDSYM2Ev9EZW06_KrxsE,674
130
+ pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=3g_Yeg7AxMB_i9fnmLT-SAtS1DVnkVXnskoKn_D4lDI,733
119
131
  pygeai/_docs/source/pygeai.tests.snippets.secrets.rst,sha256=kWSmN3I-MuhpeabIskpz7m3YpPBlFrYA73mt5m5zk-E,210
120
132
  pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst,sha256=S2oNQdHLRyNdfBijqJMDl_nyq094M8yy9Fu1OyeDjo8,2517
121
133
  pygeai/_docs/source/content/ai_lab.rst,sha256=t0NSjKhjY8snu9VxgY4PE8PYz4LtumyMnhhbxmOR1oY,11519
122
- pygeai/_docs/source/content/api_reference.rst,sha256=rVwWzcE4nX2o4JLfy6AJae0WuMSsvZ8qEX7JJPYBvdw,2459
134
+ pygeai/_docs/source/content/api_reference.rst,sha256=S9C7RYf9m5DLVL7aGQJNJ89DjFLGiajX2TwFMWrlLg8,2767
123
135
  pygeai/_docs/source/content/chat_gui.rst,sha256=0nnQFh_m4V-TqbeZXTKYMzU6gmPTOwRHrkqaZ16098k,6805
124
136
  pygeai/_docs/source/content/cli.rst,sha256=roIhLfeb0XAspXLbivHGSUMi-83RZ59rTGJbSfNMmt4,3178
125
- pygeai/_docs/source/content/debugger.rst,sha256=FVe3CcroaOH8HMpnT5oHdcJaEDNhLi7SlCBW-wh0RG8,7593
137
+ pygeai/_docs/source/content/debugger.rst,sha256=hhGUElT-d91bozWMPJcXCodtBNKvb8rJPfCMC-Qznwk,15111
126
138
  pygeai/_docs/source/content/intro.rst,sha256=nRoIXypN6xGN9kaqTJM5HrhE0LPn7bnk0CDFeRixito,4532
127
- pygeai/_docs/source/content/modules.rst,sha256=qaCQyx8SIDMG6EA2i6jo3z_U2XL2fw1ycRsMBjgDU5s,83
139
+ pygeai/_docs/source/content/migration.rst,sha256=DX6AaAjEUPwrXlbAg5V35AUD8R1GDMmF8-SHLbk_kHw,19304
140
+ pygeai/_docs/source/content/modules.rst,sha256=MufbaO6dfESPq2yqhk9xpCsfSMdhNRcTuODE6LW1HxE,78
128
141
  pygeai/_docs/source/content/quickstart.rst,sha256=bsz8ZwTJTWlznnPNq3XJJuOXuV63-7UKqur2YHGD8No,4159
129
142
  pygeai/_docs/source/content/samples.rst,sha256=BfRzjBDVgiegbW1OPczZvq1LvS-aHGCH-zDmbX6mNPI,12488
130
143
  pygeai/_docs/source/content/ai_lab/cli.rst,sha256=4ZhP4XfYYREWaVpfU4jEWw4SHpJECtFC7KH1KoCSj9M,24683
@@ -132,35 +145,47 @@ pygeai/_docs/source/content/ai_lab/models.rst,sha256=7sN2LjrP6MGMA6ebDmXiJNeN64a
132
145
  pygeai/_docs/source/content/ai_lab/runner.rst,sha256=_g2VW8Pqyl4EpK5UMU6Sgbmf5Y6zV6qcS3pfRj9I0Qc,13887
133
146
  pygeai/_docs/source/content/ai_lab/spec.rst,sha256=8BFIJxzLp3Vdar2kaqGEsw4NO5jiIsgysSDtvBBKZ44,16487
134
147
  pygeai/_docs/source/content/ai_lab/usage.rst,sha256=bTlyiAhWckTdkcWyLntJmJOzcYseYf4D4EqexQNu_s8,28564
148
+ pygeai/_docs/source/content/api_reference/admin.rst,sha256=v_o5I_B3ND6fu_v8gOpGKvR_ekI6EPU4EEIZLdDnPT0,3401
149
+ pygeai/_docs/source/content/api_reference/assistant.rst,sha256=5-XseBnf-s-UfttcYW0SUWD8WoL6FQMfmXqw024h2EA,7326
150
+ pygeai/_docs/source/content/api_reference/auth.rst,sha256=to_Bjp1BnJ-iOf8Yg2UUjuOZ7FcLJleeu-Qh-lwAQrM,10057
135
151
  pygeai/_docs/source/content/api_reference/chat.rst,sha256=vacD71YEqUGEVoWxlcyEbXqDP5ng6FUsKJdbycy3t9Y,10670
136
- pygeai/_docs/source/content/api_reference/embeddings.rst,sha256=7krqSxDKq-BCI0-3q9KcgV7U3vP-4C-96yvbygp6aJ8,4323
137
- pygeai/_docs/source/content/api_reference/project.rst,sha256=s4AiCVs4QL-5GqD2X0DVkPfyW7sZoA64gC9nbuW9750,16388
152
+ pygeai/_docs/source/content/api_reference/embeddings.rst,sha256=F__81B25D7NZsYHBa1gHFWjRo8eB55CR3ZZTHgnCo08,5417
153
+ pygeai/_docs/source/content/api_reference/evaluation.rst,sha256=ggFOdTi-5i869-na7p_IV1A2Kk8DmfKkwtTAYTlxn6M,16247
154
+ pygeai/_docs/source/content/api_reference/feedback.rst,sha256=6Duc-x4Hwp2bc3KHwtJ6pHg8WxT6_zq3Mor2A1NPoTE,5963
155
+ pygeai/_docs/source/content/api_reference/files.rst,sha256=wWZvaVDvcGvXSkpEKhKQVYk6Fgm56D_OoaYYwjyz8tw,13659
156
+ pygeai/_docs/source/content/api_reference/gam.rst,sha256=U__bhQkho3NDllHBQd9cSIn-LyVExy0zZi4RxaDoZxY,10553
157
+ pygeai/_docs/source/content/api_reference/health.rst,sha256=hEVzFsP1BnJL7fzAQV1sUYa0iFDI8GKJ1E54Oewpr5Y,1041
158
+ pygeai/_docs/source/content/api_reference/project.rst,sha256=rA-5-ihTlzCckszlrxaGMKpkhruZ-REe8kO8Yd3xX1Y,16401
159
+ pygeai/_docs/source/content/api_reference/proxy.rst,sha256=kXcanBNP53t3eegGe7khVYOKOSjqlM6hHyrH8O0g7J0,7434
138
160
  pygeai/_docs/source/content/api_reference/rag.rst,sha256=Y5azvt5V9I3jS7qySc4LaQqkjCHtgspDiJkHBHGQ9Gc,18818
161
+ pygeai/_docs/source/content/api_reference/rerank.rst,sha256=zuoqmc2yW_M-tJ5IkYtaGxF2hHf4zFqnKWrL2zMh7Ig,2436
162
+ pygeai/_docs/source/content/api_reference/secrets.rst,sha256=HYxpExPhYIxdqff3u1REP0xYfodBkTB1kr5sHQavu00,12284
163
+ pygeai/_docs/source/content/api_reference/usage_limits.rst,sha256=XiOWcogv-AC6FrjmH_3re165RUi-eTq7IKzU9uvIjsw,9051
139
164
  pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
- pygeai/admin/clients.py,sha256=2wuXSmTyg-gCbempDFCeI1yCKeOlKDBZsrFyFWxcwBg,6698
165
+ pygeai/admin/clients.py,sha256=X7Ps_VqSD6NAMdWO6wm7Gbis5-67OJQkOa5lqHCmWi8,5348
141
166
  pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
142
167
  pygeai/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
- pygeai/assistant/clients.py,sha256=D-xrrIOtIbVYNIPSyhUUN6AuH7mOBD26LcUfZlrDqO0,11619
168
+ pygeai/assistant/clients.py,sha256=gGhALWddo30SM7mvoDe2TM9cVQrJ8RzoI4LVQ8ov9VQ,9856
144
169
  pygeai/assistant/endpoints.py,sha256=7LuXWm0-sbrmHsngqW63wuk37K24wcMLinmJ6HdSimg,1026
145
170
  pygeai/assistant/managers.py,sha256=aQxJ0QtZjTfeQXdwYBDc7oJA2LwPSFUcJOeoihCe8uQ,34632
146
171
  pygeai/assistant/mappers.py,sha256=oSx_k1edknbKGlASke5ASzKEekG613TepVQRm1ecPOc,5915
147
172
  pygeai/assistant/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- pygeai/assistant/data/clients.py,sha256=BiTuzQAsyQTy-drIc4eY4Dfy_LiLL_rahuyjDd0Gq_I,598
173
+ pygeai/assistant/data/clients.py,sha256=PeSYxbHti8PIdImV4-rhcTWlOvj2nedGX21ulXZi3wQ,660
149
174
  pygeai/assistant/data_analyst/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- pygeai/assistant/data_analyst/clients.py,sha256=Gc7obQLGhW2iDOrVjd_Rm8k_5nt5ivxc2ZiQ1cpQfpA,3211
175
+ pygeai/assistant/data_analyst/clients.py,sha256=Wx4M4LgVgsycLl_PHUjZkSvDlR1nGcdt1r5FLRIJb08,2756
151
176
  pygeai/assistant/data_analyst/endpoints.py,sha256=2m-IXrb2-5id9tnpOjMQRYm6vqay6fw56-6kfpElPYI,296
152
177
  pygeai/assistant/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- pygeai/assistant/rag/clients.py,sha256=9a8loVLRnVkA3nHvvOpbdUEhy_TEnHm1rhdBYrBVABE,15893
178
+ pygeai/assistant/rag/clients.py,sha256=Pl9fBijln_d6YsQ0uIMTPM9X6sMcwR5wEfEspAKMMHM,13029
154
179
  pygeai/assistant/rag/endpoints.py,sha256=7YlHIvAYj3-xsCWtVMDYobxXbAO0lCo9yJdOrQxwCrQ,1145
155
180
  pygeai/assistant/rag/mappers.py,sha256=n3aeNXqz_7zq_JWq5wJfeNX1kvV3arOxAoUsqRYOZsc,8645
156
181
  pygeai/assistant/rag/models.py,sha256=g5UiHuRjobgU1WgUMxeBzXykxgJ5q7eb_YY8qDciNvw,15732
157
182
  pygeai/assistant/rag/responses.py,sha256=fY97ibsCVLQ3Ssnjuvj-JeA883WqjOw7ZdxbpQp_B1E,196
158
183
  pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
- pygeai/auth/clients.py,sha256=MAiCVxYEi8EpEmZfWV0xui4WoC11Ch1iQfUuTskcOkY,2381
160
- pygeai/auth/endpoints.py,sha256=Au0w6bADAX7avQEErwfs7bpKOTuZqkkxCCa1rNN0J94,191
184
+ pygeai/auth/clients.py,sha256=3Eg9d9XJlPCIXz2N90LalchahV2gPaD0DWj8iBcw41Y,5422
185
+ pygeai/auth/endpoints.py,sha256=KOZ5gS8I8MIamlfbj4bN8w6kMmIdAKr6puKJrw0cEtw,589
161
186
  pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
- pygeai/chat/clients.py,sha256=QEyeTIPxp6xXKAEkE_XkjIxZDnaH808GKhIYr7ulrSA,10785
163
- pygeai/chat/endpoints.py,sha256=tIPBK5EiQGbQlDZz96A9AfumIFs4Z6QiD_oK8PTVQFg,206
187
+ pygeai/chat/clients.py,sha256=ANxYMn6vslPW-J4vjVl09CM4TOdSferrDIEcsE_7Fg0,18129
188
+ pygeai/chat/endpoints.py,sha256=4X00h4RPyCo-KNuNca51K78dBtRzp75kDYTzAR1QpNI,281
164
189
  pygeai/chat/iris.py,sha256=-9pDHQpWhR_PvbZ6rD8eMPFk46PI9sCdPQ9aAyvSexs,413
165
190
  pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
166
191
  pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
@@ -168,29 +193,30 @@ pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
168
193
  pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
169
194
  pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
170
195
  pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
171
- pygeai/cli/geai.py,sha256=Smqxqc3XIy8RMuFVIsS9qNuYtqkNWba_CJJrhe7kW0E,4451
196
+ pygeai/cli/error_handler.py,sha256=xJ3eHuYmGMDq58CxIlFhgCE0e8zLEWZPbU1kK2YXk6Q,4576
197
+ pygeai/cli/geai.py,sha256=CFb5ssC_98VuvdqiTUjFatjPWWDhv1zI9MUYYGYv9ck,5376
172
198
  pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
173
199
  pygeai/cli/install_man.py,sha256=DjZ3k05sKSzpLFqsU4LHz1b37NHLVdOvS6oZihdBSis,3794
174
- pygeai/cli/parsers.py,sha256=8kKvUbg33K4VbE7ryHwq3Uwwp42BK6ZOAKycYjEj1Io,2525
200
+ pygeai/cli/parsers.py,sha256=tN9OhmFdAHmRcljwN5_NhqFoU14dUGggZQ81ErgYVTk,2699
175
201
  pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
176
202
  pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
177
203
  pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
178
- pygeai/cli/commands/auth.py,sha256=xiW9GEXZy7ti3HJMUEX5fSKe6XqxTVciZiCz1Trws7E,3361
204
+ pygeai/cli/commands/auth.py,sha256=w1XIcTYh7SQ4keOhQiJiUJ2NFMY349K53P2BoGe2Rgc,8318
179
205
  pygeai/cli/commands/base.py,sha256=OKlYNpQvTCxOOLDSR-KkmoUvKs4OGYerwo_escQaDwY,7406
180
206
  pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
181
- pygeai/cli/commands/chat.py,sha256=Y2e3NjDXYjutdxbpGUDmewZfKnR_QHb69Jz4L-2GHY4,25170
207
+ pygeai/cli/commands/chat.py,sha256=A2wGOE7fmqNjOdOVcs_jrSHhma6cqDzY_O3xVwpiPoY,32557
182
208
  pygeai/cli/commands/common.py,sha256=zL1cWKMTqzqMsHBDFfVzbZe0i2l0hgJNpzjSRgvloY8,16568
183
209
  pygeai/cli/commands/configuration.py,sha256=J1Y8AH1xYWvcY4bzqKvF-_ggEDJ22Dv4iEcCBi2pq_8,4140
184
210
  pygeai/cli/commands/docs.py,sha256=8JEgKAHFL19g1rmgQzFwdzqLBP8ySvnpQogXwJPWfS4,3444
185
- pygeai/cli/commands/embeddings.py,sha256=om_RR3CHgfmHcTN43F6TzP71n-BS8Lf589wyBMVZJ3g,4220
211
+ pygeai/cli/commands/embeddings.py,sha256=LtJROVI2gD3oq0-YZRyeud_YlfhK3R4d5Y6iHhIuAHQ,6055
186
212
  pygeai/cli/commands/evaluation.py,sha256=7fgqihWtJ1h7dGXdTR3AbanNAIjeAI5qY7TAaTSi6WI,63828
187
213
  pygeai/cli/commands/feedback.py,sha256=nJdrI974N_3IsloJMqe7GRay5_ijOSkeZ9MIdGeQZa0,2442
188
214
  pygeai/cli/commands/files.py,sha256=IOnNlqhpnOytPns0GVZLT-BCcLlr_fOCdHH0HKC38Ik,7888
189
215
  pygeai/cli/commands/gam.py,sha256=_eRp3ryY0jFYxtZgWOAU4_ky7S9zggGvkZNZi9eokTI,9664
190
216
  pygeai/cli/commands/llm.py,sha256=w7ozHlcdZ77hcXFzJaL0CM_YgXYKCaWBmg7t0WkHaOs,4115
191
- pygeai/cli/commands/migrate.py,sha256=ZUUjYl76bUHZgPHDyYdQiBTgxQrz2OIp4Krt9SjNUcM,16393
217
+ pygeai/cli/commands/migrate.py,sha256=J1sroFpETWv40Wsro6vyGbpjwkJijBJoVR38kod9wLw,45463
192
218
  pygeai/cli/commands/options.py,sha256=oVDJF-SsE80vi-W4d0n2cNo1BeeU_jqDs_TtMPkz-1I,1804
193
- pygeai/cli/commands/organization.py,sha256=PjpggDmewVmr9if5m_L5W3ykIs5F5yBvXQTGSLdaQ_w,9753
219
+ pygeai/cli/commands/organization.py,sha256=4ETIF9t3dKdlk2TBBokpmvMAUb6umryixMa9dWsMc7M,16352
194
220
  pygeai/cli/commands/rag.py,sha256=IgHsfRmnsegrGCCpwuNmd15BClQgEPc_GH2JXfG6OKo,37052
195
221
  pygeai/cli/commands/rerank.py,sha256=JO8EK6lgRUpDOGmhxmX43dS_97ssl29HxEwg__kNwCA,3010
196
222
  pygeai/cli/commands/secrets.py,sha256=d49inaFV_f0OoILH15U_SW4GuLRh37_x7VG3dxBbQbA,9411
@@ -199,7 +225,7 @@ pygeai/cli/commands/validators.py,sha256=lNtYSJvKFrEeg_h0oYURMuoQbNG5r6QdjzDL-aT
199
225
  pygeai/cli/commands/version.py,sha256=vyJcnxwL_TfpOQI0yE2a1ZyA3VRAE7ssh9APNBXpmqk,1701
200
226
  pygeai/cli/commands/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
227
  pygeai/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
- pygeai/cli/commands/lab/ai_lab.py,sha256=KJMRY_xA-B_XBM2VjgniYt5UeAbcvUCZhzb1jXUUni8,129235
228
+ pygeai/cli/commands/lab/ai_lab.py,sha256=xiR_-Ijxv3JaS3u48sBfMCu0YumwV7Dm6T9j_yAS0sY,129233
203
229
  pygeai/cli/commands/lab/common.py,sha256=YBenPCVgK01Xaxgj1429bp_Ri1SN4beBxZk3dCLp7X0,6590
204
230
  pygeai/cli/commands/lab/options.py,sha256=T13Vi97zochr0cU4yjyvvwWRPENILFDYpvqpU4uEBis,165
205
231
  pygeai/cli/commands/lab/spec.py,sha256=EjNdEnljKpYPQyT4d4ViAPrM1g7oIitv6ddnWVkWXPk,8301
@@ -208,11 +234,11 @@ pygeai/cli/texts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
208
234
  pygeai/cli/texts/help.py,sha256=cdTdEO9QRm3SVCzCEJq4vhunKHkGdpzWfmdoel8TDsw,22054
209
235
  pygeai/core/__init__.py,sha256=bbNktFp7t2dOBIvWto-uGVBW8acaKIe8EKcfuLV-HmA,189
210
236
  pygeai/core/handlers.py,sha256=la1QcQbLwfiNd-xDQ3jtWRHmeEm6E93Rfx5c-5bkLmw,934
211
- pygeai/core/models.py,sha256=uIwrmlB6yuulScUcYIBSH3Sxm5YyzaicV7Dz2bYLi2I,24229
237
+ pygeai/core/models.py,sha256=db44pgk_hJ5s2S8neZq5Y1XZY6rQDfPRN6mWDSvj-rw,27465
212
238
  pygeai/core/responses.py,sha256=wxlikhw1UAAB6Mib97xjq2eCFyZPWoosPwn9UhpKi7Y,2825
213
239
  pygeai/core/singleton.py,sha256=-U5kywQOBvbTtkWCczLZD_aoHBjDLRj07Q-UqQJpww0,242
214
240
  pygeai/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
- pygeai/core/base/clients.py,sha256=umtT6WoecCivXAxFajF-lMI5EbTNLKJBthuIHHixdNY,1608
241
+ pygeai/core/base/clients.py,sha256=RZyPPlzuA6XbxJusRCFlAOt-r4Ho7kAXoR45ZcW0-X4,1732
216
242
  pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
217
243
  pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
218
244
  pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
@@ -220,151 +246,155 @@ pygeai/core/base/session.py,sha256=XxHpTPeBfBogRUnqpIc-Rqx2drA4blFqtAyLPcoACb4,2
220
246
  pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
247
  pygeai/core/common/config.py,sha256=uEPqTTonya8IBX0KSRI927cjUJ39JvYExnkqep-5U6o,4395
222
248
  pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
223
- pygeai/core/common/exceptions.py,sha256=-eF4V0B-27zfp0aHMlZWqWRIty6P7TCOrzMRW87ZnlE,1251
224
- pygeai/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
- pygeai/core/embeddings/clients.py,sha256=0r-BX4ptivIBNrsOAMgw0q5nNLrIU7UxJ3SD6MkfXX4,3543
249
+ pygeai/core/common/exceptions.py,sha256=ANzWJIixnl_P7D3ZPYVm1G53D8lgGYkZZ_-F1DNtErg,1410
250
+ pygeai/core/embeddings/__init__.py,sha256=sn0wz0qNJeJy-1AQW4on62LX7bqhlVs7xcS0MaPQcW4,486
251
+ pygeai/core/embeddings/clients.py,sha256=s-yHs99puVw4H1ShQ_jU-7c8S9BUs7WqwUavTKVpcMc,4146
226
252
  pygeai/core/embeddings/endpoints.py,sha256=b__cuKQjribog9PSUeDzwrQ0vBO4WyYahLhLjDiUpL0,98
227
253
  pygeai/core/embeddings/managers.py,sha256=j6sxPiQTGYXKbaV9K4_rmG6_4-16_ky2LUvfDL-24EY,3520
228
- pygeai/core/embeddings/mappers.py,sha256=n-ADAQiAbrfBaALuk7sp8J04GkTjIXiDdOb_VDXH48A,1375
254
+ pygeai/core/embeddings/mappers.py,sha256=9K5AB5FA9KWYd-MOHpZu6MkqfZxVq9ESQLf76MQdDj0,2019
229
255
  pygeai/core/embeddings/models.py,sha256=T9FehWk_0doiiZG7yMzSCK9_TBHibaocA4b8sJP7T4M,366
230
- pygeai/core/embeddings/responses.py,sha256=Lmjl0tWsbkFZcwjTf19CMNaChy4TcSh6cMIPUIKEqcc,411
256
+ pygeai/core/embeddings/responses.py,sha256=ny7iE4p-1yADcRC7U2TdhxtXI3wZ87QXrDfGGbiEvpE,674
231
257
  pygeai/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
- pygeai/core/feedback/clients.py,sha256=Drpwkye9wqC-eECsbVormFHSTIVP7rggbPbO1NeDn6U,2008
258
+ pygeai/core/feedback/clients.py,sha256=eFxgmIPLosomoDaBt7kC-nuVMsm0yGT-vDubTaCBqQM,1882
233
259
  pygeai/core/feedback/endpoints.py,sha256=GzgjLtBCYWkk51OfUCHe0YigO-F-8QM6XiH0zQuo1Qg,197
234
260
  pygeai/core/feedback/models.py,sha256=VdeVVWTQ8qc4TEPbL2XbYI4-UP2m2eh1pkBptw_do1E,336
235
261
  pygeai/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
- pygeai/core/files/clients.py,sha256=gjmm5H_BOEK_QRNb55s4CBGMA_IRV-xvkwf9YCjdEAY,6564
262
+ pygeai/core/files/clients.py,sha256=1wxpKaq2nDjEDm7wWXAK9xFV2vXZGKlJropMEjLV1Ng,5663
237
263
  pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWYQ,337
238
- pygeai/core/files/managers.py,sha256=Hzq-XMEJnnNrh3pG5PViQqSt1WrbO-z5wHXsoGrSQxA,7158
264
+ pygeai/core/files/managers.py,sha256=kvl5Du_N95Rm8Z-EKSXmi5puNwHjtgp5rVEtZWVPEas,8773
239
265
  pygeai/core/files/mappers.py,sha256=8PXXsQJZEH45yLISn_xsOZmcRUEe_F6ELkUeR1lzc-M,1462
240
266
  pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
241
267
  pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
242
268
  pygeai/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
- pygeai/core/llm/clients.py,sha256=TjSFULqFn97wBYUnkPVinuAquGlryzawMI7v7S3ads0,3095
269
+ pygeai/core/llm/clients.py,sha256=y9WqIsdWGdwjiXJ7b5ONIdLikAab3sdU0yfcadojJ7k,2161
244
270
  pygeai/core/llm/endpoints.py,sha256=EF5wNJH8Au3ZYl_hF2uCRL4hPSe2_MIy6TGpzubNVak,435
245
271
  pygeai/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
- pygeai/core/plugins/clients.py,sha256=1CJ1ZW-acPoFFvRLW25fsZnyqy62tBIHBs6ND41aflw,1209
272
+ pygeai/core/plugins/clients.py,sha256=Zw6G26Jq2TCLSgfRDQfoMhaY_qzA5YpdTRXpS0YZ_Fo,995
247
273
  pygeai/core/plugins/endpoints.py,sha256=1YUPtu0sqUKAgyBwTtEJdxhRs_ip9RL2mhz04U6KsXo,145
248
274
  pygeai/core/plugins/models.py,sha256=SzqE-NToxbqTTMerUk_ELkI6-P6KNIDJY_AOZx0-PTU,3691
249
275
  pygeai/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
- pygeai/core/rerank/clients.py,sha256=-7ztc7CAnAaQ6ay-MxehY8wxkqoT3EHtdYmJSYFQdQU,1206
276
+ pygeai/core/rerank/clients.py,sha256=gmUxcQFplByLadLafrq31dEBp8lqzXTktW3niHBN134,1010
251
277
  pygeai/core/rerank/endpoints.py,sha256=PZcA1i73fyGbpnbpWYr1-gHc6zy7L60b_E8sMLwsXw8,85
252
278
  pygeai/core/rerank/managers.py,sha256=MdfKTQnwWjduBa2gjXDq_OErgXH_bNZfNUjLCARpZwc,2043
253
279
  pygeai/core/rerank/mappers.py,sha256=Jx8PAymebA2TPxGssaKAj4eS0OVsKJqecntAugRO9ww,957
254
280
  pygeai/core/rerank/models.py,sha256=WLE-waHk2glKSl1xx9EpmE1k4bva7c14jjraaWuQ5Uk,430
255
281
  pygeai/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
- pygeai/core/secrets/clients.py,sha256=W87_z0syeToUemlH2RmQtM6gJsLvwRU1FEjvXO9Std4,10350
282
+ pygeai/core/secrets/clients.py,sha256=9u28Gr-hXn0-kC4_xhgvl1a8n0PNV088KsI39X0QZeI,8874
257
283
  pygeai/core/secrets/endpoints.py,sha256=HN17bf7m8BSwtgLFZt0ifZf3KwR-MP3cXUSeY6P4H-8,468
258
284
  pygeai/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
285
  pygeai/core/services/response.py,sha256=L_xDAvSwnupQv6g1Ly2WQvImvITIVrMYW_TcEbXjM6c,505
260
- pygeai/core/services/rest.py,sha256=5oxpKgRLZdqZL-DH3TyXBMhKSsOZU9IMaksjOe8gEXI,16554
286
+ pygeai/core/services/rest.py,sha256=82zIAx8aXr6OLCcFk5UjPTSmOnK_Mm4sTCL_NNsGeVY,16566
261
287
  pygeai/core/services/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
288
  pygeai/core/services/llm/model.py,sha256=dv0vH2uGQDzyXh63A_nr_bmMukr6Q9nO7LuiWgvclnY,9065
263
289
  pygeai/core/services/llm/providers.py,sha256=CS1v4qSiibuL51fQlgcARiyPoXxSnCeV5RXwNc1nmgA,293
264
290
  pygeai/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
291
  pygeai/core/utils/console.py,sha256=2YD0R6r5k0P1YCtYZDg1VnFih5HubdWg2vKxV4xguz0,2900
266
- pygeai/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
- pygeai/dbg/debugger.py,sha256=c4w98n-DhusmE9vGXOJ_D_q_nDWUh4dvRREqCCKuC0E,7076
292
+ pygeai/core/utils/parsers.py,sha256=783HSQX7CDRKHU7WQQ9o_sS_ucMrYNDXvC_pKw1F-P4,1303
293
+ pygeai/core/utils/validators.py,sha256=LoDrO5z0K8_axMdoMHGZZHlxdIFQWnzC9L7RbEQFITg,328
294
+ pygeai/dbg/__init__.py,sha256=97HEKO5JdnaZi2qcJEXT1C-MUk0plqpSF_yQ0tUAPrw,91
295
+ pygeai/dbg/debugger.py,sha256=juoNZplNYGdcLeYjU6Mbe5N6kj7OeZJtvHF-0byJdXg,26471
268
296
  pygeai/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
- pygeai/evaluation/clients.py,sha256=U_4TOygUIgVOPFPDMZiv1qzJjNU193tm2KqkwuzHmZw,760
297
+ pygeai/evaluation/clients.py,sha256=JASfhRbEHp_sKBmkW3AHMhsZ7iIpIV028CM1jQpoKxM,826
270
298
  pygeai/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
- pygeai/evaluation/dataset/clients.py,sha256=fPCwlNc6gKYLwf_Iech13GwAk1JCxpowp8oJPmhKVM8,18804
299
+ pygeai/evaluation/dataset/clients.py,sha256=mzinQp-bZ2h6GdNJ6N2TQ9ceCkCzZINwBMyAPp6hbss,20033
272
300
  pygeai/evaluation/dataset/endpoints.py,sha256=d_llUcXNDncNrIyYgjJ_lMBnX2YPVxmeu8op3N30mLs,2922
273
301
  pygeai/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
- pygeai/evaluation/plan/clients.py,sha256=JSNICKQOXT9fnBn370RxMrjCtmUKYtx9_lHxaSDifT0,12083
302
+ pygeai/evaluation/plan/clients.py,sha256=iNXS23JS9rH66xIFZvH7gpHv_kNRKQRHy_hNvO8nm1c,12788
275
303
  pygeai/evaluation/plan/endpoints.py,sha256=IzBRZ5lTjeEAwiQUVYr6TCgr6ddZ-LZS3jEp0o1owTQ,1976
276
304
  pygeai/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
- pygeai/evaluation/result/clients.py,sha256=egXTaDBDc8IxW7Pw3xRTxrzL5Q4So3S-L4_xl1q5J2Q,1319
305
+ pygeai/evaluation/result/clients.py,sha256=a9RcmfLJ4uShSh0y0mLSRVS6EbmC9eD4q-ngXh99Sj4,3042
278
306
  pygeai/evaluation/result/endpoints.py,sha256=dyWKB8GXaVClHBnC5BCrA3lX717wFPVrKaqIgil7UqY,310
279
307
  pygeai/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
308
  pygeai/flows/endpoints.py,sha256=GK7k2XI49j6Ya6tBcq8_Y4PAN15CE3bbeA8-IlxJAq4,33668
281
309
  pygeai/flows/models.py,sha256=FqrNQo2wPU-oQsHO4kkbDcuLLVc1shQ5EnCHpOb4fL8,24472
282
310
  pygeai/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
- pygeai/gam/clients.py,sha256=YeHK-Zd_k22SFzTU1EPAzM7YEIF6BcuuH-joWmQNZeo,8592
311
+ pygeai/gam/clients.py,sha256=8egiv_7Na6ypYx6ZYcFhKm4GG1ilPXsuI9_xj4lRG7o,7698
284
312
  pygeai/gam/endpoints.py,sha256=Gf9V5PT2wI5qLW3UjG9SI0FWzTcwP8HN4lEFrFxbFPo,500
285
313
  pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
- pygeai/health/clients.py,sha256=U2eb1tkXt1Rf_KdV0ZFQS2k4wGnJTXHHd9-Er0eWQuw,1011
314
+ pygeai/health/clients.py,sha256=LQdluFxnPmzTbuQJl0XQIFJBIQ3j2VL3okTtaFxmQDo,855
287
315
  pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
288
316
  pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
- pygeai/lab/clients.py,sha256=vBQHSK3nNWuXxycGlTDKGDtv140Q-0Y4GrvoHkvSeu0,949
317
+ pygeai/lab/clients.py,sha256=SCX3_qPsztvAY6IIr1NXTYk_dwI8ge7v3RILHNocHJI,1011
290
318
  pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
291
319
  pygeai/lab/managers.py,sha256=EGU2NTpZyWtPo-VBX_wSrNOjLNPBIt7cxha9lIbuXgk,70725
292
- pygeai/lab/models.py,sha256=1m41gSqpXZVO9AcPVxzlsC-TgxZcCsgGUbpN5zoDMjU,71451
320
+ pygeai/lab/models.py,sha256=GC2F8qmNH_185XDfcsOU4VxNCuJfBFIJGK8jYQXrRLQ,71455
293
321
  pygeai/lab/runners.py,sha256=-uaCPHpFyiKtVOxlEjPjAc9h-onSdGAcYJ5IAZPqlb0,4147
294
322
  pygeai/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
- pygeai/lab/agents/clients.py,sha256=VIbKSDxSNH1P-CX6hF7LUcgtvrE3jvO_gu4KCtyzyls,21213
296
- pygeai/lab/agents/endpoints.py,sha256=RpWbFwqgX_GCVn29DYM46PVon5qjD7C1SmzvcjEKMzI,696
323
+ pygeai/lab/agents/clients.py,sha256=7jrBjFpShHUZ5Bf__TA0yikQqvpsrIRf4O2uH4iygwA,19091
324
+ pygeai/lab/agents/endpoints.py,sha256=m2FwLmoaiK1_5YyEpMklAfCUwum6GpxLc7ZBXFHrdhk,827
297
325
  pygeai/lab/agents/mappers.py,sha256=K6rxsO2Nq6GglmCUmyDKUNmzTG8HRbCelap6qaVKXQw,10583
298
326
  pygeai/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- pygeai/lab/processes/clients.py,sha256=4OUf36Dhyd4hJZomeLcq9XDpLiCINwmfu6tHy69TkDE,49417
327
+ pygeai/lab/processes/clients.py,sha256=7CSFCzeymFG1eJUM69wGt2LjSyTG66IxiTCzAUsc_bw,43870
300
328
  pygeai/lab/processes/endpoints.py,sha256=nFIEcNP22xe4j6URI6KcwTh7h-xgYjYYuHT6PDPiO3I,2100
301
329
  pygeai/lab/processes/mappers.py,sha256=YOWcVKdcJmLMAq-f3qevzqQ8L_hjb0_jVXBdCHutpzk,15815
302
330
  pygeai/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
331
  pygeai/lab/spec/loader.py,sha256=Dq9MhLqFwF4RPdBBaqKPGqt43-PrNlsHpe-NXe4S0qQ,709
304
332
  pygeai/lab/spec/parsers.py,sha256=oG7tY-GylweRxpvtCl3p53t0IoTX3UZFiB77x__3Qp8,646
305
333
  pygeai/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
306
- pygeai/lab/strategies/clients.py,sha256=_a1yc8kwd50Yv4g1jqfa0gRnMiROR7Dn0gx3xqFUjVE,10316
334
+ pygeai/lab/strategies/clients.py,sha256=FuLpxobqXiPeDL7b2a719pq6-gZ_g5n0NWKIGchizSY,9298
307
335
  pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
308
336
  pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
309
337
  pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
- pygeai/lab/tools/clients.py,sha256=bwOuMrkGKzNbUal8gAwkz-PNiVZ_ucw9klgP6YZB6QA,28145
311
- pygeai/lab/tools/endpoints.py,sha256=HiGoMs4OVeCgH7EAERTtifFPl53NryA1Awh7D6AO8bA,699
338
+ pygeai/lab/tools/clients.py,sha256=l4KbH7iuezbuiN1PXM9D1V9CDcvkarNmR_YFfwhPA9A,24874
339
+ pygeai/lab/tools/endpoints.py,sha256=uZwRHSYwbzzqpZE-UDv1vLWLed1YV3bgf4DX7xG0sd4,881
312
340
  pygeai/lab/tools/mappers.py,sha256=bYi5k36h0k4mCvOnV-r8YOHKz0U9P0mH21GNs20w2eM,4998
313
341
  pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
314
342
  pygeai/man/man1/__init__.py,sha256=CFvES6cP_sbhgpm-I-QSbPC1f7Bw7cFsMW2-sxm4FtM,54
315
343
  pygeai/man/man1/geai-proxy.1,sha256=N5jtjzS5dB3JjAkG0Rw8EBzhC6Jgoy6zbS7XDgcE4EA,6735
316
344
  pygeai/man/man1/geai.1,sha256=dRJjqXLu4PRr5tELX-TveOrvp-J085rTV0NbqL5I30Q,51162
317
- pygeai/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
- pygeai/migration/strategies.py,sha256=fNTPuAPrGPxjbQN6zQn7qaVHksft_rC8doADdUw1LWQ,9785
319
- pygeai/migration/tools.py,sha256=DuBWwS72VxXF2b95aw89u0aLBjHP1UhD5GBlUtuG8nA,321
345
+ pygeai/migration/__init__.py,sha256=CaL3TTPQwOGd0p8TOv1rUot5vYAhhj3FLtEawkoroAk,783
346
+ pygeai/migration/strategies.py,sha256=Cq6XWmEyG14nCfc5-lPp0vi5XbSvKO4I3rzjbOth68Y,20261
347
+ pygeai/migration/tools.py,sha256=d6YtJ2xPdEAxMBiDgOXaMiXSgbUcErzN0wj0kmA9skU,6201
320
348
  pygeai/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
321
- pygeai/organization/clients.py,sha256=O9RMeFm8gm5e6OoJl2y3JTS_MUZEp2Twc8AOpsUTj4M,10073
322
- pygeai/organization/endpoints.py,sha256=LOjwCMjx7wWBIimCzWhNt7cL1WP2IoU9Jtg1tKzRElo,794
323
- pygeai/organization/managers.py,sha256=KVPgmKIUGv71HkqOiW4LvUqWnuRpCu5OcxkewKbpa68,11726
324
- pygeai/organization/mappers.py,sha256=02-xTSE-Tmlhugh2vDIJDpixKI_4UdljcSgmwJIfJp0,2564
325
- pygeai/organization/responses.py,sha256=VetphuyPHeXlB4uNn97kwI4x4XT6-0Eede-eQ_eMXtw,1220
349
+ pygeai/organization/clients.py,sha256=9i2EzaPvoNas84zPL6oOXg6VIe4t3LSRdxxc168eM1c,13386
350
+ pygeai/organization/endpoints.py,sha256=z70qIdYY2XvzZliF1Nw6ZFHraf4-sdQpF5WDaciypS0,1478
351
+ pygeai/organization/managers.py,sha256=hv6aZTCP8qcs0HSau1tkZepPupbc-82sNV2SzJq66rk,19335
352
+ pygeai/organization/mappers.py,sha256=gIBuZMorym0mLgEa2zEY1fICunuQCW_zG2WYIWnfXwU,4999
353
+ pygeai/organization/responses.py,sha256=GjYDYWrjmPg-Uj6Oa7olr5M9VdlIowPuKmJT5c2HNbk,1716
326
354
  pygeai/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
- pygeai/organization/limits/clients.py,sha256=g-2Fov4ArS_g0xDRaaJ2hFn-4JLW1tdbI1PE21dA-vc,19943
355
+ pygeai/organization/limits/clients.py,sha256=hoj31n_Lxt40sCV9umxXt3Q3BzFaKSTTtdhMc-4dAZ4,15600
328
356
  pygeai/organization/limits/endpoints.py,sha256=mtca6U6l47jbbbmGc8KoXCDMnyNHtaPo8dxWVuHuUE0,2578
329
357
  pygeai/organization/limits/managers.py,sha256=fba8goiRXg_yWn0SyOjjhyZcL7VdzGZg-wM5V2yZwWg,14507
330
358
  pygeai/organization/limits/mappers.py,sha256=nINHaXOnZLnpc39PG3xf_7HX6tS9_-cT-H50ARwCGvw,777
331
359
  pygeai/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
- pygeai/proxy/clients.py,sha256=YPRUS3JAbEXgIGZ_dg8VwEXLxvG_hl51o70uudqjYB0,7857
360
+ pygeai/proxy/clients.py,sha256=7g0SJbYjBp02rX6WH-HdGOevclGNJLsELIgf68fR14w,8059
333
361
  pygeai/proxy/config.py,sha256=41fACnnhB21OhnohVPW4sbM8aZbAAEgGo7-dUaM_fpM,5057
334
362
  pygeai/proxy/managers.py,sha256=hXxVeWvkwfb7QrwOGcKyL9qW_wdNTxcpW84ppqwQ0SU,11132
335
363
  pygeai/proxy/servers.py,sha256=gWEceLmla_doKfEx6UJNIfrcr5USqkiYfz0LB9O80vA,11518
336
364
  pygeai/proxy/tool.py,sha256=gxDd_jABg68vB_WOAGsosd0dQc3AbRKnFqY6qpXsBDk,2338
337
365
  pygeai/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
366
  pygeai/tests/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
339
- pygeai/tests/admin/test_clients.py,sha256=UnTPxDd2Jvu8qCz1mPEsduWTO0RqV7_2DwTGyYwq8cs,6498
367
+ pygeai/tests/admin/test_clients.py,sha256=WqVlZttfh_gSwM9kVcBvuKGoroXb40pjnBwvNZEvO_A,6964
340
368
  pygeai/tests/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
- pygeai/tests/assistants/test_clients.py,sha256=q6WRPdtqvTkfZGDBoAoiU-Tt7eD-B1dMD45U-1Le8HE,8375
369
+ pygeai/tests/assistants/test_clients.py,sha256=L6dklqyJmle-aBPKC7sgL9k9D_-WptT6m_C2W0hkVaE,9013
342
370
  pygeai/tests/assistants/test_managers.py,sha256=EbwGVabdCBqgMryjRMoWVFWa5kR9HqzsckB-DR3EuSA,11196
343
371
  pygeai/tests/assistants/test_mappers.py,sha256=zIYdt4zqTG82L1t-GAyr-udRipxRvXnRerPUueOmkQY,4089
344
372
  pygeai/tests/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
- pygeai/tests/assistants/rag/test_clients.py,sha256=fHKi1qwBQSuMz7UPP9zPQslBX9Bsiqlt3SylKBzXae8,14713
373
+ pygeai/tests/assistants/rag/test_clients.py,sha256=AMqOmpYTISAm-vvJm22YVsKdvqoDLBMnxWklK-OfZa8,15740
346
374
  pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP79jiMC-R1Vnvus,8359
347
375
  pygeai/tests/assistants/rag/test_models.py,sha256=45eAQ4vE3gMvE8qWKlXg2klulQMZ3riHx5XWurE0mVA,10790
348
376
  pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
- pygeai/tests/auth/test_clients.py,sha256=QvVr0CC4wD4lV7tnS2Sg1vc4-ucxmjiXuicyDAeTrgg,4253
377
+ pygeai/tests/auth/test_clients.py,sha256=PmCletRHQRiy_D15VaGILUCq9T-acDUHCk6t7tqnmAQ,12113
350
378
  pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
- pygeai/tests/chat/test_clients.py,sha256=zYV3p9F0UPUoyYZlH-c8CoSL-6abrHhbS_6bAtkHa5E,7655
379
+ pygeai/tests/chat/test_clients.py,sha256=E_0XMe0kFrNHZY_xRxNKjHq71y2ifzj51Pm10xqKqAw,15901
352
380
  pygeai/tests/chat/test_iris.py,sha256=kWGrQ0T7E5Lg9-F9157GvF32l1sbaejbI5qbGKjWkxM,1186
353
381
  pygeai/tests/chat/test_session.py,sha256=yIxUJJGRXWPjwxvsosIE7AygzKoJ45GIx5DCUYgTRqY,2906
354
382
  pygeai/tests/chat/test_ui.py,sha256=vWUdyC8mmZ7P-Ej4ssrCcSxMBNAyXY0rwuI_H840XaU,8938
355
383
  pygeai/tests/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
- pygeai/tests/cli/test_parsers.py,sha256=EoZur-PByaXnNmXbIileISFGJLYiOvp3M6VO1RIKFHM,7442
384
+ pygeai/tests/cli/test_error_handler.py,sha256=1HqdtRImsAwW0GtWi74WHtv1SUbF_1a9SwhrQ39_Ybg,9300
385
+ pygeai/tests/cli/test_geai_driver.py,sha256=W4eNeXfOdEas0VsNKd9qm6rwAR5bBMQTA69iLAFm1A0,6247
386
+ pygeai/tests/cli/test_parsers.py,sha256=QhNf46ijgwQVzzXhsoJ4Vbg948wXM2-5FSWa-yorm08,7267
357
387
  pygeai/tests/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
388
  pygeai/tests/cli/commands/test_assistant.py,sha256=IT1ORQZRFoNvGXn67SweI8DU3d0G8fJbnLAFfEJCV0k,10547
359
389
  pygeai/tests/cli/commands/test_chat.py,sha256=4TK_sRqEQlgpCribkMjKqzAONVxAP7oSkfYw5bIRYb8,6120
360
390
  pygeai/tests/cli/commands/test_common.py,sha256=gv1GOEAXq5IqiXu5xjANq4pxyjClcu2taCHIaG38Gjc,13514
361
- pygeai/tests/cli/commands/test_embeddings.py,sha256=E6A5AlvQHgK97bqTUauvJBg-Cn34IJ3f92wBJpCsL-0,4535
362
- pygeai/tests/cli/commands/test_evaluation.py,sha256=F8ZYcTZ1hRKw12j5tVdF2BVSGLfllIDG1q_NxofnBY0,30620
391
+ pygeai/tests/cli/commands/test_embeddings.py,sha256=vFsA83cZECy7Tcg0FTDmtFdgT3OfM2dI9X64MniS8oI,5232
392
+ pygeai/tests/cli/commands/test_evaluation.py,sha256=rjIzAQxPXwoUgbbKvTy-Tgmid879M4Jipa-jBYRZPRg,30900
363
393
  pygeai/tests/cli/commands/test_feedback.py,sha256=gHJ8Jt8kEemTvlpWLCyZCo73i0iBPlKhONRj4bJfhWU,3192
364
394
  pygeai/tests/cli/commands/test_files.py,sha256=cJ0W4f8eg1T2TBZCah1k93nrk7R8ZL6_1HwCOhJOacI,7583
365
395
  pygeai/tests/cli/commands/test_gam.py,sha256=oIFj4HJV6z1fQkIU2BmgP1VJ2zJ65UWDM6a3G8AenHM,8318
366
396
  pygeai/tests/cli/commands/test_llm.py,sha256=SzQg9-Okix61JNWDWwaJIWuxxyji6n1PzaICleaonIM,5272
367
- pygeai/tests/cli/commands/test_migrate.py,sha256=NPUe58OC74e47WKjqTKaBERhW2X8fGeBAG7MvsRkANU,12231
397
+ pygeai/tests/cli/commands/test_migrate.py,sha256=LicCAMtR8ADytypF-ihTaus-EFc17McC008HbqFYT0o,7381
368
398
  pygeai/tests/cli/commands/test_organization.py,sha256=ret6Aboh4ew34VSo_dZcfBOrtce1dDNQO7DvyGUbFx4,9227
369
399
  pygeai/tests/cli/commands/test_rag.py,sha256=7SdTbCgdPDoLca4Y7LECkL6AVPpgIYXiXyTRubBNe1Y,11761
370
400
  pygeai/tests/cli/commands/test_rerank.py,sha256=G9Kc-VnLJgx_fYy1qgoL0swYp9-VV6OSL9eNnU0Xkpw,5305
@@ -392,42 +422,44 @@ pygeai/tests/core/common/test_config.py,sha256=wmh9mb3KN7LU_EkeYl1NiiARdZKYwultA
392
422
  pygeai/tests/core/common/test_decorators.py,sha256=HK3I46fTRZ8AQjVd_Fme_Wvoy2-SIl5GOGhldmd6xRc,2405
393
423
  pygeai/tests/core/common/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
394
424
  pygeai/tests/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
395
- pygeai/tests/core/embeddings/test_clients.py,sha256=1RsYXI7USA_JmWfX1lrfxA1pCFZwyJmnFZpoa4IyM0c,3824
425
+ pygeai/tests/core/embeddings/test_clients.py,sha256=dTivcz5E3E1X9ld3GRD9p_-gopYEfAYXqM6d1tAKS8E,10391
426
+ pygeai/tests/core/embeddings/test_managers.py,sha256=KZmtbXxncWatszhkNb9Z8mOWqvQW0mIolJqvBYw8Htg,6001
427
+ pygeai/tests/core/embeddings/test_mappers.py,sha256=3X0jV9bgidE_Nl_iLYrB5rUKDijLimF3Es_HN33er40,4955
396
428
  pygeai/tests/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
397
- pygeai/tests/core/feedback/test_clients.py,sha256=hHNs6kYLusLZgLVYQlSYet0uhNQj84_UFYUMmoXJcu4,1996
429
+ pygeai/tests/core/feedback/test_clients.py,sha256=tF_jkxe-1E0Mm8bNdI7hTDjJj1_MJHrshNFOj7wyLZA,2076
398
430
  pygeai/tests/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
399
- pygeai/tests/core/files/test_clients.py,sha256=fo_aMLICgSeOg2kB8uVY0cHwnPrsPLnyleN7yknvmVY,4592
431
+ pygeai/tests/core/files/test_clients.py,sha256=bTgJwQPU-ucoLEsGy0N5CI_VCRynyQhCFzvea-sUH-4,4637
400
432
  pygeai/tests/core/files/test_managers.py,sha256=hGRTJoC4hVTVryz2042Ue2PIJ_BEoSwU9IVpqbgwfx0,10811
401
433
  pygeai/tests/core/files/test_mappers.py,sha256=FGLsUCCagV8oJOJxg77QPHtWGClJreAn2beBHX6BF3g,4680
402
434
  pygeai/tests/core/files/test_models.py,sha256=H54GUf3OWBF1OL0ewwKlavFaKO80OzzfN31lDylsvzw,4297
403
435
  pygeai/tests/core/files/test_responses.py,sha256=ppb3P4ME_SowDHZiKSriAZAT0vbI-zbiO9pW9vxNfTU,5222
404
436
  pygeai/tests/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
- pygeai/tests/core/llm/test_clients.py,sha256=re73cBZREfP7mGEt5CNMXH4WjZ9pzzEwtbBvYyEJ26w,6094
437
+ pygeai/tests/core/llm/test_clients.py,sha256=KJPMGzNlLPvxbqFGs3g5cQ6Dnr-VrJ6JGWco5LoVGgM,6519
406
438
  pygeai/tests/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
- pygeai/tests/core/plugins/test_clients.py,sha256=sGvv4XF0Kw-dyq_9YpwKU1lHXxgPrhcfsBH9xMje8mw,2360
439
+ pygeai/tests/core/plugins/test_clients.py,sha256=bGW3e18mEm4qlFuFpiFJ8FcbYU15KYVvOM4XZ9hO5cI,2527
408
440
  pygeai/tests/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
- pygeai/tests/core/rerank/test_clients.py,sha256=QOn9ayry0JPdpA9plco0WvqO8DKtnKz5LBioSA6j974,2659
441
+ pygeai/tests/core/rerank/test_clients.py,sha256=vUpgoMgcjxbuCNst-6TX1TbwodfBUOeliMMEnLTSGEA,2704
410
442
  pygeai/tests/core/rerank/test_managers.py,sha256=qWu_tOXghsPJ8ENbMlcVpPFfxtRQteHmAnhESDRxZUU,4834
411
443
  pygeai/tests/core/rerank/test_mappers.py,sha256=yik-bhIViRL06x6VYXRvEoUl5gINhJCXJyDjBgv-g60,2114
412
444
  pygeai/tests/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
- pygeai/tests/core/secrets/test_clients.py,sha256=2460_oqfUSKuXaL2ruwDTrO2jR4B8JsBq6jZxmOPlBs,11944
445
+ pygeai/tests/core/secrets/test_clients.py,sha256=T-gXfBRGHdXjy-YrGrmFQd_K8_SAQ-nLOyymjnVrlLo,12466
414
446
  pygeai/tests/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
447
  pygeai/tests/core/services/test_rest.py,sha256=Gp-P9Eb1vherG1ZeJa_rXtArLNR5oMN4pUWJcyRvRFY,10804
416
448
  pygeai/tests/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
449
  pygeai/tests/core/utils/test_console.py,sha256=EvP0HpvD4bpq2WouH53UYovgh4Gq29xMudiLt-UNyA0,3266
418
450
  pygeai/tests/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
- pygeai/tests/dbg/test_debugger.py,sha256=L22axGlJlIDJFUMs9n0AjPYVATtFuT5GpTIi9hR7kig,6371
451
+ pygeai/tests/dbg/test_debugger.py,sha256=8eh14Ci6wDGsWm1eFZmpype4deMgPa77sHfNNmgM1sk,20506
420
452
  pygeai/tests/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
421
453
  pygeai/tests/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
422
- pygeai/tests/evaluation/dataset/test_clients.py,sha256=huWaCSiWHrZGxGMpXzjq__ciYsiROZOszcv0qouFT8I,11284
454
+ pygeai/tests/evaluation/dataset/test_clients.py,sha256=Z1HzG_XXhNz-mDw6uAsWLBBFw4f2tYDXA9FtPVmW_cM,11448
423
455
  pygeai/tests/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
424
- pygeai/tests/evaluation/plan/test_clients.py,sha256=IbP-JXHY2z_-KiZ_4T84uwP3fqq5KYCG-THjjRxQi6M,8725
456
+ pygeai/tests/evaluation/plan/test_clients.py,sha256=JrLvXJbjhv62sG0ANzsiujBbuhxCjh_QAEJ4yBHLRGc,8887
425
457
  pygeai/tests/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
- pygeai/tests/evaluation/result/test_clients.py,sha256=Lk7vXrUbOiMnCRk3DTHQdIMf5b6Vmn-Dy3NiJS_ahEU,2487
458
+ pygeai/tests/evaluation/result/test_clients.py,sha256=IHbqqmif3bHV66NzRgl4obTi5PNXMorsI2TNYmMz7wo,2679
427
459
  pygeai/tests/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
428
- pygeai/tests/gam/test_clients.py,sha256=vNz-4ux0cubztTY-_fEPWEoMCt5VAmZLecd0V-sEK1E,8906
460
+ pygeai/tests/gam/test_clients.py,sha256=ghrhwIZymDOWhYHw-upTLa1eNQY6wvHMO0VaFyvi_n8,8906
429
461
  pygeai/tests/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
430
- pygeai/tests/health/test_clients.py,sha256=kfakkZHFMfo2IAN-PzmtMGmgR4iNiN1RpRopI--0qHI,1525
462
+ pygeai/tests/health/test_clients.py,sha256=6G084xSln0r43HZSGQYBjHLHlfFAPmUx3ESkyJy-FHU,1565
431
463
  pygeai/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
432
464
  pygeai/tests/integration/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
433
465
  pygeai/tests/integration/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -470,35 +502,35 @@ pygeai/tests/lab/test_managers.py,sha256=ZjUGS9rk9NiGwamacaSRgEWmMIfJ8BecgAfXZts
470
502
  pygeai/tests/lab/test_mappers.py,sha256=2cLSggf168XWFpeZeBR7uJ-8C32TKb7qA91i_9fr_b0,11409
471
503
  pygeai/tests/lab/test_models.py,sha256=yozezeaJ6g4GDFPZoI5ixiSqENvJ7zdAM8tuu3xq1_s,54340
472
504
  pygeai/tests/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
473
- pygeai/tests/lab/agents/test_clients.py,sha256=cBtfBPkgbPm0MyN1rZdieGnMWkvHoJYekgw851PUTXc,21337
505
+ pygeai/tests/lab/agents/test_clients.py,sha256=cXUl5tNR5UWVujmpY6yvkckUqAXDwmm9nQJ-CyjnJTk,21697
474
506
  pygeai/tests/lab/agents/test_mappers.py,sha256=Ilkgc6w-VzFb_Hs6_K7HUf5IJ0NZ2-eutrHeDdbHVLk,13560
475
507
  pygeai/tests/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
476
- pygeai/tests/lab/processes/test_clients.py,sha256=JrzTFpU08oJGWge7m3xxsImDThPNezAr6elMEaa-EO0,58345
477
- pygeai/tests/lab/processes/test_mappers.py,sha256=JoI41IWXjHABNsdpVYiyRElx_G3NNuC6nwIdpgbuiPc,39774
508
+ pygeai/tests/lab/processes/test_clients.py,sha256=B3FBeOl1x08bMtUa271_57odASdv7YvRE-4HE6rlSUs,59825
509
+ pygeai/tests/lab/processes/test_mappers.py,sha256=WuBqfS_jUCEMoQdo-uXPo0K5ct4957M7yGXLyCCz1CM,39959
478
510
  pygeai/tests/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
479
511
  pygeai/tests/lab/spec/test_loader.py,sha256=Yhyy0zHxH6F1TeFSbop6YgRFwKjRkjFRdzM8aSaAkKk,2414
480
512
  pygeai/tests/lab/spec/test_parsers.py,sha256=C0sAqgpVu1CqivQ2VWdqusIaeg8f25Vb9uBbFZO1Sfg,7744
481
513
  pygeai/tests/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
482
- pygeai/tests/lab/strategies/test_clients.py,sha256=-pXRlovlOR3ne5Xo6VGTQvGCpiMwpwzysWsiWHC1kIo,10157
514
+ pygeai/tests/lab/strategies/test_clients.py,sha256=lb3gsWHwkZV2BKxrnbvFmkh3frdIJ0tOt1rL6AQpfl8,10557
483
515
  pygeai/tests/lab/strategies/test_mappers.py,sha256=gm0G2W-YAuvjn6qFa1O0nkkgTLSA1eIJAt9qE_I7BFU,5783
484
516
  pygeai/tests/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
485
517
  pygeai/tests/lab/tools/test_clients.py,sha256=dYhT4wbz-IVYZ5BNj5qSUmtnJ-gKfL6UdYkdxtYcIWE,22672
486
518
  pygeai/tests/lab/tools/test_mappers.py,sha256=_wA40iFvSze5-ddJ8WhjF0-IKNE5lwIFTTviVRxy-Wc,7803
487
519
  pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
488
- pygeai/tests/migration/test_strategies.py,sha256=Mj7ICxTp35U4hKXZvhbmyfGdvueQDVIKqgLNcmwh8Pk,26246
489
- pygeai/tests/migration/test_tools.py,sha256=3hIgeHr-qxw9M23Xi_iqI7jrz-ISMI3IrGdZwerE8ic,1174
520
+ pygeai/tests/migration/test_strategies.py,sha256=Ql9Nd9Hx_YZkahENC-JKWtUlsm6Gma_F3-ToAtDRAaI,17233
521
+ pygeai/tests/migration/test_tools.py,sha256=PY7NFqvW71R1xKCICmdHNFca_8gTob0QM4yRe-ILvnw,5698
490
522
  pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
491
- pygeai/tests/organization/test_clients.py,sha256=nipjF1aQP3gHBF3WvgSUxgkeTMGG8_2zb0VjQrU8KW4,13695
492
- pygeai/tests/organization/test_managers.py,sha256=7-ct1iJCFrCRNO0ws_Fh5w_XKL7IN30jL0Y8e9yY5To,12730
523
+ pygeai/tests/organization/test_clients.py,sha256=INB3ndU0n5aMnkRPt_6AR8tRxLtVvrXV5O9u0DiRgbw,21993
524
+ pygeai/tests/organization/test_managers.py,sha256=Pc6tsQ3TxI_0ZLeMsEGjxPO5Z0dmk0oMy99n5xPmLDI,19872
493
525
  pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
494
526
  pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
495
527
  pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
496
- pygeai/tests/organization/limits/test_clients.py,sha256=5Qh4sidVRAE6Viji-d3PSfXoegabP5o5x0tOkD6w-WY,27554
528
+ pygeai/tests/organization/limits/test_clients.py,sha256=D5w5VJK5bke3GEK6NZW9KNDk24tT1aBSWY2YzBBOuCs,28234
497
529
  pygeai/tests/organization/limits/test_managers.py,sha256=XPwWxT3l7x--_F9CwZhKsoVQe4Y6a7lDBU494HQc0IY,20445
498
530
  pygeai/tests/proxy/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
499
- pygeai/tests/proxy/test_clients.py,sha256=vyR0u97Na_vsr4aNTbVAy9CQxPB9vSXZw50t02IvEUI,13974
531
+ pygeai/tests/proxy/test_clients.py,sha256=BVudijLP1TvsSpJW5_0tMVHdeMbOgAEQXgQdhE5qS4k,14054
500
532
  pygeai/tests/proxy/test_config.py,sha256=5ZMyW7N-QrlDLG_qSwDGRIPOSOH5iZoe7Ts1GTuJqps,7541
501
- pygeai/tests/proxy/test_integration.py,sha256=X9Dwqi1Ixt4kuinoS0Yhtidv_36gWRvoi67Hl2ZjKgE,11441
533
+ pygeai/tests/proxy/test_integration.py,sha256=DSKgWrUgjAuEpyDyDaTW4oYpTRqwjEoFWmjbI_mkW7w,11481
502
534
  pygeai/tests/proxy/test_managers.py,sha256=KHd45UezpMTq972TR9B7LPHV44ZIsNxA5-uMBR2pETM,12787
503
535
  pygeai/tests/proxy/test_servers.py,sha256=U159ZNihpKawXXp1iCydvKuI6R_x0ePsEgFZDQYKBbU,16124
504
536
  pygeai/tests/proxy/test_tool.py,sha256=a0BfjOEv6BBHD3BW-E2anIkQM68TuRmDRighKMpTrgc,6142
@@ -525,6 +557,7 @@ pygeai/tests/snippets/assistants/rag/get_documents.py,sha256=I1w6R4kUF6ncayNDOvQ
525
557
  pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py,sha256=YNgx-0AuxrOrj5o1jTBmOjbt8vtcddlHdBe0Pb2vyU8,262
526
558
  pygeai/tests/snippets/assistants/rag/update_rag_assistant.py,sha256=sOMTENyjCjLmv9ZKzwL3Ub5_nTyu3frZTQx7PbSUxdg,1271
527
559
  pygeai/tests/snippets/assistants/rag/upload_document.py,sha256=ZcD6-_vexP1y7xCDzuI8qLtE2W4msf8raD-QBwbgC8s,489
560
+ pygeai/tests/snippets/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
528
561
  pygeai/tests/snippets/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
529
562
  pygeai/tests/snippets/chat/cancel_request.py,sha256=nPY2M8uF67y3slhdK2dPKsWE5wyiWEo4seTuZnnDJrs,192
530
563
  pygeai/tests/snippets/chat/chat_completion.py,sha256=NrLGpU2D5hDRfvVqMYVEq2rjM8BWbMOfUieOq10uDx0,548
@@ -533,11 +566,70 @@ pygeai/tests/snippets/chat/chat_completion_2.py,sha256=0TigXTiD0bXuB-qff79rRb_r2
533
566
  pygeai/tests/snippets/chat/chat_completion_3.py,sha256=UGY0At4HGDCiGT9rAOwwWLWYGo3v6ZVeYgbjWeT5xd8,581
534
567
  pygeai/tests/snippets/chat/chat_completion_4.py,sha256=nBOlnCMNUGpJaXvP_2XStR-qHSQIaK6GRLzoKyrOvIg,1726
535
568
  pygeai/tests/snippets/chat/chat_completion_streaming.py,sha256=2bb5fVrYknoaRVdH8-DHYuz4NtYgCFf3JyyQBa2F-pQ,1395
569
+ pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py,sha256=VDx5Cgy2smWt1MdRz3BJx290_bv2KaCz8NUsNlC41Fg,314
536
570
  pygeai/tests/snippets/chat/get_request_status.py,sha256=5_a7DxotYkE-2_PRIT6iDTRct9KNduQHt4X7DmU_kVo,256
571
+ pygeai/tests/snippets/chat/get_response.py,sha256=H7neNsbmykGv7urk-NP-WjZuTT930qu3aPbXUGTerYA,286
572
+ pygeai/tests/snippets/chat/get_response_streaming.py,sha256=nF9difHdFTCbrLy73XGIUt5W-FBixg-D6HvhkqjsnIQ,404
573
+ pygeai/tests/snippets/chat/get_response_with_files.py,sha256=ulGwnT5NN2uyQh9tzmw6-iUoYShs2QmTSSxYsBcY8M4,336
574
+ pygeai/tests/snippets/chat/get_response_with_tools.py,sha256=kTC0N07jWxrLzK_LuK-Gvpc5bzftoiDoTrCfhPT-uMI,837
537
575
  pygeai/tests/snippets/chat/send_chat_request.py,sha256=t9tdSE6YozLvc6o6rMPNbZvXcYTfFCjeS5Fn0qGWPRQ,863
576
+ pygeai/tests/snippets/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
577
+ pygeai/tests/snippets/dbg/basic_debugging.py,sha256=XlT7ooQuaCR7W5O4OXL7VLD8vrcmirR-eKRzwGF-q9g,737
578
+ pygeai/tests/snippets/dbg/breakpoint_management.py,sha256=h21WfZJ3fTSPfWLrw9vln0gW92e6yLFmjEWifvIbZpg,1215
579
+ pygeai/tests/snippets/dbg/stack_navigation.py,sha256=A2qcsw4-Zccf84ELd3o6yryhqbfZXMH5V0RWsOnfUXE,1042
580
+ pygeai/tests/snippets/dbg/stepping_example.py,sha256=M4uZI3xMOGQh95Ojgg9zWAX2sZ9AUH91wQm4mRoJ8X0,996
538
581
  pygeai/tests/snippets/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
582
+ pygeai/tests/snippets/embeddings/cache_example.py,sha256=ie7JGfsz_tTBY4eBr8f8HQeJ4J5R2Uv9lpStYHM-bEU,1071
583
+ pygeai/tests/snippets/embeddings/cohere_example.py,sha256=Zx3qbblIA3z7_dlKJGAJ_VnmyB35WiOi4IcqMAKwYFg,1420
539
584
  pygeai/tests/snippets/embeddings/generate_embeddings.py,sha256=IyIlO6UDGMjT-E9uK91NdYsuWI4fCRGwqlaFr0iUzSc,785
585
+ pygeai/tests/snippets/embeddings/openai_base64_example.py,sha256=OXEnou8tCc8DgrLnsBJBQDv_GROTsh-UpCLzmvqgM-g,938
586
+ pygeai/tests/snippets/embeddings/openai_example.py,sha256=DFnarCeNVaq4Jn1oJSRIRr7ZCn-m1JQe1EbgSEl1DgA,1007
587
+ pygeai/tests/snippets/embeddings/similarity_example.py,sha256=CMuG54YV2s-UwCVHYPle9EoFFv-GsWN9RsQx9sahD6o,1388
540
588
  pygeai/tests/snippets/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
589
+ pygeai/tests/snippets/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
590
+ pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py,sha256=OQMO_30VN98PX18qR5yLm693k7VPbX-kumjSRY_0sf8,7034
591
+ pygeai/tests/snippets/evaluation/dataset/create_dataset.py,sha256=aJcH6HMyIG6O0hvsNzLEyLRWywgSkBf2RmjBI-wD6Qg,779
592
+ pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py,sha256=BjjL97sEZ6mhkpStPG-GplPyBVm40wA8IGGDuJqspv4,330
593
+ pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py,sha256=8OSID-i1UZLctmB6hiv0UbUuzCujJ8mYWlbPWw_O34A,590
594
+ pygeai/tests/snippets/evaluation/dataset/create_expected_source.py,sha256=MDh1oyP9k3l0XV7x91c_2xEZA1fDTBp5PfbBaCDZpsw,570
595
+ pygeai/tests/snippets/evaluation/dataset/create_filter_variable.py,sha256=vFhGS7IGGliFs-9ULfaoOhxU-cUqGwBxKundUlEkMjM,546
596
+ pygeai/tests/snippets/evaluation/dataset/delete_dataset.py,sha256=_cz9lOI5y0dF8Ano-nBm9ONE1VAtOExRrUXUMuBACgw,239
597
+ pygeai/tests/snippets/evaluation/dataset/delete_dataset_row.py,sha256=JYsmo9qzz3T-dQ0ymtsGU4BGL9mUFHLjvMUOX2btDvo,290
598
+ pygeai/tests/snippets/evaluation/dataset/delete_expected_source.py,sha256=RmnNvgnQRxpv-hdVH2GXvYrswjkzsXeA3BGS-Dx8AYM,393
599
+ pygeai/tests/snippets/evaluation/dataset/delete_filter_variable.py,sha256=9ubYfg3aOAmeMY_LtrKble9MSd7SWynQfmQWmwtKo50,401
600
+ pygeai/tests/snippets/evaluation/dataset/get_dataset.py,sha256=Pfifj1CK9Z89sUZjuXpfurJpHUqDu67Ss0HoePDwDm8,236
601
+ pygeai/tests/snippets/evaluation/dataset/get_dataset_row.py,sha256=ek33YLcOra30FTc69dQi0rXnrB6KrlzctqiqfIHrKWI,287
602
+ pygeai/tests/snippets/evaluation/dataset/get_expected_source.py,sha256=8r8lq_pOUq-suhuwupkZ1YjTNlnwFzIztKXJQFu2agY,390
603
+ pygeai/tests/snippets/evaluation/dataset/get_filter_variable.py,sha256=u8cihENl0_TqbfHzKjd_J2jSMtBcYg_Tp2LlRJTwpEA,398
604
+ pygeai/tests/snippets/evaluation/dataset/list_dataset_rows.py,sha256=NpJtey25sqIgvP5wXeJF13KdrC0FbjfxSzOCLm2ToY8,239
605
+ pygeai/tests/snippets/evaluation/dataset/list_datasets.py,sha256=WkSjDvlR9lPSwYrJDMWCMzdaMrDbLh4PA3VzDogwP_8,172
606
+ pygeai/tests/snippets/evaluation/dataset/list_expected_sources.py,sha256=yzK9YaQIEIgCIc5Nyv_9zk1x7VZxWy0pKKrP0b2ZUFg,298
607
+ pygeai/tests/snippets/evaluation/dataset/list_filter_variables.py,sha256=RDEbI35qRXe7X-LfikKTUiQdV9fxeH4hvF8mz0Gfato,298
608
+ pygeai/tests/snippets/evaluation/dataset/update_dataset.py,sha256=9ANttq_N_gdrDvnnkTPSapao6X_a_QAC-a1y-7j7hno,381
609
+ pygeai/tests/snippets/evaluation/dataset/update_dataset_row.py,sha256=QlJEM6pmufdDvajx5A502qLTsWx4V8yjJzMJrbYs6UM,542
610
+ pygeai/tests/snippets/evaluation/dataset/update_expected_source.py,sha256=g4znWaQPOUVN1XjX6BpdQs3lSzm2PZ3usmEVq0gTcrs,544
611
+ pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py,sha256=GE4xFDUdQLgofmHh6kHjxDwFwUq_jvdMb10A0E8xZ0I,534
612
+ pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py,sha256=t8HL8MdwaDFSemy-2tZKD2pHhaKNrPr3H7mXH_XtOB4,310
613
+ pygeai/tests/snippets/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
614
+ pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py,sha256=ADcMckwO6mHOjPR5jzQa3xtix2-JS-bKESjg0hIxLwE,350
615
+ pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py,sha256=I7dE8Klp--yv6ek0M8O7XyZOaQbnP0nUxfvYrjV45xM,4529
616
+ pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py,sha256=_J19BpWeYVmHG0hjdq-L9b6ozjko7IfT3pu6UN0eFaI,617
617
+ pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py,sha256=scrXCfLAxrlk8sipfV1K4FPD63frJjLU_tiJeth44LU,552
618
+ pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py,sha256=Wr68Kjk_buOql786DhWjips2vWmvhOkuRslAfUiAhuc,273
619
+ pygeai/tests/snippets/evaluation/plan/delete_plan_system_metric.py,sha256=szgcmVXJqRs8LPuLLnZuVxc5lUxT8s8EU63_mlOwwO0,366
620
+ pygeai/tests/snippets/evaluation/plan/execute_evaluation_plan.py,sha256=fpyQDTV1MK8g_cD48HTL7Zx-DnOG55HI-F71b9fKRSQ,365
621
+ pygeai/tests/snippets/evaluation/plan/get_evaluation_plan.py,sha256=pPLk0BvTSrDHE8gg2GuJRDBZxKA_6EUPpXYqdOo4LP0,262
622
+ pygeai/tests/snippets/evaluation/plan/get_plan_system_metric.py,sha256=Lp42WODU_iZMWrhnHotsgYmOhjuKd0hhZFL8x7dwQ1I,360
623
+ pygeai/tests/snippets/evaluation/plan/get_system_metric.py,sha256=Wz0uNDTboJnvjjVxyr--Gr99ilsUR4HaKI2fiGx2mj8,243
624
+ pygeai/tests/snippets/evaluation/plan/list_evaluation_plans.py,sha256=iFjSAEIXIxqgNckovXgJjyAMjQZGiyZbS_fNgaIg2Ag,180
625
+ pygeai/tests/snippets/evaluation/plan/list_plan_system_metrics.py,sha256=xuzp_U1LrzW7n__GQeJrULoC8BXY0cGMer_kEBCGV3o,282
626
+ pygeai/tests/snippets/evaluation/plan/list_system_metrics.py,sha256=dXSKaEZcbJYMY3GMy7LdnPZ6g5SvHnQn5gxi1XVQZH8,186
627
+ pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py,sha256=HR3WVKHuPd8jZofy-LB3LvOkOcAqcmDc3rzVmGo7iU0,538
628
+ pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py,sha256=3TlDFPi2leLnW5MzB97ubrJNelPBmus_KnxNTINRolY,396
629
+ pygeai/tests/snippets/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
630
+ pygeai/tests/snippets/evaluation/result/complete_workflow_example.py,sha256=FGO6P8KDtc8AtWso1TVEd3KkJelMw_av--Z6ARbfr9M,5471
631
+ pygeai/tests/snippets/evaluation/result/get_evaluation_result.py,sha256=itet30dV9xV_NVYbxTnkL4FPb6heIyGJEsyzVrZ83M0,1070
632
+ pygeai/tests/snippets/evaluation/result/list_evaluation_results.py,sha256=e31Hd0iELVtDsMvK847f3yvMgePO7xqT2MLP62zo-Wc,764
541
633
  pygeai/tests/snippets/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
542
634
  pygeai/tests/snippets/files/delete_file.py,sha256=ORpPkrL9FllDonCHfoqf6LJUGyPHBoTdm1zpopzqbqU,249
543
635
  pygeai/tests/snippets/files/get_file_content.py,sha256=LM8DEmtE4MebEptcR_SUrbMfKuR9zfKfxsY9JspLVvc,255
@@ -607,13 +699,24 @@ pygeai/tests/snippets/lab/use_cases/update_lab_expert.py,sha256=-YLKCxoIXV9RNTh5
607
699
  pygeai/tests/snippets/lab/use_cases/update_web_designer.py,sha256=MRKwJmnh_O_YF7i1zQl--yN7Ib5P7D7y2Keey02pK0A,10620
608
700
  pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=BgHpf4kiLVQEc-YrapaiuomqIfzbRzr6kniInAhgO94,11620
609
701
  pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py,sha256=a3oj9i2RMnGj-BpDjSthDZVvAzcEyXo9cqygJ1jaVqA,14459
610
- pygeai/tests/snippets/migrate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
702
+ pygeai/tests/snippets/migrate/__init__.py,sha256=NPFth7aeZ8GMDzRABuEUpm83psblNy6NLdk4ECEaPs0,1326
703
+ pygeai/tests/snippets/migrate/agent_migration.py,sha256=xBADIh9ebuZKaXgzRedO2E-DdsyL6aWdXodDnwfMPTg,3720
704
+ pygeai/tests/snippets/migrate/assistant_migration.py,sha256=2HYvMvFbQxZ1VxcHUQFpmx-DuHC-3eLQj8zTU8DbFSM,2137
705
+ pygeai/tests/snippets/migrate/orchestrator_examples.py,sha256=hNymnQeXQ5dhuO_5rz6eEbCwKHb0S4GPJd3EIUOs15E,6836
706
+ pygeai/tests/snippets/migrate/process_migration.py,sha256=To0n6q1NN0sEr7anUv0U1f2aZeW0fBdqYqwVdCEZurw,2146
707
+ pygeai/tests/snippets/migrate/project_migration.py,sha256=N62oRMAc_lAhgmx8Y_gyTMGj-esSJ-ThyEzn3wZI7XE,1356
708
+ pygeai/tests/snippets/migrate/tool_migration.py,sha256=zUSlkO2LtyNQhE782lYvxbTX7NVg9xiwEaH4mSd-Tys,1998
611
709
  pygeai/tests/snippets/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
612
- pygeai/tests/snippets/organization/create_project.py,sha256=XxHeV_e3o2SvFTYzbCYp9YFnd1WGYBZE5G-bhBiOw3M,578
710
+ pygeai/tests/snippets/organization/create_project.py,sha256=dS_b0BaevxqVZsnQcOurxwnwPcdPy2oBFFFu2f8z_-o,596
613
711
  pygeai/tests/snippets/organization/delete_project.py,sha256=jLzHa_ra-T3XtO-eiegv4667TiKFfkuODsqKC6mIECI,201
614
712
  pygeai/tests/snippets/organization/export_request_data.py,sha256=hNHAZaUDKm7fRttEYl14m5VtZRW1HKt62BFk5wip-Gk,166
713
+ pygeai/tests/snippets/organization/get_memberships.py,sha256=PXDUf-ahEZ2gLYmRON-SqBbl5d8zhQU5T3vy_JAiSSU,320
714
+ pygeai/tests/snippets/organization/get_organization_members.py,sha256=bhgtHmOwJG9WXd7oPBm6efpKjv3cV-ezASoqjL-BwtU,226
615
715
  pygeai/tests/snippets/organization/get_project_data.py,sha256=bvoBOa-r4kiaVrXV4OeDNreAIA_mifqEU_MAnPpKqjM,228
616
716
  pygeai/tests/snippets/organization/get_project_list.py,sha256=Hq0E96BD78iAqAqIfoys5yQAEQp4gYQcJuQKZwy0bhU,219
717
+ pygeai/tests/snippets/organization/get_project_members.py,sha256=2trMrEce7YZvqJVJzsnj5EeUnJCA9Etd8awYqOnmYS8,216
718
+ pygeai/tests/snippets/organization/get_project_memberships.py,sha256=ggiO7NBrfQj6HZFu72P8ZCVXAS6fcA6zKp2w3oU_FFM,294
719
+ pygeai/tests/snippets/organization/get_project_roles.py,sha256=uM5nQbqGLh30B80POmN-ZXrep6Od9NsYOClBI-mr6_I,228
617
720
  pygeai/tests/snippets/organization/get_project_tokens.py,sha256=VUgmP-9hCHKAyDSFaru8AwKT-CmdU8dr-Ww8EXTLAJU,205
618
721
  pygeai/tests/snippets/organization/update_project.py,sha256=z4a3Etes-bpE2k-8eGTo8E5NN-F4uFQG7tXik2V5hZk,383
619
722
  pygeai/tests/snippets/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -674,9 +777,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
674
777
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
675
778
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
676
779
  pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
677
- pygeai-0.6.0b6.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
678
- pygeai-0.6.0b6.dist-info/METADATA,sha256=Kau106L0Ux370EiBA6fXG3fRQhhq_dYqnJBfzjriWRU,7977
679
- pygeai-0.6.0b6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
680
- pygeai-0.6.0b6.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
681
- pygeai-0.6.0b6.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
682
- pygeai-0.6.0b6.dist-info/RECORD,,
780
+ pygeai-0.6.0b10.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
781
+ pygeai-0.6.0b10.dist-info/METADATA,sha256=qJnwOAK8YfAZS4xF4Po-PbUzcziLyOrIx2VP2ODfTU8,7978
782
+ pygeai-0.6.0b10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
783
+ pygeai-0.6.0b10.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
784
+ pygeai-0.6.0b10.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
785
+ pygeai-0.6.0b10.dist-info/RECORD,,