pygeai 0.1.51b3__py3-none-any.whl → 0.6.0b15__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.

Potentially problematic release.


This version of pygeai might be problematic. Click here for more details.

Files changed (648) hide show
  1. pygeai/__init__.py +9 -1
  2. pygeai/_docs/Makefile +20 -0
  3. pygeai/_docs/make.bat +35 -0
  4. pygeai/_docs/source/conf.py +117 -0
  5. pygeai/_docs/source/content/ai_lab/cli.rst +747 -0
  6. pygeai/_docs/source/content/ai_lab/models.rst +1734 -0
  7. pygeai/_docs/source/content/ai_lab/runner.rst +253 -0
  8. pygeai/_docs/source/content/ai_lab/spec.rst +431 -0
  9. pygeai/_docs/source/content/ai_lab/usage.rst +1011 -0
  10. pygeai/_docs/source/content/ai_lab.rst +102 -0
  11. pygeai/_docs/source/content/analytics.rst +598 -0
  12. pygeai/_docs/source/content/api_reference/admin.rst +161 -0
  13. pygeai/_docs/source/content/api_reference/assistant.rst +326 -0
  14. pygeai/_docs/source/content/api_reference/auth.rst +379 -0
  15. pygeai/_docs/source/content/api_reference/chat.rst +754 -0
  16. pygeai/_docs/source/content/api_reference/embeddings.rst +154 -0
  17. pygeai/_docs/source/content/api_reference/evaluation.rst +590 -0
  18. pygeai/_docs/source/content/api_reference/feedback.rst +237 -0
  19. pygeai/_docs/source/content/api_reference/files.rst +592 -0
  20. pygeai/_docs/source/content/api_reference/gam.rst +401 -0
  21. pygeai/_docs/source/content/api_reference/health.rst +58 -0
  22. pygeai/_docs/source/content/api_reference/project.rst +738 -0
  23. pygeai/_docs/source/content/api_reference/proxy.rst +318 -0
  24. pygeai/_docs/source/content/api_reference/rag.rst +710 -0
  25. pygeai/_docs/source/content/api_reference/rerank.rst +94 -0
  26. pygeai/_docs/source/content/api_reference/secrets.rst +495 -0
  27. pygeai/_docs/source/content/api_reference/usage_limits.rst +390 -0
  28. pygeai/_docs/source/content/api_reference.rst +58 -0
  29. pygeai/_docs/source/content/authentication.rst +295 -0
  30. pygeai/_docs/source/content/chat_gui.rst +121 -0
  31. pygeai/_docs/source/content/cli.rst +203 -0
  32. pygeai/_docs/source/content/debugger.rst +651 -0
  33. pygeai/_docs/source/content/intro.rst +67 -0
  34. pygeai/_docs/source/content/migration.rst +929 -0
  35. pygeai/_docs/source/content/modules.rst +7 -0
  36. pygeai/_docs/source/content/quickstart.rst +143 -0
  37. pygeai/_docs/source/content/samples.rst +394 -0
  38. pygeai/_docs/source/index.rst +75 -0
  39. pygeai/_docs/source/modules.rst +7 -0
  40. pygeai/_docs/source/pygeai.admin.rst +29 -0
  41. pygeai/_docs/source/pygeai.analytics.rst +53 -0
  42. pygeai/_docs/source/pygeai.assistant.data.rst +21 -0
  43. pygeai/_docs/source/pygeai.assistant.data_analyst.rst +29 -0
  44. pygeai/_docs/source/pygeai.assistant.rag.rst +53 -0
  45. pygeai/_docs/source/pygeai.assistant.rst +55 -0
  46. pygeai/_docs/source/pygeai.auth.rst +29 -0
  47. pygeai/_docs/source/pygeai.chat.rst +69 -0
  48. pygeai/_docs/source/pygeai.cli.commands.flows.rst +10 -0
  49. pygeai/_docs/source/pygeai.cli.commands.lab.rst +53 -0
  50. pygeai/_docs/source/pygeai.cli.commands.rst +222 -0
  51. pygeai/_docs/source/pygeai.cli.rst +62 -0
  52. pygeai/_docs/source/pygeai.cli.texts.rst +21 -0
  53. pygeai/_docs/source/pygeai.core.base.rst +53 -0
  54. pygeai/_docs/source/pygeai.core.common.rst +37 -0
  55. pygeai/_docs/source/pygeai.core.embeddings.rst +61 -0
  56. pygeai/_docs/source/pygeai.core.feedback.rst +37 -0
  57. pygeai/_docs/source/pygeai.core.files.rst +61 -0
  58. pygeai/_docs/source/pygeai.core.llm.rst +29 -0
  59. pygeai/_docs/source/pygeai.core.plugins.rst +37 -0
  60. pygeai/_docs/source/pygeai.core.rerank.rst +53 -0
  61. pygeai/_docs/source/pygeai.core.rst +63 -0
  62. pygeai/_docs/source/pygeai.core.secrets.rst +29 -0
  63. pygeai/_docs/source/pygeai.core.services.llm.rst +29 -0
  64. pygeai/_docs/source/pygeai.core.services.rst +37 -0
  65. pygeai/_docs/source/pygeai.core.utils.rst +37 -0
  66. pygeai/_docs/source/pygeai.dbg.rst +21 -0
  67. pygeai/_docs/source/pygeai.evaluation.dataset.rst +29 -0
  68. pygeai/_docs/source/pygeai.evaluation.plan.rst +29 -0
  69. pygeai/_docs/source/pygeai.evaluation.result.rst +29 -0
  70. pygeai/_docs/source/pygeai.evaluation.rst +31 -0
  71. pygeai/_docs/source/pygeai.flows.rst +29 -0
  72. pygeai/_docs/source/pygeai.gam.rst +29 -0
  73. pygeai/_docs/source/pygeai.health.rst +29 -0
  74. pygeai/_docs/source/pygeai.lab.agents.rst +37 -0
  75. pygeai/_docs/source/pygeai.lab.processes.rst +37 -0
  76. pygeai/_docs/source/pygeai.lab.rst +65 -0
  77. pygeai/_docs/source/pygeai.lab.spec.rst +29 -0
  78. pygeai/_docs/source/pygeai.lab.strategies.rst +37 -0
  79. pygeai/_docs/source/pygeai.lab.tools.rst +37 -0
  80. pygeai/_docs/source/pygeai.man.man1.rst +10 -0
  81. pygeai/_docs/source/pygeai.man.rst +18 -0
  82. pygeai/_docs/source/pygeai.migration.rst +29 -0
  83. pygeai/_docs/source/pygeai.organization.limits.rst +45 -0
  84. pygeai/_docs/source/pygeai.organization.rst +61 -0
  85. pygeai/_docs/source/pygeai.proxy.rst +53 -0
  86. pygeai/_docs/source/pygeai.rst +35 -0
  87. pygeai/_docs/source/pygeai.tests.admin.rst +21 -0
  88. pygeai/_docs/source/pygeai.tests.analytics.rst +45 -0
  89. pygeai/_docs/source/pygeai.tests.assistants.rag.rst +37 -0
  90. pygeai/_docs/source/pygeai.tests.assistants.rst +45 -0
  91. pygeai/_docs/source/pygeai.tests.auth.rst +29 -0
  92. pygeai/_docs/source/pygeai.tests.chat.rst +45 -0
  93. pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst +37 -0
  94. pygeai/_docs/source/pygeai.tests.cli.commands.rst +165 -0
  95. pygeai/_docs/source/pygeai.tests.cli.docker.rst +10 -0
  96. pygeai/_docs/source/pygeai.tests.cli.rst +46 -0
  97. pygeai/_docs/source/pygeai.tests.core.base.data.rst +29 -0
  98. pygeai/_docs/source/pygeai.tests.core.base.rst +45 -0
  99. pygeai/_docs/source/pygeai.tests.core.common.data.rst +10 -0
  100. pygeai/_docs/source/pygeai.tests.core.common.rst +37 -0
  101. pygeai/_docs/source/pygeai.tests.core.embeddings.rst +37 -0
  102. pygeai/_docs/source/pygeai.tests.core.feedback.rst +21 -0
  103. pygeai/_docs/source/pygeai.tests.core.files.rst +53 -0
  104. pygeai/_docs/source/pygeai.tests.core.llm.rst +21 -0
  105. pygeai/_docs/source/pygeai.tests.core.plugins.rst +21 -0
  106. pygeai/_docs/source/pygeai.tests.core.rerank.rst +37 -0
  107. pygeai/_docs/source/pygeai.tests.core.rst +39 -0
  108. pygeai/_docs/source/pygeai.tests.core.secrets.rst +21 -0
  109. pygeai/_docs/source/pygeai.tests.core.services.rst +21 -0
  110. pygeai/_docs/source/pygeai.tests.core.utils.rst +21 -0
  111. pygeai/_docs/source/pygeai.tests.dbg.rst +21 -0
  112. pygeai/_docs/source/pygeai.tests.evaluation.dataset.rst +21 -0
  113. pygeai/_docs/source/pygeai.tests.evaluation.plan.rst +21 -0
  114. pygeai/_docs/source/pygeai.tests.evaluation.result.rst +21 -0
  115. pygeai/_docs/source/pygeai.tests.evaluation.rst +20 -0
  116. pygeai/_docs/source/pygeai.tests.gam.rst +21 -0
  117. pygeai/_docs/source/pygeai.tests.health.rst +21 -0
  118. pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst +21 -0
  119. pygeai/_docs/source/pygeai.tests.integration.assistants.rst +18 -0
  120. pygeai/_docs/source/pygeai.tests.integration.chat.rst +21 -0
  121. pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst +69 -0
  122. pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst +77 -0
  123. pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst +37 -0
  124. pygeai/_docs/source/pygeai.tests.integration.lab.rst +21 -0
  125. pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst +77 -0
  126. pygeai/_docs/source/pygeai.tests.integration.rst +20 -0
  127. pygeai/_docs/source/pygeai.tests.lab.agents.rst +29 -0
  128. pygeai/_docs/source/pygeai.tests.lab.processes.rst +29 -0
  129. pygeai/_docs/source/pygeai.tests.lab.rst +49 -0
  130. pygeai/_docs/source/pygeai.tests.lab.spec.rst +29 -0
  131. pygeai/_docs/source/pygeai.tests.lab.strategies.rst +29 -0
  132. pygeai/_docs/source/pygeai.tests.lab.tools.rst +29 -0
  133. pygeai/_docs/source/pygeai.tests.migration.rst +29 -0
  134. pygeai/_docs/source/pygeai.tests.organization.limits.rst +29 -0
  135. pygeai/_docs/source/pygeai.tests.organization.rst +53 -0
  136. pygeai/_docs/source/pygeai.tests.proxy.rst +61 -0
  137. pygeai/_docs/source/pygeai.tests.rst +33 -0
  138. pygeai/admin/clients.py +14 -11
  139. pygeai/admin/endpoints.py +2 -2
  140. pygeai/analytics/clients.py +505 -0
  141. pygeai/analytics/endpoints.py +35 -0
  142. pygeai/analytics/managers.py +606 -0
  143. pygeai/analytics/mappers.py +207 -0
  144. pygeai/analytics/responses.py +240 -0
  145. pygeai/assistant/clients.py +18 -45
  146. pygeai/assistant/data/clients.py +1 -0
  147. pygeai/assistant/data_analyst/clients.py +8 -12
  148. pygeai/assistant/managers.py +195 -157
  149. pygeai/assistant/mappers.py +4 -2
  150. pygeai/assistant/rag/clients.py +27 -67
  151. pygeai/assistant/rag/mappers.py +12 -6
  152. pygeai/assistant/rag/models.py +301 -159
  153. pygeai/auth/__init__.py +0 -0
  154. pygeai/auth/clients.py +129 -0
  155. pygeai/auth/endpoints.py +6 -0
  156. pygeai/chat/clients.py +308 -37
  157. pygeai/chat/endpoints.py +3 -0
  158. pygeai/chat/iris.py +2 -8
  159. pygeai/chat/managers.py +9 -6
  160. pygeai/chat/session.py +38 -0
  161. pygeai/chat/settings.py +6 -0
  162. pygeai/chat/ui.py +678 -0
  163. pygeai/cli/__init__.py +0 -1
  164. pygeai/cli/commands/admin.py +7 -10
  165. pygeai/cli/commands/analytics.py +533 -0
  166. pygeai/cli/commands/assistant.py +9 -9
  167. pygeai/cli/commands/auth.py +299 -0
  168. pygeai/cli/commands/base.py +71 -9
  169. pygeai/cli/commands/chat.py +676 -19
  170. pygeai/cli/commands/common.py +28 -24
  171. pygeai/cli/commands/configuration.py +66 -13
  172. pygeai/cli/commands/docs.py +105 -0
  173. pygeai/cli/commands/embeddings.py +58 -11
  174. pygeai/cli/commands/evaluation.py +38 -38
  175. pygeai/cli/commands/feedback.py +3 -4
  176. pygeai/cli/commands/files.py +7 -8
  177. pygeai/cli/commands/gam.py +85 -10
  178. pygeai/cli/commands/lab/ai_lab.py +340 -484
  179. pygeai/cli/commands/lab/options.py +8 -0
  180. pygeai/cli/commands/lab/spec.py +273 -0
  181. pygeai/cli/commands/lab/utils.py +13 -0
  182. pygeai/cli/commands/llm.py +6 -7
  183. pygeai/cli/commands/migrate.py +1064 -436
  184. pygeai/cli/commands/organization.py +516 -11
  185. pygeai/cli/commands/rag.py +13 -14
  186. pygeai/cli/commands/rerank.py +3 -5
  187. pygeai/cli/commands/secrets.py +8 -9
  188. pygeai/cli/commands/usage_limits.py +18 -20
  189. pygeai/cli/commands/validators.py +144 -1
  190. pygeai/cli/commands/version.py +4 -5
  191. pygeai/cli/error_handler.py +151 -0
  192. pygeai/cli/geai.py +170 -31
  193. pygeai/cli/geai_proxy.py +86 -25
  194. pygeai/cli/install_man.py +93 -22
  195. pygeai/cli/parsers.py +75 -25
  196. pygeai/cli/texts/help.py +265 -28
  197. pygeai/core/base/clients.py +53 -12
  198. pygeai/core/base/mappers.py +11 -2
  199. pygeai/core/base/session.py +95 -11
  200. pygeai/core/common/config.py +78 -14
  201. pygeai/core/common/exceptions.py +96 -6
  202. pygeai/core/embeddings/__init__.py +19 -0
  203. pygeai/core/embeddings/clients.py +23 -5
  204. pygeai/core/embeddings/managers.py +9 -4
  205. pygeai/core/embeddings/mappers.py +16 -2
  206. pygeai/core/embeddings/responses.py +9 -2
  207. pygeai/core/feedback/clients.py +8 -3
  208. pygeai/core/files/clients.py +23 -24
  209. pygeai/core/files/managers.py +121 -30
  210. pygeai/core/files/responses.py +4 -3
  211. pygeai/core/handlers.py +10 -1
  212. pygeai/core/llm/clients.py +22 -29
  213. pygeai/core/models.py +127 -11
  214. pygeai/core/plugins/clients.py +6 -6
  215. pygeai/core/rerank/clients.py +9 -3
  216. pygeai/core/rerank/managers.py +22 -5
  217. pygeai/core/secrets/clients.py +16 -37
  218. pygeai/core/services/response.py +18 -0
  219. pygeai/core/services/rest.py +159 -49
  220. pygeai/core/utils/__init__.py +0 -0
  221. pygeai/core/utils/console.py +83 -0
  222. pygeai/core/utils/parsers.py +32 -0
  223. pygeai/core/utils/validators.py +10 -0
  224. pygeai/dbg/__init__.py +3 -0
  225. pygeai/dbg/debugger.py +854 -14
  226. pygeai/evaluation/clients.py +7 -4
  227. pygeai/evaluation/dataset/clients.py +46 -44
  228. pygeai/evaluation/plan/clients.py +28 -26
  229. pygeai/evaluation/result/clients.py +38 -5
  230. pygeai/gam/clients.py +50 -28
  231. pygeai/gam/endpoints.py +2 -1
  232. pygeai/health/__init__.py +0 -0
  233. pygeai/health/clients.py +24 -0
  234. pygeai/health/endpoints.py +1 -0
  235. pygeai/lab/__init__.py +0 -90
  236. pygeai/lab/agents/clients.py +203 -162
  237. pygeai/lab/agents/endpoints.py +4 -0
  238. pygeai/lab/agents/mappers.py +57 -7
  239. pygeai/lab/clients.py +24 -0
  240. pygeai/lab/constants.py +3 -0
  241. pygeai/lab/managers.py +571 -541
  242. pygeai/lab/models.py +108 -19
  243. pygeai/lab/processes/clients.py +332 -340
  244. pygeai/lab/processes/mappers.py +3 -3
  245. pygeai/lab/runners.py +90 -0
  246. pygeai/lab/spec/__init__.py +0 -0
  247. pygeai/lab/spec/loader.py +24 -0
  248. pygeai/lab/spec/parsers.py +39 -0
  249. pygeai/lab/strategies/clients.py +67 -63
  250. pygeai/lab/strategies/mappers.py +1 -1
  251. pygeai/lab/tools/clients.py +85 -118
  252. pygeai/lab/tools/endpoints.py +4 -0
  253. pygeai/lab/tools/mappers.py +5 -5
  254. pygeai/man/man1/geai-proxy.1 +116 -0
  255. pygeai/man/man1/geai.1 +2580 -66
  256. pygeai/migration/__init__.py +33 -0
  257. pygeai/migration/strategies.py +468 -146
  258. pygeai/migration/tools.py +170 -3
  259. pygeai/organization/clients.py +245 -50
  260. pygeai/organization/endpoints.py +17 -8
  261. pygeai/organization/limits/clients.py +34 -32
  262. pygeai/organization/limits/managers.py +108 -49
  263. pygeai/organization/managers.py +347 -53
  264. pygeai/organization/mappers.py +102 -2
  265. pygeai/organization/responses.py +58 -1
  266. pygeai/proxy/clients.py +6 -3
  267. pygeai/proxy/config.py +14 -1
  268. pygeai/proxy/managers.py +61 -33
  269. pygeai/proxy/servers.py +196 -51
  270. pygeai/proxy/tool.py +33 -16
  271. pygeai/tests/admin/__init__.py +0 -0
  272. pygeai/tests/admin/test_clients.py +148 -0
  273. pygeai/tests/analytics/__init__.py +0 -0
  274. pygeai/tests/analytics/test_clients.py +86 -0
  275. pygeai/tests/analytics/test_managers.py +94 -0
  276. pygeai/tests/analytics/test_mappers.py +84 -0
  277. pygeai/tests/analytics/test_responses.py +73 -0
  278. pygeai/tests/assistants/rag/test_clients.py +346 -0
  279. pygeai/tests/assistants/rag/test_models.py +292 -0
  280. pygeai/tests/assistants/test_clients.py +176 -82
  281. pygeai/tests/assistants/test_managers.py +191 -57
  282. pygeai/tests/auth/__init__.py +0 -0
  283. pygeai/tests/auth/test_clients.py +289 -0
  284. pygeai/tests/auth/test_oauth.py +172 -0
  285. pygeai/tests/auth/test_session_logging.py +150 -0
  286. pygeai/tests/chat/__init__.py +0 -0
  287. pygeai/tests/chat/test_clients.py +393 -0
  288. pygeai/tests/chat/test_iris.py +38 -0
  289. pygeai/tests/chat/test_session.py +62 -0
  290. pygeai/tests/chat/test_ui.py +224 -0
  291. pygeai/tests/cli/commands/__init__.py +0 -0
  292. pygeai/tests/cli/commands/lab/__init__.py +0 -0
  293. pygeai/tests/cli/commands/lab/test_ai_lab.py +786 -0
  294. pygeai/tests/cli/commands/lab/test_common.py +208 -0
  295. pygeai/tests/cli/commands/lab/test_spec.py +246 -0
  296. pygeai/tests/cli/commands/test_assistant.py +202 -0
  297. pygeai/tests/cli/commands/test_chat.py +130 -0
  298. pygeai/tests/cli/commands/test_common.py +350 -0
  299. pygeai/tests/cli/commands/test_embeddings.py +132 -0
  300. pygeai/tests/cli/commands/test_evaluation.py +656 -0
  301. pygeai/tests/cli/commands/test_feedback.py +65 -0
  302. pygeai/tests/cli/commands/test_files.py +161 -0
  303. pygeai/tests/cli/commands/test_gam.py +201 -0
  304. pygeai/tests/cli/commands/test_llm.py +114 -0
  305. pygeai/tests/cli/commands/test_migrate.py +176 -0
  306. pygeai/tests/cli/commands/test_organization.py +276 -0
  307. pygeai/tests/cli/commands/test_rag.py +266 -0
  308. pygeai/tests/cli/commands/test_rerank.py +110 -0
  309. pygeai/tests/cli/commands/test_secrets.py +171 -0
  310. pygeai/tests/cli/commands/test_show_help.py +41 -0
  311. pygeai/tests/cli/commands/test_usage_limits.py +412 -0
  312. pygeai/tests/cli/commands/test_validators.py +160 -0
  313. pygeai/tests/cli/commands/test_version.py +81 -0
  314. pygeai/tests/cli/docker/__init__.py +0 -0
  315. pygeai/tests/cli/test_credentials_flag.py +316 -0
  316. pygeai/tests/cli/test_error_handler.py +225 -0
  317. pygeai/tests/cli/test_geai_driver.py +154 -0
  318. pygeai/tests/cli/test_parsers.py +5 -5
  319. pygeai/tests/core/base/data/models.py +7 -0
  320. pygeai/tests/core/base/test_mappers.py +43 -11
  321. pygeai/tests/core/base/test_models.py +3 -1
  322. pygeai/tests/core/base/test_responses.py +53 -0
  323. pygeai/tests/core/common/__init__.py +0 -0
  324. pygeai/tests/core/common/data/__init__.py +0 -0
  325. pygeai/tests/core/common/test_config.py +186 -0
  326. pygeai/tests/core/common/test_decorators.py +69 -0
  327. pygeai/tests/core/embeddings/__init__.py +0 -0
  328. pygeai/tests/core/embeddings/test_clients.py +225 -0
  329. pygeai/tests/core/embeddings/test_managers.py +171 -0
  330. pygeai/tests/core/embeddings/test_mappers.py +142 -0
  331. pygeai/tests/core/feedback/__init__.py +0 -0
  332. pygeai/tests/core/feedback/test_clients.py +64 -0
  333. pygeai/tests/core/files/test_clients.py +128 -0
  334. pygeai/tests/core/files/test_managers.py +124 -78
  335. pygeai/tests/core/files/test_mappers.py +137 -0
  336. pygeai/tests/core/files/test_models.py +103 -0
  337. pygeai/tests/core/files/test_responses.py +122 -0
  338. pygeai/tests/core/llm/__init__.py +0 -0
  339. pygeai/tests/core/llm/test_clients.py +142 -0
  340. pygeai/tests/core/plugins/__init__.py +0 -0
  341. pygeai/tests/core/plugins/test_clients.py +66 -0
  342. pygeai/tests/core/rerank/test_clients.py +76 -0
  343. pygeai/tests/core/rerank/test_managers.py +61 -39
  344. pygeai/tests/core/secrets/__init__.py +0 -0
  345. pygeai/tests/core/secrets/test_clients.py +264 -0
  346. pygeai/tests/core/services/__init__.py +0 -0
  347. pygeai/tests/core/services/test_rest.py +273 -0
  348. pygeai/tests/core/test_handlers.py +66 -0
  349. pygeai/tests/core/utils/__init__.py +0 -0
  350. pygeai/tests/core/utils/test_console.py +80 -0
  351. pygeai/tests/dbg/__init__.py +0 -0
  352. pygeai/tests/dbg/test_debugger.py +591 -0
  353. pygeai/tests/evaluation/__init__.py +0 -0
  354. pygeai/tests/evaluation/dataset/__init__.py +0 -0
  355. pygeai/tests/evaluation/dataset/test_clients.py +265 -0
  356. pygeai/tests/evaluation/plan/__init__.py +0 -0
  357. pygeai/tests/evaluation/plan/test_clients.py +195 -0
  358. pygeai/tests/evaluation/result/__init__.py +0 -0
  359. pygeai/tests/evaluation/result/test_clients.py +66 -0
  360. pygeai/tests/gam/__init__.py +0 -0
  361. pygeai/tests/gam/test_clients.py +195 -0
  362. pygeai/tests/health/__init__.py +0 -0
  363. pygeai/tests/health/test_clients.py +41 -0
  364. pygeai/tests/integration/__init__.py +0 -0
  365. pygeai/tests/integration/assistants/__init__.py +0 -0
  366. pygeai/tests/integration/assistants/rag/__init__.py +0 -0
  367. pygeai/tests/integration/assistants/rag/test_create_rag.py +91 -0
  368. pygeai/tests/integration/chat/__init__.py +0 -0
  369. pygeai/tests/integration/chat/test_generate_image.py +158 -0
  370. pygeai/tests/integration/lab/__init__.py +0 -0
  371. pygeai/tests/integration/lab/agents/__init__.py +0 -0
  372. pygeai/tests/integration/lab/agents/test_agents_list.py +106 -0
  373. pygeai/tests/integration/lab/agents/test_create_agent.py +319 -0
  374. pygeai/tests/integration/lab/agents/test_create_sharing_link.py +70 -0
  375. pygeai/tests/integration/lab/agents/test_delete_agent.py +75 -0
  376. pygeai/tests/integration/lab/agents/test_get_agent.py +94 -0
  377. pygeai/tests/integration/lab/agents/test_publish_agent_revision.py +127 -0
  378. pygeai/tests/integration/lab/agents/test_update_agent.py +250 -0
  379. pygeai/tests/integration/lab/processes/__init__.py +0 -0
  380. pygeai/tests/integration/lab/processes/test_create_process.py +345 -0
  381. pygeai/tests/integration/lab/processes/test_create_task.py +211 -0
  382. pygeai/tests/integration/lab/processes/test_delete_process.py +111 -0
  383. pygeai/tests/integration/lab/processes/test_get_process.py +201 -0
  384. pygeai/tests/integration/lab/processes/test_list_process_instances.py +91 -0
  385. pygeai/tests/integration/lab/processes/test_list_processes.py +138 -0
  386. pygeai/tests/integration/lab/processes/test_publish_process_revision.py +232 -0
  387. pygeai/tests/integration/lab/processes/test_update_process.py +289 -0
  388. pygeai/tests/integration/lab/reasoning_strategies/__init__.py +0 -0
  389. pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py +70 -0
  390. pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py +93 -0
  391. pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py +149 -0
  392. pygeai/tests/integration/lab/tools/__init__.py +0 -0
  393. pygeai/tests/integration/lab/tools/test_create_tool.py +288 -0
  394. pygeai/tests/integration/lab/tools/test_delete_tool.py +87 -0
  395. pygeai/tests/integration/lab/tools/test_get_parameter.py +98 -0
  396. pygeai/tests/integration/lab/tools/test_get_tool.py +91 -0
  397. pygeai/tests/integration/lab/tools/test_list_tools.py +106 -0
  398. pygeai/tests/integration/lab/tools/test_publish_tool_revision.py +119 -0
  399. pygeai/tests/integration/lab/tools/test_set_parameter.py +114 -0
  400. pygeai/tests/integration/lab/tools/test_update_tool.py +267 -0
  401. pygeai/tests/lab/agents/__init__.py +0 -0
  402. pygeai/tests/lab/agents/test_clients.py +481 -0
  403. pygeai/tests/lab/agents/test_mappers.py +440 -0
  404. pygeai/tests/lab/processes/__init__.py +0 -0
  405. pygeai/tests/lab/processes/test_clients.py +1416 -0
  406. pygeai/tests/lab/processes/test_mappers.py +1092 -0
  407. pygeai/tests/lab/spec/__init__.py +0 -0
  408. pygeai/tests/lab/spec/test_loader.py +59 -0
  409. pygeai/tests/lab/spec/test_parsers.py +182 -0
  410. pygeai/tests/lab/strategies/__init__.py +0 -0
  411. pygeai/tests/lab/strategies/test_clients.py +241 -0
  412. pygeai/tests/lab/strategies/test_mappers.py +132 -0
  413. pygeai/tests/lab/test_managers.py +553 -0
  414. pygeai/tests/lab/test_models.py +500 -3
  415. pygeai/tests/lab/tools/__init__.py +0 -0
  416. pygeai/tests/lab/tools/test_clients.py +521 -0
  417. pygeai/tests/lab/tools/test_mappers.py +198 -0
  418. pygeai/tests/migration/__init__.py +0 -0
  419. pygeai/tests/migration/test_strategies.py +405 -0
  420. pygeai/tests/migration/test_tools.py +159 -0
  421. pygeai/tests/organization/limits/test_clients.py +567 -0
  422. pygeai/tests/organization/limits/test_managers.py +298 -56
  423. pygeai/tests/organization/test_clients.py +600 -30
  424. pygeai/tests/organization/test_managers.py +424 -0
  425. pygeai/tests/organization/test_mappers.py +153 -0
  426. pygeai/tests/organization/test_responses.py +137 -0
  427. pygeai/tests/proxy/__init__.py +1 -0
  428. pygeai/tests/proxy/test_clients.py +397 -0
  429. pygeai/tests/proxy/test_config.py +171 -0
  430. pygeai/tests/proxy/test_integration.py +305 -0
  431. pygeai/tests/proxy/test_managers.py +312 -0
  432. pygeai/tests/proxy/test_servers.py +387 -0
  433. pygeai/tests/proxy/test_tool.py +176 -0
  434. pygeai/tests/snippets/analytics/__init__.py +0 -0
  435. pygeai/tests/snippets/analytics/get_agent_usage_per_user.py +16 -0
  436. pygeai/tests/snippets/analytics/get_agents_created_and_modified.py +11 -0
  437. pygeai/tests/snippets/analytics/get_average_cost_per_request.py +10 -0
  438. pygeai/tests/snippets/analytics/get_overall_error_rate.py +10 -0
  439. pygeai/tests/snippets/analytics/get_top_10_agents_by_requests.py +12 -0
  440. pygeai/tests/snippets/analytics/get_total_active_users.py +10 -0
  441. pygeai/tests/snippets/analytics/get_total_cost.py +10 -0
  442. pygeai/tests/snippets/analytics/get_total_requests_per_day.py +12 -0
  443. pygeai/tests/snippets/analytics/get_total_tokens.py +12 -0
  444. pygeai/tests/snippets/auth/__init__.py +0 -0
  445. pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py +18 -0
  446. pygeai/tests/snippets/chat/get_response.py +15 -0
  447. pygeai/tests/snippets/chat/get_response_complete_example.py +67 -0
  448. pygeai/tests/snippets/chat/get_response_streaming.py +20 -0
  449. pygeai/tests/snippets/chat/get_response_with_files.py +16 -0
  450. pygeai/tests/snippets/chat/get_response_with_instructions.py +19 -0
  451. pygeai/tests/snippets/chat/get_response_with_metadata.py +24 -0
  452. pygeai/tests/snippets/chat/get_response_with_parallel_tools.py +58 -0
  453. pygeai/tests/snippets/chat/get_response_with_reasoning.py +21 -0
  454. pygeai/tests/snippets/chat/get_response_with_store.py +38 -0
  455. pygeai/tests/snippets/chat/get_response_with_tools.py +36 -0
  456. pygeai/tests/snippets/chat/get_response_with_truncation.py +24 -0
  457. pygeai/tests/snippets/dbg/__init__.py +0 -0
  458. pygeai/tests/snippets/dbg/basic_debugging.py +32 -0
  459. pygeai/tests/snippets/dbg/breakpoint_management.py +48 -0
  460. pygeai/tests/snippets/dbg/file_debugging.py +72 -0
  461. pygeai/tests/snippets/dbg/module_debugging.py +61 -0
  462. pygeai/tests/snippets/dbg/stack_navigation.py +45 -0
  463. pygeai/tests/snippets/dbg/stepping_example.py +40 -0
  464. pygeai/tests/snippets/embeddings/cache_example.py +31 -0
  465. pygeai/tests/snippets/embeddings/cohere_example.py +41 -0
  466. pygeai/tests/snippets/embeddings/openai_base64_example.py +27 -0
  467. pygeai/tests/snippets/embeddings/openai_example.py +30 -0
  468. pygeai/tests/snippets/embeddings/similarity_example.py +42 -0
  469. pygeai/tests/snippets/evaluation/dataset/__init__.py +0 -0
  470. pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py +195 -0
  471. pygeai/tests/snippets/evaluation/dataset/create_dataset.py +26 -0
  472. pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py +11 -0
  473. pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py +17 -0
  474. pygeai/tests/snippets/evaluation/dataset/create_expected_source.py +18 -0
  475. pygeai/tests/snippets/evaluation/dataset/create_filter_variable.py +19 -0
  476. pygeai/tests/snippets/evaluation/dataset/delete_dataset.py +9 -0
  477. pygeai/tests/snippets/evaluation/dataset/delete_dataset_row.py +10 -0
  478. pygeai/tests/snippets/evaluation/dataset/delete_expected_source.py +15 -0
  479. pygeai/tests/snippets/evaluation/dataset/delete_filter_variable.py +15 -0
  480. pygeai/tests/snippets/evaluation/dataset/get_dataset.py +9 -0
  481. pygeai/tests/snippets/evaluation/dataset/get_dataset_row.py +10 -0
  482. pygeai/tests/snippets/evaluation/dataset/get_expected_source.py +15 -0
  483. pygeai/tests/snippets/evaluation/dataset/get_filter_variable.py +15 -0
  484. pygeai/tests/snippets/evaluation/dataset/list_dataset_rows.py +9 -0
  485. pygeai/tests/snippets/evaluation/dataset/list_datasets.py +6 -0
  486. pygeai/tests/snippets/evaluation/dataset/list_expected_sources.py +10 -0
  487. pygeai/tests/snippets/evaluation/dataset/list_filter_variables.py +10 -0
  488. pygeai/tests/snippets/evaluation/dataset/update_dataset.py +15 -0
  489. pygeai/tests/snippets/evaluation/dataset/update_dataset_row.py +20 -0
  490. pygeai/tests/snippets/evaluation/dataset/update_expected_source.py +18 -0
  491. pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py +19 -0
  492. pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py +10 -0
  493. pygeai/tests/snippets/evaluation/plan/__init__.py +0 -0
  494. pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py +13 -0
  495. pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py +136 -0
  496. pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py +24 -0
  497. pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py +22 -0
  498. pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py +9 -0
  499. pygeai/tests/snippets/evaluation/plan/delete_plan_system_metric.py +13 -0
  500. pygeai/tests/snippets/evaluation/plan/execute_evaluation_plan.py +11 -0
  501. pygeai/tests/snippets/evaluation/plan/get_evaluation_plan.py +9 -0
  502. pygeai/tests/snippets/evaluation/plan/get_plan_system_metric.py +13 -0
  503. pygeai/tests/snippets/evaluation/plan/get_system_metric.py +9 -0
  504. pygeai/tests/snippets/evaluation/plan/list_evaluation_plans.py +7 -0
  505. pygeai/tests/snippets/evaluation/plan/list_plan_system_metrics.py +9 -0
  506. pygeai/tests/snippets/evaluation/plan/list_system_metrics.py +7 -0
  507. pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py +22 -0
  508. pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py +14 -0
  509. pygeai/tests/snippets/evaluation/result/__init__.py +0 -0
  510. pygeai/tests/snippets/evaluation/result/complete_workflow_example.py +150 -0
  511. pygeai/tests/snippets/evaluation/result/get_evaluation_result.py +26 -0
  512. pygeai/tests/snippets/evaluation/result/list_evaluation_results.py +17 -0
  513. pygeai/tests/snippets/files/delete_file.py +1 -4
  514. pygeai/tests/snippets/files/get_file_content.py +2 -4
  515. pygeai/tests/snippets/files/get_file_data.py +1 -4
  516. pygeai/tests/snippets/files/get_file_list.py +1 -6
  517. pygeai/tests/snippets/files/upload_file.py +1 -5
  518. pygeai/tests/snippets/gam/gam_access_token.py +87 -0
  519. pygeai/tests/snippets/lab/agentic_flow_example_1.py +25 -23
  520. pygeai/tests/snippets/lab/agentic_flow_example_4.py +23 -23
  521. pygeai/tests/snippets/lab/agents/create_agent.py +5 -8
  522. pygeai/tests/snippets/lab/agents/create_agent_2.py +1 -5
  523. pygeai/tests/snippets/lab/agents/create_agent_edge_case.py +48 -0
  524. pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py +39 -0
  525. pygeai/tests/snippets/lab/agents/create_agent_with_properties.py +46 -0
  526. pygeai/tests/snippets/lab/agents/create_agent_without_instructions.py +48 -0
  527. pygeai/tests/snippets/lab/agents/delete_agent.py +1 -5
  528. pygeai/tests/snippets/lab/agents/get_agent.py +2 -11
  529. pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py +62 -0
  530. pygeai/tests/snippets/lab/agents/get_sharing_link.py +2 -7
  531. pygeai/tests/snippets/lab/agents/list_agents.py +4 -7
  532. pygeai/tests/snippets/lab/agents/publish_agent_revision.py +2 -6
  533. pygeai/tests/snippets/lab/agents/update_agent.py +1 -5
  534. pygeai/tests/snippets/lab/agents/update_agent_properties.py +50 -0
  535. pygeai/tests/snippets/lab/assistant_to_agent.py +191 -0
  536. pygeai/tests/snippets/lab/crud_ui.py +462 -0
  537. pygeai/tests/snippets/lab/processes/create_process.py +3 -5
  538. pygeai/tests/snippets/lab/processes/create_task.py +3 -5
  539. pygeai/tests/snippets/lab/processes/jobs/list_jobs.py +10 -19
  540. pygeai/tests/snippets/lab/processes/kbs/create_kb.py +2 -5
  541. pygeai/tests/snippets/lab/processes/kbs/get_kb.py +10 -16
  542. pygeai/tests/snippets/lab/processes/kbs/list_kbs.py +13 -20
  543. pygeai/tests/snippets/lab/processes/kbs/try_all.py +5 -7
  544. pygeai/tests/snippets/lab/processes/list_processes.py +5 -7
  545. pygeai/tests/snippets/lab/runner_1.py +1 -1
  546. pygeai/tests/snippets/lab/samples/summarize_files.py +3 -3
  547. pygeai/tests/snippets/lab/strategies/create_reasoning_strategy.py +2 -5
  548. pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py +2 -5
  549. pygeai/tests/snippets/lab/strategies/list_reasoning_strategies.py +3 -6
  550. pygeai/tests/snippets/lab/strategies/update_reasoning_strategy.py +2 -5
  551. pygeai/tests/snippets/lab/tools/create_tool.py +4 -10
  552. pygeai/tests/snippets/lab/tools/create_tool_edge_case.py +50 -0
  553. pygeai/tests/snippets/lab/tools/delete_tool.py +2 -6
  554. pygeai/tests/snippets/lab/tools/get_parameter.py +5 -7
  555. pygeai/tests/snippets/lab/tools/get_tool.py +5 -7
  556. pygeai/tests/snippets/lab/tools/list_tools.py +3 -7
  557. pygeai/tests/snippets/lab/tools/publish_tool_revision.py +3 -5
  558. pygeai/tests/snippets/lab/tools/set_parameters.py +4 -9
  559. pygeai/tests/snippets/lab/tools/update_tool.py +4 -8
  560. pygeai/tests/snippets/lab/use_cases/__init__.py +0 -0
  561. pygeai/tests/snippets/lab/use_cases/create_cli_expert.py +1640 -0
  562. pygeai/tests/snippets/lab/use_cases/create_lab_expert.py +4541 -0
  563. pygeai/tests/snippets/lab/use_cases/create_tool_headless_web_browser.py +133 -0
  564. pygeai/tests/snippets/lab/use_cases/create_web_designer.py +189 -0
  565. pygeai/tests/snippets/lab/use_cases/create_web_reader.py +185 -0
  566. pygeai/tests/snippets/lab/{file_summarizer_example.py → use_cases/file_summarizer_example.py} +3 -3
  567. pygeai/tests/snippets/lab/{file_summarizer_example_2.py → use_cases/file_summarizer_example_2.py} +12 -12
  568. pygeai/tests/snippets/lab/use_cases/update_cli_expert.py +1773 -0
  569. pygeai/tests/snippets/lab/use_cases/update_lab_expert.py +4541 -0
  570. pygeai/tests/snippets/lab/use_cases/update_web_designer.py +188 -0
  571. pygeai/tests/snippets/lab/use_cases/update_web_reader.py +195 -0
  572. pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py +210 -0
  573. pygeai/tests/snippets/migrate/__init__.py +45 -0
  574. pygeai/tests/snippets/migrate/agent_migration.py +110 -0
  575. pygeai/tests/snippets/migrate/assistant_migration.py +64 -0
  576. pygeai/tests/snippets/migrate/orchestrator_examples.py +179 -0
  577. pygeai/tests/snippets/migrate/process_migration.py +64 -0
  578. pygeai/tests/snippets/migrate/project_migration.py +42 -0
  579. pygeai/tests/snippets/migrate/tool_migration.py +64 -0
  580. pygeai/tests/snippets/organization/add_project_member.py +10 -0
  581. pygeai/tests/snippets/organization/add_project_member_batch.py +44 -0
  582. pygeai/tests/snippets/organization/create_project.py +2 -2
  583. pygeai/tests/snippets/organization/get_memberships.py +12 -0
  584. pygeai/tests/snippets/organization/get_organization_members.py +6 -0
  585. pygeai/tests/snippets/organization/get_project_members.py +6 -0
  586. pygeai/tests/snippets/organization/get_project_memberships.py +12 -0
  587. pygeai/tests/snippets/organization/get_project_roles.py +6 -0
  588. pygeai/vendor/a2a/__init__.py +1 -0
  589. pygeai/vendor/a2a/auth/__init__.py +0 -0
  590. pygeai/vendor/a2a/auth/user.py +31 -0
  591. pygeai/vendor/a2a/client/__init__.py +19 -0
  592. pygeai/vendor/a2a/client/client.py +425 -0
  593. pygeai/vendor/a2a/client/errors.py +33 -0
  594. pygeai/vendor/a2a/client/helpers.py +22 -0
  595. pygeai/vendor/a2a/py.typed +0 -0
  596. pygeai/vendor/a2a/server/__init__.py +1 -0
  597. pygeai/vendor/a2a/server/agent_execution/__init__.py +18 -0
  598. pygeai/vendor/a2a/server/agent_execution/agent_executor.py +44 -0
  599. pygeai/vendor/a2a/server/agent_execution/context.py +155 -0
  600. pygeai/vendor/a2a/server/agent_execution/request_context_builder.py +20 -0
  601. pygeai/vendor/a2a/server/agent_execution/simple_request_context_builder.py +77 -0
  602. pygeai/vendor/a2a/server/apps/__init__.py +16 -0
  603. pygeai/vendor/a2a/server/apps/jsonrpc/__init__.py +16 -0
  604. pygeai/vendor/a2a/server/apps/jsonrpc/fastapi_app.py +88 -0
  605. pygeai/vendor/a2a/server/apps/jsonrpc/jsonrpc_app.py +426 -0
  606. pygeai/vendor/a2a/server/apps/jsonrpc/starlette_app.py +123 -0
  607. pygeai/vendor/a2a/server/context.py +23 -0
  608. pygeai/vendor/a2a/server/events/__init__.py +21 -0
  609. pygeai/vendor/a2a/server/events/event_consumer.py +149 -0
  610. pygeai/vendor/a2a/server/events/event_queue.py +156 -0
  611. pygeai/vendor/a2a/server/events/in_memory_queue_manager.py +85 -0
  612. pygeai/vendor/a2a/server/events/queue_manager.py +35 -0
  613. pygeai/vendor/a2a/server/request_handlers/__init__.py +20 -0
  614. pygeai/vendor/a2a/server/request_handlers/default_request_handler.py +435 -0
  615. pygeai/vendor/a2a/server/request_handlers/jsonrpc_handler.py +327 -0
  616. pygeai/vendor/a2a/server/request_handlers/request_handler.py +161 -0
  617. pygeai/vendor/a2a/server/request_handlers/response_helpers.py +133 -0
  618. pygeai/vendor/a2a/server/tasks/__init__.py +20 -0
  619. pygeai/vendor/a2a/server/tasks/inmemory_push_notifier.py +62 -0
  620. pygeai/vendor/a2a/server/tasks/inmemory_task_store.py +51 -0
  621. pygeai/vendor/a2a/server/tasks/push_notifier.py +25 -0
  622. pygeai/vendor/a2a/server/tasks/result_aggregator.py +151 -0
  623. pygeai/vendor/a2a/server/tasks/task_manager.py +253 -0
  624. pygeai/vendor/a2a/server/tasks/task_store.py +22 -0
  625. pygeai/vendor/a2a/server/tasks/task_updater.py +155 -0
  626. pygeai/vendor/a2a/types.py +1624 -0
  627. pygeai/vendor/a2a/utils/__init__.py +40 -0
  628. pygeai/vendor/a2a/utils/artifact.py +72 -0
  629. pygeai/vendor/a2a/utils/errors.py +69 -0
  630. pygeai/vendor/a2a/utils/helpers.py +176 -0
  631. pygeai/vendor/a2a/utils/message.py +83 -0
  632. pygeai/vendor/a2a/utils/task.py +57 -0
  633. pygeai/vendor/a2a/utils/telemetry.py +299 -0
  634. pygeai-0.6.0b15.dist-info/METADATA +205 -0
  635. pygeai-0.6.0b15.dist-info/RECORD +799 -0
  636. {pygeai-0.1.51b3.dist-info → pygeai-0.6.0b15.dist-info}/WHEEL +1 -1
  637. {pygeai-0.1.51b3.dist-info → pygeai-0.6.0b15.dist-info}/entry_points.txt +2 -1
  638. {pygeai-0.1.51b3.dist-info → pygeai-0.6.0b15.dist-info}/licenses/LICENSE +13 -1
  639. pygeai-0.6.0b15.dist-info/top_level.txt +1 -0
  640. docs/geai-proxy/README.md +0 -145
  641. docs/source/conf.py +0 -45
  642. pygeai/tests/core/test_managers.py +0 -233
  643. pygeai-0.1.51b3.dist-info/METADATA +0 -130
  644. pygeai-0.1.51b3.dist-info/RECORD +0 -324
  645. pygeai-0.1.51b3.dist-info/top_level.txt +0 -3
  646. scripts/bump_beta_version.py +0 -56
  647. {scripts → pygeai/analytics}/__init__.py +0 -0
  648. /pygeai/tests/snippets/lab/{c_code_fixer_agent_flow.py → use_cases/c_code_fixer_agent_flow.py} +0 -0
@@ -0,0 +1,799 @@
1
+ pygeai/__init__.py,sha256=VpX09d3yWymZmWS4bQbYYIWJLEQpYTWJyTKhVGHSwb0,502
2
+ pygeai/_docs/Makefile,sha256=4zv3TVkTACm6JBaKgTES3ZI9cETXgM6ULbZkXZP1as8,638
3
+ pygeai/_docs/make.bat,sha256=L4I5T7uDUIjwGyMRJ-y9FoT61sxIyCuaYuJyLt8c-nA,804
4
+ pygeai/_docs/source/conf.py,sha256=H6XjfAFdBZ5H4aqxy88TzUQBfUYeVZSxIFbOACqLlUM,3591
5
+ pygeai/_docs/source/index.rst,sha256=CKivWclumgTupSLURmhgtjvD1CMoCc2AHo_3XGVlrkY,1677
6
+ pygeai/_docs/source/modules.rst,sha256=LrEcy3DTRTHFjGk0PcMgSVdy4cKmEDQW_GnwvPvtSic,55
7
+ pygeai/_docs/source/pygeai.admin.rst,sha256=BErqezo4qPNthV4QTQl9sNpPJrBfQ904R93xTky4bEI,486
8
+ pygeai/_docs/source/pygeai.analytics.rst,sha256=ojlWMqI-3-mJXUKD2OnfdV0e8X3x1Usan-lXKSEXAOQ,1014
9
+ pygeai/_docs/source/pygeai.assistant.data.rst,sha256=CObeMQ4LO1NCIfg_FBkbdJAYwMfxkKLgMz1iXIonAf4,385
10
+ pygeai/_docs/source/pygeai.assistant.data_analyst.rst,sha256=r5q_HYl5dlb0_z2Yh8_dTmkgZIWo2Al0IJ1i-ZSEDcA,645
11
+ pygeai/_docs/source/pygeai.assistant.rag.rst,sha256=Y-JNIBd2sGwX_qclqmDKMSQHbniZhiFe_1FeG5NkCIk,1080
12
+ pygeai/_docs/source/pygeai.assistant.rst,sha256=UM1rs3EZoMoF16XHO5sycwsMqWB9ci1jZPBcO8GCst0,985
13
+ pygeai/_docs/source/pygeai.auth.rst,sha256=99Dbf-hng18guWy1Bi8_6jvCZtVQ6xFWrHz6LII2fQ4,477
14
+ pygeai/_docs/source/pygeai.chat.rst,sha256=cW35lNsOImawmYiriUwSGjJITGnx0Kxa_wYJRnACwvw,1189
15
+ pygeai/_docs/source/pygeai.cli.commands.flows.rst,sha256=_oPTa5gn3jtsYo8SSjr5LWp3hHkOcVXa-9sOXwST8Ik,198
16
+ pygeai/_docs/source/pygeai.cli.commands.lab.rst,sha256=48iA3vbixQBMmBmnthf_Jy7jJhHyozhXFXNki-zmOTY,1106
17
+ pygeai/_docs/source/pygeai.cli.commands.rst,sha256=naVP0RQe8KdetRfXjdUPNG9ZGXeUIFOHffi02JiEeus,4570
18
+ pygeai/_docs/source/pygeai.cli.rst,sha256=KDv2owHUAqulKv_AEpgmXnvoTGkPUyBUnyGD90tWFcM,1026
19
+ pygeai/_docs/source/pygeai.cli.texts.rst,sha256=z2dfcJAwQPLkfDJxTp7iyGJ5KijBhC7LcRlbdSB3bqw,346
20
+ pygeai/_docs/source/pygeai.core.base.rst,sha256=IKexE5NtfxU_oot-y4dwKGPkvTjyuFD8B4LE_dPXEJw,1002
21
+ pygeai/_docs/source/pygeai.core.common.rst,sha256=TsSyb22e_zwO7MDwBLu8zayERe0GDp2m8xa05KWoEss,716
22
+ pygeai/_docs/source/pygeai.core.embeddings.rst,sha256=9fXh2IEcNUubbEu1azDLE-_e_s9JZ-uxH2VW8jZaA5Q,1298
23
+ pygeai/_docs/source/pygeai.core.feedback.rst,sha256=s7qOl5JivMMSlrPhHv4owdgzQCK6MczSkupU8bkPwwQ,728
24
+ pygeai/_docs/source/pygeai.core.files.rst,sha256=vnjnZTNZOj9R48Vu9wUrmly1HKXuP-EGeZ6GXMuVrhg,1193
25
+ pygeai/_docs/source/pygeai.core.llm.rst,sha256=RRBjpuhC9CP8rV8xPa-69mVLHztnwTm4C28Se-XVr-4,513
26
+ pygeai/_docs/source/pygeai.core.plugins.rst,sha256=ZmoFGJwdCQfviUkS52UuOdCMWAaZuFRDAQ0E5N51XiE,716
27
+ pygeai/_docs/source/pygeai.core.rerank.rst,sha256=goeW2OSxqUkllV0hZS9CG92yBr53FhRJtsDmBI_s1Bw,1041
28
+ pygeai/_docs/source/pygeai.core.rst,sha256=OsOdfmGmIeto1DaYMXMlYct0s-dOidn-_ERW0nmYB30,1076
29
+ pygeai/_docs/source/pygeai.core.secrets.rst,sha256=Or8sbF3-tDQNVw7SGAqv06Vx4jGVj9sZWX7HAs9YpTc,549
30
+ pygeai/_docs/source/pygeai.core.services.llm.rst,sha256=stTaWu4W0knoQEHHVyptlFa41HR-Gt3oI8agxeuvA3U,588
31
+ pygeai/_docs/source/pygeai.core.services.rst,sha256=1lTLW85kOVgm-dtKdltC2t0ao5MpIxuwBOfaiC3ymI8,630
32
+ pygeai/_docs/source/pygeai.core.utils.rst,sha256=LgI6vvhcCk1Q9VSFIh4Dw5pHtXZqjbdXz6vd9vk6x8o,698
33
+ pygeai/_docs/source/pygeai.dbg.rst,sha256=mg6bsMmAREoCFuow8VyU2JZ680tMbzc9hemqBqj5SpY,322
34
+ pygeai/_docs/source/pygeai.evaluation.dataset.rst,sha256=vPuc2d_5zt9WAc29lq50uzWnJgSRoQpHEZLWpLIYV1s,603
35
+ pygeai/_docs/source/pygeai.evaluation.plan.rst,sha256=Eqdeu9e-lPoiMIn5eIjN5vi8aUQYGYHG3ilBocag-zU,576
36
+ pygeai/_docs/source/pygeai.evaluation.result.rst,sha256=vwdKbPMDv6eLGIhf_vMC9IXospAy8SI3lLaoofyI5js,594
37
+ pygeai/_docs/source/pygeai.evaluation.rst,sha256=Hp5n5cPanHMgcNHcDEA8TCpKmeMWeVfciWaHN219dcQ,500
38
+ pygeai/_docs/source/pygeai.flows.rst,sha256=O-6IRp34dbvCoK4NJr-GbEoszmCznchydJ6ZS1DZSp4,483
39
+ pygeai/_docs/source/pygeai.gam.rst,sha256=kELcOqgLTEa-oGUAyADVJ4HgFeK5SxsIq097oln_LA8,468
40
+ pygeai/_docs/source/pygeai.health.rst,sha256=_B3YF5GVLy0DPJvkKuuslyaJabyuODVYbP-wzINjR-I,495
41
+ pygeai/_docs/source/pygeai.lab.agents.rst,sha256=sTCRHYR5tY5d5wBraEh0eCtBzcIgAr5wKvxv1YQltXU,695
42
+ pygeai/_docs/source/pygeai.lab.processes.rst,sha256=tiyk4CJ3pmdXQstIP1tOciA6g8HmYVNU9rftvKf04mE,731
43
+ pygeai/_docs/source/pygeai.lab.rst,sha256=XijCrP43uvLyavHl8F3QYNj3TmDJK6B8W9qt4h8pjFo,1062
44
+ pygeai/_docs/source/pygeai.lab.spec.rst,sha256=GHj2FFL_Be8SWn46jKMJP2YGzxKffsdQufoktbvUNz8,504
45
+ pygeai/_docs/source/pygeai.lab.strategies.rst,sha256=NhUjKJdHe_URD-Rt2vzX6t8Zv8_Vf7Zoez6xOibfgxo,743
46
+ pygeai/_docs/source/pygeai.lab.tools.rst,sha256=qvxXbNZJJ37xXrCymcper2qRyvopy4OAeACi52gB0YI,683
47
+ pygeai/_docs/source/pygeai.man.man1.rst,sha256=Sl54uhGh5ytMTnfIG_1Lzera87fWWXzAdDdZq_g5-Lw,168
48
+ pygeai/_docs/source/pygeai.man.rst,sha256=szasyjrZUBUbdBAeWBSOGgSEOdDC3EknO-Qi4dxmnDQ,228
49
+ pygeai/_docs/source/pygeai.migration.rst,sha256=LmccQTJ1idwY37lg8-29pTm6szsgaSbYmOvYqHm1Q1E,519
50
+ pygeai/_docs/source/pygeai.organization.limits.rst,sha256=5rjKRtaXl_FUQss_UuQjws-kej97IbMqvS9hks_3fxg,997
51
+ pygeai/_docs/source/pygeai.organization.rst,sha256=91Fby-1S78q0VJ8Yt5iGJ2M2brqtXqH3vlNKJj63dk4,1154
52
+ pygeai/_docs/source/pygeai.proxy.rst,sha256=XgZwF0OmOUJa_AasledYKAIH3JPIubOUEnO4SIf0LKk,918
53
+ pygeai/_docs/source/pygeai.rst,sha256=cG7q_r3eWOb46QEmMgmkWB7C5k7ZAC7OPzODrp_Thlk,497
54
+ pygeai/_docs/source/pygeai.tests.admin.rst,sha256=z3vaTaKOVea_zmgQwKRZSD-HZQ6dC3B8GEXY6DD9kEw,384
55
+ pygeai/_docs/source/pygeai.tests.analytics.rst,sha256=Dimq_6nhld1_v7r9IFYkc7TfIYAjjNfdc2S2FrgXypM,1005
56
+ pygeai/_docs/source/pygeai.tests.assistants.rag.rst,sha256=aTM3TccZgohUBwVqJx7lbVQsH_p_d5LvUCKMBV4UjeE,857
57
+ pygeai/_docs/source/pygeai.tests.assistants.rst,sha256=JlPdf3soviMwSH6HAXjdgI7qFsqN5GL_NQLJjnQ8bYI,902
58
+ pygeai/_docs/source/pygeai.tests.auth.rst,sha256=rIN_G0taG6n1QCN0FUv5--aUltIRsXRKkNtxZF4K29Q,553
59
+ pygeai/_docs/source/pygeai.tests.chat.rst,sha256=xiTEjTTXU0hLeIaNx32u30HuqDDlHuBN8oOD2GaY-yA,897
60
+ pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst,sha256=Ph5mvvnfn7qTDtbgU3ScxVzZGcRqvguVpUzboTnEiig,871
61
+ pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=95znjo_v7JLK2FZcUPnE57ofrW4CHF3U8OeYeqsEkHA,4019
62
+ pygeai/_docs/source/pygeai.tests.cli.docker.rst,sha256=UM4B_DAlsak4hAGFH-vjNiif0U6SDXxeYg_LqG7f9N4,192
63
+ pygeai/_docs/source/pygeai.tests.cli.rst,sha256=z8-ucnierNSaUZtUtlfCkyHo5NQvqKW547cpSpwGFzU,874
64
+ pygeai/_docs/source/pygeai.tests.core.base.data.rst,sha256=SsV7Q4nT37voKqp1BDbP7Rub29jVarIPbrNZktQb5Jg,612
65
+ pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ndRoX3malfqip5_eZfmWPwhyI85aBNfu8gVhSBBUghY,890
66
+ pygeai/_docs/source/pygeai.tests.core.common.data.rst,sha256=-oOOj8QUOJRw6y9wk31e6ZyS-2kTBJC8PNbLh0GA16c,210
67
+ pygeai/_docs/source/pygeai.tests.core.common.rst,sha256=07o4RYKqCf757VTBfySjHkfyvHUXY1oMVD2lq2r0N0U,717
68
+ pygeai/_docs/source/pygeai.tests.core.embeddings.rst,sha256=UMEE4lol9mnxuU17fdOMOE1Bf2RIBUdMjEhW5Mtwfyw,875
69
+ pygeai/_docs/source/pygeai.tests.core.feedback.rst,sha256=9H40ALCDjSEMRz9wABan1WyEroubvsPf4rvdqpIfTCU,432
70
+ pygeai/_docs/source/pygeai.tests.core.files.rst,sha256=5FAxa0Jef8QOZuYqyvy5S1ISm4wcsNrs0h-6Et-vU8E,1216
71
+ pygeai/_docs/source/pygeai.tests.core.llm.rst,sha256=y9sVhRP7V0CfwjRrbb1NC_ui7EUGA43McfbjqmeUPMk,402
72
+ pygeai/_docs/source/pygeai.tests.core.plugins.rst,sha256=qvKCfyvArjbFcCISZ7Ig3DqscvgZr_LcuiSY17LYNA8,426
73
+ pygeai/_docs/source/pygeai.tests.core.rerank.rst,sha256=y4HrgcgimfUHRrcYKLGc1jtituy6nQAl78f7pgI_BAI,827
74
+ pygeai/_docs/source/pygeai.tests.core.rst,sha256=ypcwqmEmra-uoifoDzQgNDkgaX4t9mqzv_pb5K8Onug,748
75
+ pygeai/_docs/source/pygeai.tests.core.secrets.rst,sha256=FuE6pZvrM5rsHsIOVc9m4YcW3Zu8rM02NQzL_XsR3Rc,426
76
+ pygeai/_docs/source/pygeai.tests.core.services.rst,sha256=4xL4sdjTv1lHcO9jgloXKyjYxN2xUzGcEkD-UMFyE2g,423
77
+ pygeai/_docs/source/pygeai.tests.core.utils.rst,sha256=wJtGlLlQF6p3E4ywmSJr5dMYZsYGudIRwqVWNW8Omg8,414
78
+ pygeai/_docs/source/pygeai.tests.dbg.rst,sha256=9hsXIno_7hC6oLjVG7FPhlHAJw993ybYtXi52GiiCVI,375
79
+ pygeai/_docs/source/pygeai.tests.evaluation.dataset.rst,sha256=CPg1J3PdXhIZ9lnpcSy5jJCl_SC6eCXX4WoUjdGRAkU,462
80
+ pygeai/_docs/source/pygeai.tests.evaluation.plan.rst,sha256=T8ZJ3CcKck7n_ROUWEpkbNMjzCXhYUoEDrI9Mi2a8mg,444
81
+ pygeai/_docs/source/pygeai.tests.evaluation.result.rst,sha256=6xSyb7SJHjn_Fr1Z4f4hyzcz2wgXtcohmWal9iDidYI,456
82
+ pygeai/_docs/source/pygeai.tests.evaluation.rst,sha256=vEUIxZy-Eft-i-IL1ZIH4bj0Z5LSUE4aX3CprdNeTIk,349
83
+ pygeai/_docs/source/pygeai.tests.gam.rst,sha256=Rl2kATXXoS-JYYwMbSgxEd8bbNLpyh5hKq9OtKUAVyE,372
84
+ pygeai/_docs/source/pygeai.tests.health.rst,sha256=1jSPXAOcrMaP0bsyD0GcF6eqV-Kf_mr1yF8yriDbRnA,390
85
+ pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst,sha256=6ln50eZnW0kP3GUN4EaDkMV3K6YEKQ8S-jkTy3ecygs,521
86
+ pygeai/_docs/source/pygeai.tests.integration.assistants.rst,sha256=L7uS5CnA7skmPQf3Cdec7ZAwGTN_v2gXuHwQGZZU7Xo,327
87
+ pygeai/_docs/source/pygeai.tests.integration.chat.rst,sha256=DTIYNCzxLxwrCls8xhuhSGSFMDEi5FgrCu5Kwr8MLw8,473
88
+ pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst,sha256=LlMEyt0ATVMMSN9ohnhXtSovhNFw8UIxjL3jBezD7ic,2058
89
+ pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst,sha256=S9nbhEP7apPgY__pertBcapWwFJTW140jOcyqCTNsTo,2436
90
+ pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst,sha256=3fjZzzFCSJ5p8p0PHWo3c3dyPqFzdcnIH_aoTq-MUpg,1297
91
+ pygeai/_docs/source/pygeai.tests.integration.lab.rst,sha256=VvG17L2E9g8GVZsR_ImG437Qsfk0-bWKMjVojBlIwds,435
92
+ pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst,sha256=5TCpyK_IMhPgIUldvupE6XAnAZQdVxbqXupGYZpwYmE,2248
93
+ pygeai/_docs/source/pygeai.tests.integration.rst,sha256=9vKTwjgBazu6pJesf2cbkc-DOl8UiMEi2KJjD78L3BM,355
94
+ pygeai/_docs/source/pygeai.tests.lab.agents.rst,sha256=bGXltVdLy1WZup4uY0M_y-9jzzirs9q9mbV5Psx9ZHE,613
95
+ pygeai/_docs/source/pygeai.tests.lab.processes.rst,sha256=_BNmkKra0oq_bnmTJbvl1KHWLJRs2TBhFixLTgmkoMw,640
96
+ pygeai/_docs/source/pygeai.tests.lab.rst,sha256=GKUNimTp8kaOKRjmARm9m7zTBCs4B1HG3hGt-BoCLoc,923
97
+ pygeai/_docs/source/pygeai.tests.lab.spec.rst,sha256=18ef1SHmIaNLTqcJGw1PmAtHJ3D0GKblqmS4l496NQI,592
98
+ pygeai/_docs/source/pygeai.tests.lab.strategies.rst,sha256=phIZJib0m8WVv3klnVe-P5DRL_2zMh0m8ybPfbbFhuE,649
99
+ pygeai/_docs/source/pygeai.tests.lab.tools.rst,sha256=0r74wroe80KosW60hGEYUzM-gAbvoJeLcoUmkIw03Q0,604
100
+ pygeai/_docs/source/pygeai.tests.migration.rst,sha256=RrOUG2jhf9ZPmhrj8sRbzoV8f3o45bzLk8x1vfIeasQ,607
101
+ pygeai/_docs/source/pygeai.tests.organization.limits.rst,sha256=TQGsWAEkfgblivHoYUZ7VBgNDEo7B1SbocYPdX_LWqI,697
102
+ pygeai/_docs/source/pygeai.tests.organization.rst,sha256=81b5GWMVbJ0vGwM0I2lA1frwxReEEdv3cHiFCrZ3yhY,1142
103
+ pygeai/_docs/source/pygeai.tests.proxy.rst,sha256=k3_wXvaRaXGEo77ETI-TD0n7f9hCgAVmEGP_Osw35vs,1307
104
+ pygeai/_docs/source/pygeai.tests.rst,sha256=23BfzAF4pbulGveRJNc6Z1tIauP_5PhyxknC-PX9FZw,588
105
+ pygeai/_docs/source/content/ai_lab.rst,sha256=w1sgxOm9f1PfmwvvINPER9ebr1ICsy3rKfAR71AqOW8,11520
106
+ pygeai/_docs/source/content/analytics.rst,sha256=DdHWOq4nM5xfL9kIcZwBJs7BaYE8Z0oZspOQu6RvD34,15249
107
+ pygeai/_docs/source/content/api_reference.rst,sha256=S9C7RYf9m5DLVL7aGQJNJ89DjFLGiajX2TwFMWrlLg8,2767
108
+ pygeai/_docs/source/content/authentication.rst,sha256=VCX67tZeqU3TVAvLJ4t1XSRDoiePEublyRPRoqhs3z0,7842
109
+ pygeai/_docs/source/content/chat_gui.rst,sha256=0nnQFh_m4V-TqbeZXTKYMzU6gmPTOwRHrkqaZ16098k,6805
110
+ pygeai/_docs/source/content/cli.rst,sha256=WZFfxzmvFTmoi88uZO6VA96b5bUVApJ8QkXmCBPRrnI,5501
111
+ pygeai/_docs/source/content/debugger.rst,sha256=eBWzyHHBpzqslo7dcOhYz4PTAfvGcP1atW-xFb3EIZs,20242
112
+ pygeai/_docs/source/content/intro.rst,sha256=nRoIXypN6xGN9kaqTJM5HrhE0LPn7bnk0CDFeRixito,4532
113
+ pygeai/_docs/source/content/migration.rst,sha256=4778of_8oDGx_LEzuPuGfLncj6M_ANkeh7qpq__rW0o,33448
114
+ pygeai/_docs/source/content/modules.rst,sha256=MufbaO6dfESPq2yqhk9xpCsfSMdhNRcTuODE6LW1HxE,78
115
+ pygeai/_docs/source/content/quickstart.rst,sha256=bsz8ZwTJTWlznnPNq3XJJuOXuV63-7UKqur2YHGD8No,4159
116
+ pygeai/_docs/source/content/samples.rst,sha256=BfRzjBDVgiegbW1OPczZvq1LvS-aHGCH-zDmbX6mNPI,12488
117
+ pygeai/_docs/source/content/ai_lab/cli.rst,sha256=I5yLQ9lax-ISgwLFaB4AXEnaxPHBBSG_krMOaeVMuJw,24687
118
+ pygeai/_docs/source/content/ai_lab/models.rst,sha256=r7PcT2E57w1mKpMLRPtucCTyJn3Vu-z18kScTka2KT4,40085
119
+ pygeai/_docs/source/content/ai_lab/runner.rst,sha256=gPKLE_3I4xzKRdKy5t4hbgtDoecFV-JAy8eaw3F49LI,13889
120
+ pygeai/_docs/source/content/ai_lab/spec.rst,sha256=VTAc2CFpNmQL37oQ4caFDz1wvb9hXb8CjluiJxBFoEQ,16482
121
+ pygeai/_docs/source/content/ai_lab/usage.rst,sha256=LfuEvLECXpmlCdioih-_HJY5zTu6uD0ja2ETCdBSKBw,28598
122
+ pygeai/_docs/source/content/api_reference/admin.rst,sha256=v_o5I_B3ND6fu_v8gOpGKvR_ekI6EPU4EEIZLdDnPT0,3401
123
+ pygeai/_docs/source/content/api_reference/assistant.rst,sha256=5-XseBnf-s-UfttcYW0SUWD8WoL6FQMfmXqw024h2EA,7326
124
+ pygeai/_docs/source/content/api_reference/auth.rst,sha256=to_Bjp1BnJ-iOf8Yg2UUjuOZ7FcLJleeu-Qh-lwAQrM,10057
125
+ pygeai/_docs/source/content/api_reference/chat.rst,sha256=gFFjlKa25ZYy8UB6e_i3_G4VrFf-uYNdZsQMvI4xJ-U,21968
126
+ pygeai/_docs/source/content/api_reference/embeddings.rst,sha256=9EzULcRyK79g8k4YinfjCUhaKoN0pLkenNMC-P5kiA8,5422
127
+ pygeai/_docs/source/content/api_reference/evaluation.rst,sha256=ggFOdTi-5i869-na7p_IV1A2Kk8DmfKkwtTAYTlxn6M,16247
128
+ pygeai/_docs/source/content/api_reference/feedback.rst,sha256=6Duc-x4Hwp2bc3KHwtJ6pHg8WxT6_zq3Mor2A1NPoTE,5963
129
+ pygeai/_docs/source/content/api_reference/files.rst,sha256=wWZvaVDvcGvXSkpEKhKQVYk6Fgm56D_OoaYYwjyz8tw,13659
130
+ pygeai/_docs/source/content/api_reference/gam.rst,sha256=U__bhQkho3NDllHBQd9cSIn-LyVExy0zZi4RxaDoZxY,10553
131
+ pygeai/_docs/source/content/api_reference/health.rst,sha256=hEVzFsP1BnJL7fzAQV1sUYa0iFDI8GKJ1E54Oewpr5Y,1041
132
+ pygeai/_docs/source/content/api_reference/project.rst,sha256=wqWJKgXcbLf9Ttl_l20TmcJ-JfklJB9nbSYLtMCh8wY,21835
133
+ pygeai/_docs/source/content/api_reference/proxy.rst,sha256=kXcanBNP53t3eegGe7khVYOKOSjqlM6hHyrH8O0g7J0,7434
134
+ pygeai/_docs/source/content/api_reference/rag.rst,sha256=cB_GTuDK1RPFjK0tIISsPPViGZGLaFGUmWpm_ltAVjI,18820
135
+ pygeai/_docs/source/content/api_reference/rerank.rst,sha256=zuoqmc2yW_M-tJ5IkYtaGxF2hHf4zFqnKWrL2zMh7Ig,2436
136
+ pygeai/_docs/source/content/api_reference/secrets.rst,sha256=HYxpExPhYIxdqff3u1REP0xYfodBkTB1kr5sHQavu00,12284
137
+ pygeai/_docs/source/content/api_reference/usage_limits.rst,sha256=XiOWcogv-AC6FrjmH_3re165RUi-eTq7IKzU9uvIjsw,9051
138
+ pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ pygeai/admin/clients.py,sha256=X7Ps_VqSD6NAMdWO6wm7Gbis5-67OJQkOa5lqHCmWi8,5348
140
+ pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
141
+ pygeai/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
+ pygeai/analytics/clients.py,sha256=MbLRZUR-ONP6RJ2lgitLhh6iRA9yvI8M1GgJR8Q7V7c,18874
143
+ pygeai/analytics/endpoints.py,sha256=qlVYc-D12Cpv6cn8x5cZTACRC1_qkgAss85ACVdxSLw,5626
144
+ pygeai/analytics/managers.py,sha256=PhwcOBnWtJtPF1Jh8V9ITcsC5jlt6YNEI890Zejmmxk,26213
145
+ pygeai/analytics/mappers.py,sha256=enenIBwJHHqPAyAvo2juro4TjXAtSAA885EnbzWDlIE,10893
146
+ pygeai/analytics/responses.py,sha256=OWb_kkwxwa--dJQo8W3_2PtZhdFJAPpwrbvb2qdEajU,4813
147
+ pygeai/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ pygeai/assistant/clients.py,sha256=gGhALWddo30SM7mvoDe2TM9cVQrJ8RzoI4LVQ8ov9VQ,9856
149
+ pygeai/assistant/endpoints.py,sha256=7LuXWm0-sbrmHsngqW63wuk37K24wcMLinmJ6HdSimg,1026
150
+ pygeai/assistant/managers.py,sha256=pc_1HVUhReavbKFD2W445abGyakWzeyOn9nz3sx1M94,34627
151
+ pygeai/assistant/mappers.py,sha256=oSx_k1edknbKGlASke5ASzKEekG613TepVQRm1ecPOc,5915
152
+ pygeai/assistant/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
+ pygeai/assistant/data/clients.py,sha256=PeSYxbHti8PIdImV4-rhcTWlOvj2nedGX21ulXZi3wQ,660
154
+ pygeai/assistant/data_analyst/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
+ pygeai/assistant/data_analyst/clients.py,sha256=Wx4M4LgVgsycLl_PHUjZkSvDlR1nGcdt1r5FLRIJb08,2756
156
+ pygeai/assistant/data_analyst/endpoints.py,sha256=2m-IXrb2-5id9tnpOjMQRYm6vqay6fw56-6kfpElPYI,296
157
+ pygeai/assistant/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
158
+ pygeai/assistant/rag/clients.py,sha256=Pl9fBijln_d6YsQ0uIMTPM9X6sMcwR5wEfEspAKMMHM,13029
159
+ pygeai/assistant/rag/endpoints.py,sha256=7YlHIvAYj3-xsCWtVMDYobxXbAO0lCo9yJdOrQxwCrQ,1145
160
+ pygeai/assistant/rag/mappers.py,sha256=n3aeNXqz_7zq_JWq5wJfeNX1kvV3arOxAoUsqRYOZsc,8645
161
+ pygeai/assistant/rag/models.py,sha256=g5UiHuRjobgU1WgUMxeBzXykxgJ5q7eb_YY8qDciNvw,15732
162
+ pygeai/assistant/rag/responses.py,sha256=fY97ibsCVLQ3Ssnjuvj-JeA883WqjOw7ZdxbpQp_B1E,196
163
+ pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
+ pygeai/auth/clients.py,sha256=3Eg9d9XJlPCIXz2N90LalchahV2gPaD0DWj8iBcw41Y,5422
165
+ pygeai/auth/endpoints.py,sha256=KOZ5gS8I8MIamlfbj4bN8w6kMmIdAKr6puKJrw0cEtw,589
166
+ pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ pygeai/chat/clients.py,sha256=-PovdRQnwpsHtqoH0UNyAvx8XhDm8xLcZyvTBmsqhNc,19829
168
+ pygeai/chat/endpoints.py,sha256=r_zvsL5UIqnqhz9I0CG0eQSKV-egwx6EKdaZXj-HndA,343
169
+ pygeai/chat/iris.py,sha256=-9pDHQpWhR_PvbZ6rD8eMPFk46PI9sCdPQ9aAyvSexs,413
170
+ pygeai/chat/managers.py,sha256=XVnO9yGlS1SpnHXsmzwO2hizt4pKXrDM29cE-3pfIk8,3109
171
+ pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
172
+ pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
173
+ pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
174
+ pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
175
+ pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
176
+ pygeai/cli/error_handler.py,sha256=Lw28yRk0mBvwMpuYrfbYV87g_AHoiidZo9SakoOZva4,5745
177
+ pygeai/cli/geai.py,sha256=8cqUrxzbKkpojmbVbBgHxrzTuE4n996WptgxbHr8O9I,10560
178
+ pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
179
+ pygeai/cli/install_man.py,sha256=DjZ3k05sKSzpLFqsU4LHz1b37NHLVdOvS6oZihdBSis,3794
180
+ pygeai/cli/parsers.py,sha256=0Y38zQ9tG9rqVspr-ksV6LrC0Ynt8uBWbvae89HAWe8,4716
181
+ pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
182
+ pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
183
+ pygeai/cli/commands/analytics.py,sha256=_EJ1Opg4yvYrl-N11zpa-sdOtEEwQwQKZP1eOvPBeOQ,19949
184
+ pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
185
+ pygeai/cli/commands/auth.py,sha256=w1XIcTYh7SQ4keOhQiJiUJ2NFMY349K53P2BoGe2Rgc,8318
186
+ pygeai/cli/commands/base.py,sha256=J48IjpFr5oiRpxndiSI3vtNG1pfHBlDeRDOm7QQxk_U,7836
187
+ pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
188
+ pygeai/cli/commands/chat.py,sha256=i70GQA21RVMjMf5dsWXthUvLFjjXPb8G54AYGB_pz-s,35202
189
+ pygeai/cli/commands/common.py,sha256=GWbZvHCWlEMofsrgrRZflzgYgQV8GYyiZE5Dro1eDSI,16571
190
+ pygeai/cli/commands/configuration.py,sha256=J1Y8AH1xYWvcY4bzqKvF-_ggEDJ22Dv4iEcCBi2pq_8,4140
191
+ pygeai/cli/commands/docs.py,sha256=8JEgKAHFL19g1rmgQzFwdzqLBP8ySvnpQogXwJPWfS4,3444
192
+ pygeai/cli/commands/embeddings.py,sha256=LtJROVI2gD3oq0-YZRyeud_YlfhK3R4d5Y6iHhIuAHQ,6055
193
+ pygeai/cli/commands/evaluation.py,sha256=7fgqihWtJ1h7dGXdTR3AbanNAIjeAI5qY7TAaTSi6WI,63828
194
+ pygeai/cli/commands/feedback.py,sha256=nJdrI974N_3IsloJMqe7GRay5_ijOSkeZ9MIdGeQZa0,2442
195
+ pygeai/cli/commands/files.py,sha256=IOnNlqhpnOytPns0GVZLT-BCcLlr_fOCdHH0HKC38Ik,7888
196
+ pygeai/cli/commands/gam.py,sha256=_eRp3ryY0jFYxtZgWOAU4_ky7S9zggGvkZNZi9eokTI,9664
197
+ pygeai/cli/commands/llm.py,sha256=w7ozHlcdZ77hcXFzJaL0CM_YgXYKCaWBmg7t0WkHaOs,4115
198
+ pygeai/cli/commands/migrate.py,sha256=fABSfcJHAxSs1egPLD-JLiQQXVKV8ruZYF1dW0_P0vU,48403
199
+ pygeai/cli/commands/options.py,sha256=oVDJF-SsE80vi-W4d0n2cNo1BeeU_jqDs_TtMPkz-1I,1804
200
+ pygeai/cli/commands/organization.py,sha256=lz1MckOWiY92oBY80zT1eL6g3WtajqB_zURvbewZeo0,24139
201
+ pygeai/cli/commands/rag.py,sha256=IgHsfRmnsegrGCCpwuNmd15BClQgEPc_GH2JXfG6OKo,37052
202
+ pygeai/cli/commands/rerank.py,sha256=JO8EK6lgRUpDOGmhxmX43dS_97ssl29HxEwg__kNwCA,3010
203
+ pygeai/cli/commands/secrets.py,sha256=d49inaFV_f0OoILH15U_SW4GuLRh37_x7VG3dxBbQbA,9411
204
+ pygeai/cli/commands/usage_limits.py,sha256=4nlLd5ec2LwEEDgNWgWg0vCBOm8dXkKntHZOIFxA9sY,18514
205
+ pygeai/cli/commands/validators.py,sha256=Ciicmad7vRQg06alLjZ4-Zg3nmKReu5cDQ70RVtawJ0,8012
206
+ pygeai/cli/commands/version.py,sha256=vyJcnxwL_TfpOQI0yE2a1ZyA3VRAE7ssh9APNBXpmqk,1701
207
+ pygeai/cli/commands/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
+ pygeai/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
+ pygeai/cli/commands/lab/ai_lab.py,sha256=C0MgxrHQ5B218luZo4ERc1PqY7jFusaAcmUrVR2KGFw,129324
210
+ pygeai/cli/commands/lab/common.py,sha256=YBenPCVgK01Xaxgj1429bp_Ri1SN4beBxZk3dCLp7X0,6590
211
+ pygeai/cli/commands/lab/options.py,sha256=T13Vi97zochr0cU4yjyvvwWRPENILFDYpvqpU4uEBis,165
212
+ pygeai/cli/commands/lab/spec.py,sha256=EjNdEnljKpYPQyT4d4ViAPrM1g7oIitv6ddnWVkWXPk,8301
213
+ pygeai/cli/commands/lab/utils.py,sha256=uxhgHvCRrV6WYRxR2qd3nED_hhXcxJ1tAU8MlzoshEg,456
214
+ pygeai/cli/texts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
+ pygeai/cli/texts/help.py,sha256=QyLH1g4dK-AJ1X1GtYLDulWWReuECPsK8mJkeqDb3Vo,24627
216
+ pygeai/core/__init__.py,sha256=bbNktFp7t2dOBIvWto-uGVBW8acaKIe8EKcfuLV-HmA,189
217
+ pygeai/core/handlers.py,sha256=la1QcQbLwfiNd-xDQ3jtWRHmeEm6E93Rfx5c-5bkLmw,934
218
+ pygeai/core/models.py,sha256=db44pgk_hJ5s2S8neZq5Y1XZY6rQDfPRN6mWDSvj-rw,27465
219
+ pygeai/core/responses.py,sha256=wxlikhw1UAAB6Mib97xjq2eCFyZPWoosPwn9UhpKi7Y,2825
220
+ pygeai/core/singleton.py,sha256=-U5kywQOBvbTtkWCczLZD_aoHBjDLRj07Q-UqQJpww0,242
221
+ pygeai/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
+ pygeai/core/base/clients.py,sha256=B2rngxElQeNexwgVlp4Qi1sZJw3nqNw67UUOOq_IbL0,3417
223
+ pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
224
+ pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
225
+ pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
226
+ pygeai/core/base/session.py,sha256=77tyPXjO-nYVxYHQ9keRey2mc-m8IV9mXQCLZYI43tI,4870
227
+ pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ pygeai/core/common/config.py,sha256=DjMMkIAD_dn7UMxk9SgDQbUX0tpP97MncguTslnolZs,6342
229
+ pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
230
+ pygeai/core/common/exceptions.py,sha256=J_5g1jumvkSlg64peMFXfivbQv4vymUBRldxwYo7Qpg,3605
231
+ pygeai/core/embeddings/__init__.py,sha256=sn0wz0qNJeJy-1AQW4on62LX7bqhlVs7xcS0MaPQcW4,486
232
+ pygeai/core/embeddings/clients.py,sha256=s-yHs99puVw4H1ShQ_jU-7c8S9BUs7WqwUavTKVpcMc,4146
233
+ pygeai/core/embeddings/endpoints.py,sha256=b__cuKQjribog9PSUeDzwrQ0vBO4WyYahLhLjDiUpL0,98
234
+ pygeai/core/embeddings/managers.py,sha256=F6MZtWVVe9Z55WyNGkck6Myk_rjVNMP8E4QwsZ7tWyY,3515
235
+ pygeai/core/embeddings/mappers.py,sha256=9K5AB5FA9KWYd-MOHpZu6MkqfZxVq9ESQLf76MQdDj0,2019
236
+ pygeai/core/embeddings/models.py,sha256=T9FehWk_0doiiZG7yMzSCK9_TBHibaocA4b8sJP7T4M,366
237
+ pygeai/core/embeddings/responses.py,sha256=ny7iE4p-1yADcRC7U2TdhxtXI3wZ87QXrDfGGbiEvpE,674
238
+ pygeai/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ pygeai/core/feedback/clients.py,sha256=eFxgmIPLosomoDaBt7kC-nuVMsm0yGT-vDubTaCBqQM,1882
240
+ pygeai/core/feedback/endpoints.py,sha256=GzgjLtBCYWkk51OfUCHe0YigO-F-8QM6XiH0zQuo1Qg,197
241
+ pygeai/core/feedback/models.py,sha256=VdeVVWTQ8qc4TEPbL2XbYI4-UP2m2eh1pkBptw_do1E,336
242
+ pygeai/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
+ pygeai/core/files/clients.py,sha256=1wxpKaq2nDjEDm7wWXAK9xFV2vXZGKlJropMEjLV1Ng,5663
244
+ pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWYQ,337
245
+ pygeai/core/files/managers.py,sha256=jxmnzgke4fDqUniGG4BlRBA2iagKvzzdCkuNi_7_Eio,8768
246
+ pygeai/core/files/mappers.py,sha256=8PXXsQJZEH45yLISn_xsOZmcRUEe_F6ELkUeR1lzc-M,1462
247
+ pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
248
+ pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
249
+ pygeai/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
+ pygeai/core/llm/clients.py,sha256=y9WqIsdWGdwjiXJ7b5ONIdLikAab3sdU0yfcadojJ7k,2161
251
+ pygeai/core/llm/endpoints.py,sha256=EF5wNJH8Au3ZYl_hF2uCRL4hPSe2_MIy6TGpzubNVak,435
252
+ pygeai/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
253
+ pygeai/core/plugins/clients.py,sha256=Zw6G26Jq2TCLSgfRDQfoMhaY_qzA5YpdTRXpS0YZ_Fo,995
254
+ pygeai/core/plugins/endpoints.py,sha256=1YUPtu0sqUKAgyBwTtEJdxhRs_ip9RL2mhz04U6KsXo,145
255
+ pygeai/core/plugins/models.py,sha256=SzqE-NToxbqTTMerUk_ELkI6-P6KNIDJY_AOZx0-PTU,3691
256
+ pygeai/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
+ pygeai/core/rerank/clients.py,sha256=gmUxcQFplByLadLafrq31dEBp8lqzXTktW3niHBN134,1010
258
+ pygeai/core/rerank/endpoints.py,sha256=PZcA1i73fyGbpnbpWYr1-gHc6zy7L60b_E8sMLwsXw8,85
259
+ pygeai/core/rerank/managers.py,sha256=FHGxD0h1fct1RgJlysVG5kbNEUuLKeKGdJA73zbG8fk,2038
260
+ pygeai/core/rerank/mappers.py,sha256=Jx8PAymebA2TPxGssaKAj4eS0OVsKJqecntAugRO9ww,957
261
+ pygeai/core/rerank/models.py,sha256=WLE-waHk2glKSl1xx9EpmE1k4bva7c14jjraaWuQ5Uk,430
262
+ pygeai/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
263
+ pygeai/core/secrets/clients.py,sha256=9u28Gr-hXn0-kC4_xhgvl1a8n0PNV088KsI39X0QZeI,8874
264
+ pygeai/core/secrets/endpoints.py,sha256=HN17bf7m8BSwtgLFZt0ifZf3KwR-MP3cXUSeY6P4H-8,468
265
+ pygeai/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
+ pygeai/core/services/response.py,sha256=L_xDAvSwnupQv6g1Ly2WQvImvITIVrMYW_TcEbXjM6c,505
267
+ pygeai/core/services/rest.py,sha256=RXuK18B_gPqP3f7KA3lBwauHE2xBfhjX8U706H9spII,17264
268
+ pygeai/core/services/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
+ pygeai/core/services/llm/model.py,sha256=dv0vH2uGQDzyXh63A_nr_bmMukr6Q9nO7LuiWgvclnY,9065
270
+ pygeai/core/services/llm/providers.py,sha256=CS1v4qSiibuL51fQlgcARiyPoXxSnCeV5RXwNc1nmgA,293
271
+ pygeai/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
+ pygeai/core/utils/console.py,sha256=2YD0R6r5k0P1YCtYZDg1VnFih5HubdWg2vKxV4xguz0,2900
273
+ pygeai/core/utils/parsers.py,sha256=783HSQX7CDRKHU7WQQ9o_sS_ucMrYNDXvC_pKw1F-P4,1303
274
+ pygeai/core/utils/validators.py,sha256=LoDrO5z0K8_axMdoMHGZZHlxdIFQWnzC9L7RbEQFITg,328
275
+ pygeai/dbg/__init__.py,sha256=yVJAWK9z9CGKRH5Mw8ZYQ0w5qOw86nXeqtRVqt_zu64,147
276
+ pygeai/dbg/debugger.py,sha256=6-aIF8Sxurm4ypvuSgDTrHnJc0wbeOLEAdQNqnH2cS0,35510
277
+ pygeai/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
+ pygeai/evaluation/clients.py,sha256=5go1j-YgfgD8b4wXJ8Vwzit1eccJ5zqsymbov8RPE-c,1059
279
+ pygeai/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
+ pygeai/evaluation/dataset/clients.py,sha256=mzinQp-bZ2h6GdNJ6N2TQ9ceCkCzZINwBMyAPp6hbss,20033
281
+ pygeai/evaluation/dataset/endpoints.py,sha256=d_llUcXNDncNrIyYgjJ_lMBnX2YPVxmeu8op3N30mLs,2922
282
+ pygeai/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
+ pygeai/evaluation/plan/clients.py,sha256=iNXS23JS9rH66xIFZvH7gpHv_kNRKQRHy_hNvO8nm1c,12788
284
+ pygeai/evaluation/plan/endpoints.py,sha256=IzBRZ5lTjeEAwiQUVYr6TCgr6ddZ-LZS3jEp0o1owTQ,1976
285
+ pygeai/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
+ pygeai/evaluation/result/clients.py,sha256=a9RcmfLJ4uShSh0y0mLSRVS6EbmC9eD4q-ngXh99Sj4,3042
287
+ pygeai/evaluation/result/endpoints.py,sha256=dyWKB8GXaVClHBnC5BCrA3lX717wFPVrKaqIgil7UqY,310
288
+ pygeai/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
+ pygeai/flows/endpoints.py,sha256=GK7k2XI49j6Ya6tBcq8_Y4PAN15CE3bbeA8-IlxJAq4,33668
290
+ pygeai/flows/models.py,sha256=FqrNQo2wPU-oQsHO4kkbDcuLLVc1shQ5EnCHpOb4fL8,24472
291
+ pygeai/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
+ pygeai/gam/clients.py,sha256=8egiv_7Na6ypYx6ZYcFhKm4GG1ilPXsuI9_xj4lRG7o,7698
293
+ pygeai/gam/endpoints.py,sha256=Gf9V5PT2wI5qLW3UjG9SI0FWzTcwP8HN4lEFrFxbFPo,500
294
+ pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
+ pygeai/health/clients.py,sha256=LQdluFxnPmzTbuQJl0XQIFJBIQ3j2VL3okTtaFxmQDo,855
296
+ pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
297
+ pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
+ pygeai/lab/clients.py,sha256=9-eHdXtjDJ9OoNAR07aGQ9yaL2MXmg3J6T8aODWkJQ0,1229
299
+ pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
300
+ pygeai/lab/managers.py,sha256=GLs2I28jB3mZVkpYBQhHZoojcnGTgOq7N7IVfQHorpA,70751
301
+ pygeai/lab/models.py,sha256=sHMFXWmr_y7qrdA1MWr3zNH5V72tectz-RDxVeiaTwE,74913
302
+ pygeai/lab/runners.py,sha256=-uaCPHpFyiKtVOxlEjPjAc9h-onSdGAcYJ5IAZPqlb0,4147
303
+ pygeai/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
+ pygeai/lab/agents/clients.py,sha256=cJut_ftGFSX6ZMJlodiE7P7p_OXJre1asC-NlEQcdvs,19091
305
+ pygeai/lab/agents/endpoints.py,sha256=a3pcvP5ONGEsMyj7sTnpyPjlGPq7mHZY_5qEYK4QxEM,831
306
+ pygeai/lab/agents/mappers.py,sha256=3w12HwWj3tnoSbDmQb-sMXjiCm84X_YU4_iH46GWu6s,12563
307
+ pygeai/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
308
+ pygeai/lab/processes/clients.py,sha256=7CSFCzeymFG1eJUM69wGt2LjSyTG66IxiTCzAUsc_bw,43870
309
+ pygeai/lab/processes/endpoints.py,sha256=nFIEcNP22xe4j6URI6KcwTh7h-xgYjYYuHT6PDPiO3I,2100
310
+ pygeai/lab/processes/mappers.py,sha256=YOWcVKdcJmLMAq-f3qevzqQ8L_hjb0_jVXBdCHutpzk,15815
311
+ pygeai/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
+ pygeai/lab/spec/loader.py,sha256=Dq9MhLqFwF4RPdBBaqKPGqt43-PrNlsHpe-NXe4S0qQ,709
313
+ pygeai/lab/spec/parsers.py,sha256=oG7tY-GylweRxpvtCl3p53t0IoTX3UZFiB77x__3Qp8,646
314
+ pygeai/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
315
+ pygeai/lab/strategies/clients.py,sha256=FuLpxobqXiPeDL7b2a719pq6-gZ_g5n0NWKIGchizSY,9298
316
+ pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
317
+ pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
318
+ pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
+ pygeai/lab/tools/clients.py,sha256=nbyY5zeD7ZWvxAn9GKiYeIF9jdop82LQwGi7DgXWpAY,23293
320
+ pygeai/lab/tools/endpoints.py,sha256=uZwRHSYwbzzqpZE-UDv1vLWLed1YV3bgf4DX7xG0sd4,881
321
+ pygeai/lab/tools/mappers.py,sha256=bYi5k36h0k4mCvOnV-r8YOHKz0U9P0mH21GNs20w2eM,4998
322
+ pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
323
+ pygeai/man/man1/__init__.py,sha256=CFvES6cP_sbhgpm-I-QSbPC1f7Bw7cFsMW2-sxm4FtM,54
324
+ pygeai/man/man1/geai-proxy.1,sha256=N5jtjzS5dB3JjAkG0Rw8EBzhC6Jgoy6zbS7XDgcE4EA,6735
325
+ pygeai/man/man1/geai.1,sha256=dRJjqXLu4PRr5tELX-TveOrvp-J085rTV0NbqL5I30Q,51162
326
+ pygeai/migration/__init__.py,sha256=sZb6bHOjiOhjHTvU1fYbD8ubSwaitn4jyQrj59Cf8ao,843
327
+ pygeai/migration/strategies.py,sha256=q26PDE1Nl9o6J9_ZVWth0hsXUCL2nNQ5k2GPVL9NqAE,22810
328
+ pygeai/migration/tools.py,sha256=d6YtJ2xPdEAxMBiDgOXaMiXSgbUcErzN0wj0kmA9skU,6201
329
+ pygeai/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
+ pygeai/organization/clients.py,sha256=fCOHkklrdkdjUdV6dPq0RZ9D-EpC_pXzmhsMo4R4ruE,17964
331
+ pygeai/organization/endpoints.py,sha256=BWdpYPMJCoROoSZnXfX9ROcQRgbcDiuhopxLSZVERQg,1993
332
+ pygeai/organization/managers.py,sha256=Qkh1g8MR4DzGjNp8VOFDsSUPG6KQdPWOpUqKigj5tMk,25459
333
+ pygeai/organization/mappers.py,sha256=10JxUTdt9jBgcHfW7ViY2HdtY-UfI9t_qhX8KvuMPn0,5897
334
+ pygeai/organization/responses.py,sha256=rVQo5N3aUE2tpJiflkFO1eG36imqJqVF3m4rRjKv7-s,1919
335
+ pygeai/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
+ pygeai/organization/limits/clients.py,sha256=hoj31n_Lxt40sCV9umxXt3Q3BzFaKSTTtdhMc-4dAZ4,15600
337
+ pygeai/organization/limits/endpoints.py,sha256=mtca6U6l47jbbbmGc8KoXCDMnyNHtaPo8dxWVuHuUE0,2578
338
+ pygeai/organization/limits/managers.py,sha256=S7LHCQJTzTr-_-UH7abipRIv9Qnt8e-ek0U1sIGBYMU,14502
339
+ pygeai/organization/limits/mappers.py,sha256=nINHaXOnZLnpc39PG3xf_7HX6tS9_-cT-H50ARwCGvw,777
340
+ pygeai/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
+ pygeai/proxy/clients.py,sha256=7g0SJbYjBp02rX6WH-HdGOevclGNJLsELIgf68fR14w,8059
342
+ pygeai/proxy/config.py,sha256=41fACnnhB21OhnohVPW4sbM8aZbAAEgGo7-dUaM_fpM,5057
343
+ pygeai/proxy/managers.py,sha256=hXxVeWvkwfb7QrwOGcKyL9qW_wdNTxcpW84ppqwQ0SU,11132
344
+ pygeai/proxy/servers.py,sha256=gWEceLmla_doKfEx6UJNIfrcr5USqkiYfz0LB9O80vA,11518
345
+ pygeai/proxy/tool.py,sha256=gxDd_jABg68vB_WOAGsosd0dQc3AbRKnFqY6qpXsBDk,2338
346
+ pygeai/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
+ pygeai/tests/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
+ pygeai/tests/admin/test_clients.py,sha256=WqVlZttfh_gSwM9kVcBvuKGoroXb40pjnBwvNZEvO_A,6964
349
+ pygeai/tests/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
+ pygeai/tests/analytics/test_clients.py,sha256=7Y77t-KAHbDIUJ7JUgz3E-8B22bEizbSPt0tDbja6CQ,3323
351
+ pygeai/tests/analytics/test_managers.py,sha256=z0siFI1B9cCEKE14PK-NwvOov0oHaAGypVtEX5KM-eQ,5000
352
+ pygeai/tests/analytics/test_mappers.py,sha256=FHmfhSEVXX9b9dVrdw-zbu1cnPFrRUjigO4EsxmYN24,3650
353
+ pygeai/tests/analytics/test_responses.py,sha256=X1f8Tt2RM8D7_pMyaap5ZC_7zBY2cu-MpmF1zn3ujJo,3593
354
+ pygeai/tests/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
+ pygeai/tests/assistants/test_clients.py,sha256=L6dklqyJmle-aBPKC7sgL9k9D_-WptT6m_C2W0hkVaE,9013
356
+ pygeai/tests/assistants/test_managers.py,sha256=EbwGVabdCBqgMryjRMoWVFWa5kR9HqzsckB-DR3EuSA,11196
357
+ pygeai/tests/assistants/test_mappers.py,sha256=zIYdt4zqTG82L1t-GAyr-udRipxRvXnRerPUueOmkQY,4089
358
+ pygeai/tests/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
+ pygeai/tests/assistants/rag/test_clients.py,sha256=AMqOmpYTISAm-vvJm22YVsKdvqoDLBMnxWklK-OfZa8,15740
360
+ pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP79jiMC-R1Vnvus,8359
361
+ pygeai/tests/assistants/rag/test_models.py,sha256=45eAQ4vE3gMvE8qWKlXg2klulQMZ3riHx5XWurE0mVA,10790
362
+ pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
363
+ pygeai/tests/auth/test_clients.py,sha256=PmCletRHQRiy_D15VaGILUCq9T-acDUHCk6t7tqnmAQ,12113
364
+ pygeai/tests/auth/test_oauth.py,sha256=_dSed8FjxfHU0LItT9X1NYGM2fWoxFVW6zNyEuV_hSI,6836
365
+ pygeai/tests/auth/test_session_logging.py,sha256=VOVmZESyy4d3TX2JuXu9kO8iFa5cUt_5gCcVX9i8gn4,5809
366
+ pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
+ pygeai/tests/chat/test_clients.py,sha256=E_0XMe0kFrNHZY_xRxNKjHq71y2ifzj51Pm10xqKqAw,15901
368
+ pygeai/tests/chat/test_iris.py,sha256=kWGrQ0T7E5Lg9-F9157GvF32l1sbaejbI5qbGKjWkxM,1186
369
+ pygeai/tests/chat/test_session.py,sha256=yIxUJJGRXWPjwxvsosIE7AygzKoJ45GIx5DCUYgTRqY,2906
370
+ pygeai/tests/chat/test_ui.py,sha256=vWUdyC8mmZ7P-Ej4ssrCcSxMBNAyXY0rwuI_H840XaU,8938
371
+ pygeai/tests/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
372
+ pygeai/tests/cli/test_credentials_flag.py,sha256=Szc72jVZPq_kk2QHsiCHHy23X2FKOmWZ5guhyZvOsNo,13096
373
+ pygeai/tests/cli/test_error_handler.py,sha256=SElvo48_BTtJq6KWwkMWEM8EG0ErM5A0riHBRevn_TY,9340
374
+ pygeai/tests/cli/test_geai_driver.py,sha256=jhNt9jmqu3DVA0oWxNw6yQ0KiVGLyMrO6y4vJKO_ss4,6248
375
+ pygeai/tests/cli/test_parsers.py,sha256=QhNf46ijgwQVzzXhsoJ4Vbg948wXM2-5FSWa-yorm08,7267
376
+ pygeai/tests/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
+ pygeai/tests/cli/commands/test_assistant.py,sha256=IT1ORQZRFoNvGXn67SweI8DU3d0G8fJbnLAFfEJCV0k,10547
378
+ pygeai/tests/cli/commands/test_chat.py,sha256=4TK_sRqEQlgpCribkMjKqzAONVxAP7oSkfYw5bIRYb8,6120
379
+ pygeai/tests/cli/commands/test_common.py,sha256=gv1GOEAXq5IqiXu5xjANq4pxyjClcu2taCHIaG38Gjc,13514
380
+ pygeai/tests/cli/commands/test_embeddings.py,sha256=vFsA83cZECy7Tcg0FTDmtFdgT3OfM2dI9X64MniS8oI,5232
381
+ pygeai/tests/cli/commands/test_evaluation.py,sha256=rjIzAQxPXwoUgbbKvTy-Tgmid879M4Jipa-jBYRZPRg,30900
382
+ pygeai/tests/cli/commands/test_feedback.py,sha256=gHJ8Jt8kEemTvlpWLCyZCo73i0iBPlKhONRj4bJfhWU,3192
383
+ pygeai/tests/cli/commands/test_files.py,sha256=cJ0W4f8eg1T2TBZCah1k93nrk7R8ZL6_1HwCOhJOacI,7583
384
+ pygeai/tests/cli/commands/test_gam.py,sha256=oIFj4HJV6z1fQkIU2BmgP1VJ2zJ65UWDM6a3G8AenHM,8318
385
+ pygeai/tests/cli/commands/test_llm.py,sha256=SzQg9-Okix61JNWDWwaJIWuxxyji6n1PzaICleaonIM,5272
386
+ pygeai/tests/cli/commands/test_migrate.py,sha256=TGLxZHp-WVd28E7i2Bu3Bz62EN6kxZ6xsVvWg4VLYwI,7852
387
+ pygeai/tests/cli/commands/test_organization.py,sha256=hHmw5sSgL1tWxf5pBuNtnLO-O4CACEv-eV-lQeO3TBs,12728
388
+ pygeai/tests/cli/commands/test_rag.py,sha256=7SdTbCgdPDoLca4Y7LECkL6AVPpgIYXiXyTRubBNe1Y,11761
389
+ pygeai/tests/cli/commands/test_rerank.py,sha256=G9Kc-VnLJgx_fYy1qgoL0swYp9-VV6OSL9eNnU0Xkpw,5305
390
+ pygeai/tests/cli/commands/test_secrets.py,sha256=CXd2ZTpuUGK4SgfPuSGo9p_C2TiILj4HJUi_O4n0XK0,7562
391
+ pygeai/tests/cli/commands/test_show_help.py,sha256=RHF-xzrgk25OrQTdxsAfnEspDfvmyAtEryYEVpnaqNc,1608
392
+ pygeai/tests/cli/commands/test_usage_limits.py,sha256=tt2LBaWmUhQnp9X3fHZc5-xpzKCVn-IHyZqT3cJn3ao,18636
393
+ pygeai/tests/cli/commands/test_validators.py,sha256=HSKL9_nwTk18vrCZVBs8j1BEohgaIhOurW870hLzkpA,7445
394
+ pygeai/tests/cli/commands/test_version.py,sha256=e6TIxU-USX8o0q3S2OGEGb-yMTHTb45yiUr2pN3zJ9Y,3989
395
+ pygeai/tests/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
396
+ pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=ouOGHdROpK3zEf6BsfC4tt5dGUE72MU-E-w29rgHpaQ,42841
397
+ pygeai/tests/cli/commands/lab/test_common.py,sha256=vJuS0rNoLB2IWWtfaWdtR0H9FkPW9gpee4URbdiDl70,8678
398
+ pygeai/tests/cli/commands/lab/test_spec.py,sha256=aymKywo6TH7EJVkPW_R3RXLQeCyXX8UFbnXwlO46q0Y,12474
399
+ pygeai/tests/cli/docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
400
+ pygeai/tests/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
401
+ pygeai/tests/core/test_handlers.py,sha256=xzPLBXLF3sBt5B1VhQ4ynnwmyQEbSTIoWsL8Djvrnyc,2470
402
+ pygeai/tests/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
403
+ pygeai/tests/core/base/test_mappers.py,sha256=CH6xIVebzqW43YOhmSDQtzVlRRlpZUTwNGWtsBKtUBA,25715
404
+ pygeai/tests/core/base/test_models.py,sha256=SC1AKP56t-nM4wskLfGEnw_bZffi4dj9jqxPjhTvPak,16362
405
+ pygeai/tests/core/base/test_responses.py,sha256=ToRBmy3tTYMT2jET0OCt3N0JT15edZ8Obeh2QWGGEJI,1798
406
+ pygeai/tests/core/base/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
+ pygeai/tests/core/base/data/mappers.py,sha256=0SEtD2m48ZOYj6AesxzB6LbGSNrxoyq2BhI0gLACkII,3135
408
+ pygeai/tests/core/base/data/models.py,sha256=EKSSst7IrWbRc_TzGoFh6PMlubqEMOuPV6DcLHYDjAE,8890
409
+ pygeai/tests/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
410
+ pygeai/tests/core/common/test_config.py,sha256=wmh9mb3KN7LU_EkeYl1NiiARdZKYwultAokUYNGEOMY,8431
411
+ pygeai/tests/core/common/test_decorators.py,sha256=HK3I46fTRZ8AQjVd_Fme_Wvoy2-SIl5GOGhldmd6xRc,2405
412
+ pygeai/tests/core/common/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
+ pygeai/tests/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
414
+ pygeai/tests/core/embeddings/test_clients.py,sha256=dTivcz5E3E1X9ld3GRD9p_-gopYEfAYXqM6d1tAKS8E,10391
415
+ pygeai/tests/core/embeddings/test_managers.py,sha256=KZmtbXxncWatszhkNb9Z8mOWqvQW0mIolJqvBYw8Htg,6001
416
+ pygeai/tests/core/embeddings/test_mappers.py,sha256=3X0jV9bgidE_Nl_iLYrB5rUKDijLimF3Es_HN33er40,4955
417
+ pygeai/tests/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
+ pygeai/tests/core/feedback/test_clients.py,sha256=tF_jkxe-1E0Mm8bNdI7hTDjJj1_MJHrshNFOj7wyLZA,2076
419
+ pygeai/tests/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
+ pygeai/tests/core/files/test_clients.py,sha256=bTgJwQPU-ucoLEsGy0N5CI_VCRynyQhCFzvea-sUH-4,4637
421
+ pygeai/tests/core/files/test_managers.py,sha256=hGRTJoC4hVTVryz2042Ue2PIJ_BEoSwU9IVpqbgwfx0,10811
422
+ pygeai/tests/core/files/test_mappers.py,sha256=FGLsUCCagV8oJOJxg77QPHtWGClJreAn2beBHX6BF3g,4680
423
+ pygeai/tests/core/files/test_models.py,sha256=H54GUf3OWBF1OL0ewwKlavFaKO80OzzfN31lDylsvzw,4297
424
+ pygeai/tests/core/files/test_responses.py,sha256=ppb3P4ME_SowDHZiKSriAZAT0vbI-zbiO9pW9vxNfTU,5222
425
+ pygeai/tests/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
+ pygeai/tests/core/llm/test_clients.py,sha256=KJPMGzNlLPvxbqFGs3g5cQ6Dnr-VrJ6JGWco5LoVGgM,6519
427
+ pygeai/tests/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
428
+ pygeai/tests/core/plugins/test_clients.py,sha256=bGW3e18mEm4qlFuFpiFJ8FcbYU15KYVvOM4XZ9hO5cI,2527
429
+ pygeai/tests/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
430
+ pygeai/tests/core/rerank/test_clients.py,sha256=vUpgoMgcjxbuCNst-6TX1TbwodfBUOeliMMEnLTSGEA,2704
431
+ pygeai/tests/core/rerank/test_managers.py,sha256=qWu_tOXghsPJ8ENbMlcVpPFfxtRQteHmAnhESDRxZUU,4834
432
+ pygeai/tests/core/rerank/test_mappers.py,sha256=yik-bhIViRL06x6VYXRvEoUl5gINhJCXJyDjBgv-g60,2114
433
+ pygeai/tests/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
434
+ pygeai/tests/core/secrets/test_clients.py,sha256=T-gXfBRGHdXjy-YrGrmFQd_K8_SAQ-nLOyymjnVrlLo,12466
435
+ pygeai/tests/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
436
+ pygeai/tests/core/services/test_rest.py,sha256=Gp-P9Eb1vherG1ZeJa_rXtArLNR5oMN4pUWJcyRvRFY,10804
437
+ pygeai/tests/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
438
+ pygeai/tests/core/utils/test_console.py,sha256=EvP0HpvD4bpq2WouH53UYovgh4Gq29xMudiLt-UNyA0,3266
439
+ pygeai/tests/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
440
+ pygeai/tests/dbg/test_debugger.py,sha256=hTqxYaJm_qnl-xQJgtDz95WhC7Aqn-QYnnjG_BzrY7k,23576
441
+ pygeai/tests/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
+ pygeai/tests/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
443
+ pygeai/tests/evaluation/dataset/test_clients.py,sha256=Z1HzG_XXhNz-mDw6uAsWLBBFw4f2tYDXA9FtPVmW_cM,11448
444
+ pygeai/tests/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
445
+ pygeai/tests/evaluation/plan/test_clients.py,sha256=JrLvXJbjhv62sG0ANzsiujBbuhxCjh_QAEJ4yBHLRGc,8887
446
+ pygeai/tests/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
447
+ pygeai/tests/evaluation/result/test_clients.py,sha256=IHbqqmif3bHV66NzRgl4obTi5PNXMorsI2TNYmMz7wo,2679
448
+ pygeai/tests/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
449
+ pygeai/tests/gam/test_clients.py,sha256=ghrhwIZymDOWhYHw-upTLa1eNQY6wvHMO0VaFyvi_n8,8906
450
+ pygeai/tests/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
451
+ pygeai/tests/health/test_clients.py,sha256=6G084xSln0r43HZSGQYBjHLHlfFAPmUx3ESkyJy-FHU,1565
452
+ pygeai/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
453
+ pygeai/tests/integration/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
+ pygeai/tests/integration/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
455
+ pygeai/tests/integration/assistants/rag/test_create_rag.py,sha256=BIt5WkxUIyqV745tLxd48h8Iq3gzPZen7D0hUGCN6-0,2600
456
+ pygeai/tests/integration/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
457
+ pygeai/tests/integration/chat/test_generate_image.py,sha256=grLr46o1Ey9QDXCKvXLDzD7zzE3hoC5H1l86g-fLTxI,5297
458
+ pygeai/tests/integration/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
459
+ pygeai/tests/integration/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
460
+ pygeai/tests/integration/lab/agents/test_agents_list.py,sha256=6VwDwWZA-8CWUB9_I32d8ww1rR2fEkopGO4UoiVU8rs,4175
461
+ pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=PdpZsuw0Ad3W6FIwQRRsZz1ivtQMUuN4JlbTyzdHPZg,14356
462
+ pygeai/tests/integration/lab/agents/test_create_sharing_link.py,sha256=J4_CS8lHO_vrCUzZEXUsJwi8A_0gkHNtXSqkxVPErQI,2686
463
+ pygeai/tests/integration/lab/agents/test_delete_agent.py,sha256=JVMg43gOgPJf5s4TX73d_LeMISUkQfocnIbuKrG9dVs,2499
464
+ pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=sNuh1SHxzbrvTweya1xVSfqapJP2dzY1S-E5Bydi4Mw,3654
465
+ pygeai/tests/integration/lab/agents/test_publish_agent_revision.py,sha256=rA_4ovD1o_gvjA61-SUvPpJ9vuff7KW0J5fX_xI-rx8,5157
466
+ pygeai/tests/integration/lab/agents/test_update_agent.py,sha256=V8959eS6XzN8O8bIJwg-FlavrXbY7DvVI4Mms7ggqjM,11384
467
+ pygeai/tests/integration/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
468
+ pygeai/tests/integration/lab/processes/test_create_process.py,sha256=L6ab-oylHNqLdHYkLEqoHj4exHTSmt46C6t-5ZhEQPc,14313
469
+ pygeai/tests/integration/lab/processes/test_create_task.py,sha256=I5X9mjy1caFXBKS7IFNqBtpbyFefZr73bSeOQA3MF3k,7848
470
+ pygeai/tests/integration/lab/processes/test_delete_process.py,sha256=usCxPl8_g5XzCjzDxRHEzJoptzHuhZTyZ2EVD-zHVf8,4290
471
+ pygeai/tests/integration/lab/processes/test_get_process.py,sha256=SIGj1edQNMNZI1Krd3lFeDDBkfOXgnKJlIAm-33qbJw,7668
472
+ pygeai/tests/integration/lab/processes/test_list_process_instances.py,sha256=A3E5XkkVzczGK-mhanF4F_qQeoXcCnjyLu7dg4fWm8k,3700
473
+ pygeai/tests/integration/lab/processes/test_list_processes.py,sha256=zmjrNMmvUr19eiUcqDqTg78dFJm6yj2f1sMCVU5GRrg,5582
474
+ pygeai/tests/integration/lab/processes/test_publish_process_revision.py,sha256=4W1Kjga-McywnXBtbzDw_hEfPlAyLqahp9Pq15GNIQo,10257
475
+ pygeai/tests/integration/lab/processes/test_update_process.py,sha256=XSPod-91OM2WAkinPRLQR4xznLV_RTS--ETC1B4YYwk,12285
476
+ pygeai/tests/integration/lab/reasoning_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
+ pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py,sha256=QmzjtskmUq0hCrkrwKDEyjgx_kTJcsicIYHOhkWTDY0,2757
478
+ pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py,sha256=yWV1lVicWcYjVItoko8DmQX-cpfy9lGNEZs-okMg3Is,3531
479
+ pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py,sha256=DBhPuWOaCWqEQa2kTOecjmp7CHZT4GaYtGXm6A_Fwms,5783
480
+ pygeai/tests/integration/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
481
+ pygeai/tests/integration/lab/tools/test_create_tool.py,sha256=9gYn8-G2TH3srZSdJ1Px65FQqXNDFp3aHrrYfxA5_8Q,12253
482
+ pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=kRkb2jKlO3k3GmlUdzA5mY8W_x6eUsr6x22p1rFKWUU,2871
483
+ pygeai/tests/integration/lab/tools/test_get_parameter.py,sha256=-S_hQdtKI24c5_t2NwjpWK7KAxByx4cepfVD_kMJd_s,3598
484
+ pygeai/tests/integration/lab/tools/test_get_tool.py,sha256=tC9zOqG0k7o1KuWOQJDzCrU4CeJSfwk1h7krVYsydeo,3449
485
+ pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=sUldh_DInUyUHZq8FZHvt5zaIadUSS1vl7N9aTCnYLg,3732
486
+ pygeai/tests/integration/lab/tools/test_publish_tool_revision.py,sha256=_f16aFxinGibEX7tqA2RlhMwyCEeiLMYLwhMZujOxUw,4577
487
+ pygeai/tests/integration/lab/tools/test_set_parameter.py,sha256=Qqs3kkvZvNhU35hcxSge7oiAVK_7e4YWwC25o9QmBuE,4013
488
+ pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=rEKd06kDVYW_JJeNT08O90U3SaF1FV7tuLYh2Lw8KG0,11700
489
+ pygeai/tests/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
490
+ pygeai/tests/lab/test_managers.py,sha256=ZjUGS9rk9NiGwamacaSRgEWmMIfJ8BecgAfXZtszm_g,29514
491
+ pygeai/tests/lab/test_mappers.py,sha256=2cLSggf168XWFpeZeBR7uJ-8C32TKb7qA91i_9fr_b0,11409
492
+ pygeai/tests/lab/test_models.py,sha256=o6YcKQb_p4CTBGwN0q4JnF1YmC0ZVc2dkfwuN6WZbDw,54442
493
+ pygeai/tests/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
494
+ pygeai/tests/lab/agents/test_clients.py,sha256=cXUl5tNR5UWVujmpY6yvkckUqAXDwmm9nQJ-CyjnJTk,21697
495
+ pygeai/tests/lab/agents/test_mappers.py,sha256=6Q8tPh0S5x1oI8Vl298aaMtJkvKMEx7U0wO4nPwah4s,19117
496
+ pygeai/tests/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
497
+ pygeai/tests/lab/processes/test_clients.py,sha256=B3FBeOl1x08bMtUa271_57odASdv7YvRE-4HE6rlSUs,59825
498
+ pygeai/tests/lab/processes/test_mappers.py,sha256=WuBqfS_jUCEMoQdo-uXPo0K5ct4957M7yGXLyCCz1CM,39959
499
+ pygeai/tests/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
500
+ pygeai/tests/lab/spec/test_loader.py,sha256=Yhyy0zHxH6F1TeFSbop6YgRFwKjRkjFRdzM8aSaAkKk,2414
501
+ pygeai/tests/lab/spec/test_parsers.py,sha256=C0sAqgpVu1CqivQ2VWdqusIaeg8f25Vb9uBbFZO1Sfg,7744
502
+ pygeai/tests/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
503
+ pygeai/tests/lab/strategies/test_clients.py,sha256=lb3gsWHwkZV2BKxrnbvFmkh3frdIJ0tOt1rL6AQpfl8,10557
504
+ pygeai/tests/lab/strategies/test_mappers.py,sha256=gm0G2W-YAuvjn6qFa1O0nkkgTLSA1eIJAt9qE_I7BFU,5783
505
+ pygeai/tests/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
506
+ pygeai/tests/lab/tools/test_clients.py,sha256=8zQ5I1uWawsmnLbiPdbSUaA2Cbe9rxaHqXU7f80O_uo,21044
507
+ pygeai/tests/lab/tools/test_mappers.py,sha256=_wA40iFvSze5-ddJ8WhjF0-IKNE5lwIFTTviVRxy-Wc,7803
508
+ pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
509
+ pygeai/tests/migration/test_strategies.py,sha256=Ql9Nd9Hx_YZkahENC-JKWtUlsm6Gma_F3-ToAtDRAaI,17233
510
+ pygeai/tests/migration/test_tools.py,sha256=PY7NFqvW71R1xKCICmdHNFca_8gTob0QM4yRe-ILvnw,5698
511
+ pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
512
+ pygeai/tests/organization/test_clients.py,sha256=oQfTMTD-Mh3DTH2gcEv8sPynFR-1f3AtpDGxbjzRKzs,29449
513
+ pygeai/tests/organization/test_managers.py,sha256=ybize5OkTp_DFntbyCiNEavClQYt-vzjoqEegjhQJaw,21706
514
+ pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
515
+ pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
516
+ pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
517
+ pygeai/tests/organization/limits/test_clients.py,sha256=D5w5VJK5bke3GEK6NZW9KNDk24tT1aBSWY2YzBBOuCs,28234
518
+ pygeai/tests/organization/limits/test_managers.py,sha256=XPwWxT3l7x--_F9CwZhKsoVQe4Y6a7lDBU494HQc0IY,20445
519
+ pygeai/tests/proxy/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
520
+ pygeai/tests/proxy/test_clients.py,sha256=BVudijLP1TvsSpJW5_0tMVHdeMbOgAEQXgQdhE5qS4k,14054
521
+ pygeai/tests/proxy/test_config.py,sha256=5ZMyW7N-QrlDLG_qSwDGRIPOSOH5iZoe7Ts1GTuJqps,7541
522
+ pygeai/tests/proxy/test_integration.py,sha256=DSKgWrUgjAuEpyDyDaTW4oYpTRqwjEoFWmjbI_mkW7w,11481
523
+ pygeai/tests/proxy/test_managers.py,sha256=KHd45UezpMTq972TR9B7LPHV44ZIsNxA5-uMBR2pETM,12787
524
+ pygeai/tests/proxy/test_servers.py,sha256=U159ZNihpKawXXp1iCydvKuI6R_x0ePsEgFZDQYKBbU,16124
525
+ pygeai/tests/proxy/test_tool.py,sha256=a0BfjOEv6BBHD3BW-E2anIkQM68TuRmDRighKMpTrgc,6142
526
+ pygeai/tests/snippets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
527
+ pygeai/tests/snippets/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
528
+ pygeai/tests/snippets/analytics/get_agent_usage_per_user.py,sha256=2DGYVVDIVHeFLOROBM3CQJPkVcbnLARHd4BB1dI-DWc,457
529
+ pygeai/tests/snippets/analytics/get_agents_created_and_modified.py,sha256=EFc-dDnsTXwLxq7jA22V-31uuXBad40UoR5qCsj6i7c,300
530
+ pygeai/tests/snippets/analytics/get_average_cost_per_request.py,sha256=NCI6_LOXiIc-VqXQsiyh0FeR3INXvuOaRmWn6m2I6nY,257
531
+ pygeai/tests/snippets/analytics/get_overall_error_rate.py,sha256=KodeXdmHrUqs1CIJgf7oLCByERKAc_Mxzq-hXBlE1V4,242
532
+ pygeai/tests/snippets/analytics/get_top_10_agents_by_requests.py,sha256=jqBQ3g_99hmM_oapo4OmjMJU5znxFN3swFQSQyJvEDM,353
533
+ pygeai/tests/snippets/analytics/get_total_active_users.py,sha256=tVmasKp-TwXQazUJwX3afEre5ExBDGbwS3sZl8dmWFA,245
534
+ pygeai/tests/snippets/analytics/get_total_cost.py,sha256=68RjVs08cKK-XyWOx9obnJHobtotI6S_QGpFbj31IY4,227
535
+ pygeai/tests/snippets/analytics/get_total_requests_per_day.py,sha256=bFEtzKTr4DbBUzwT9JM6oM5FqhLvJZOd0jTahJ9h77w,357
536
+ pygeai/tests/snippets/analytics/get_total_tokens.py,sha256=r7Z-mNgXiokbCcuC0J3TSNf2AfxPTeVjDuQ0IU7TO48,346
537
+ pygeai/tests/snippets/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
538
+ pygeai/tests/snippets/assistants/create_chat_assistant.py,sha256=wlYrrjz0KqF3IphnngRq2N2cxqUbhi_REucRy9hgNbg,1593
539
+ pygeai/tests/snippets/assistants/create_text_assistant.py,sha256=ZhD9TevxkpVY-DqTaYbgc7k6ZqnmZkCOIyFnAbVRiRQ,1613
540
+ pygeai/tests/snippets/assistants/file_summarizer_assistant.py,sha256=CkyjHoxi0owmSpwWVNQHoOtu2IL6R4ESdUtKc6VaMEU,5617
541
+ pygeai/tests/snippets/assistants/get_assistant_data.py,sha256=6N--LZwC58WKTXRNMl-nwvKNbgUCwKTCovn75zljgo4,210
542
+ pygeai/tests/snippets/assistants/get_assistant_list.py,sha256=f_XrxhCLtYTOMFQw6COZjnklKuxnEEiO59kjQOqewxM,173
543
+ pygeai/tests/snippets/assistants/send_feedback.py,sha256=VPXGth_IZTV9nx74hm02U5_YMYQt--h8pxM8l9eeC-E,418
544
+ pygeai/tests/snippets/assistants/update_chat_assistant.py,sha256=WkFTlDnegqbfCdmwX5J8Kee6xfZfSYyBmFnZapKj4mU,1921
545
+ pygeai/tests/snippets/assistants/data_analyst/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
546
+ pygeai/tests/snippets/assistants/data_analyst/extend_and_check.py,sha256=0anT580QYloJCp97VRK11hiANzmS7AWquGsVxB4XL0k,3923
547
+ pygeai/tests/snippets/assistants/data_analyst/extend_dataset.py,sha256=55FVT8Z_xA2nnuqv1S0M2AOEewAvUwDTRcbLWO0QL4I,271
548
+ pygeai/tests/snippets/assistants/data_analyst/get_status.py,sha256=XdAXZxy7kWO7k1KcjnvwrPbWIg_K3lh24tQcz_NCNS8,273
549
+ pygeai/tests/snippets/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
550
+ pygeai/tests/snippets/assistants/rag/create_rag_assistant.py,sha256=J9CjoNKVx-QAyhGrQ1jizc4Qi50Jlq9afMVMQY1sIlU,1457
551
+ pygeai/tests/snippets/assistants/rag/delete_al_documents.py,sha256=96_rFDp0EQ6pz0yjH7Us0DFyeNfUt-G1bb3NolTFMW4,177
552
+ pygeai/tests/snippets/assistants/rag/delete_document.py,sha256=CAxLuduAwcXa-J1Eo3UDlDUcTDYDCVr1-VFK8YZE968,235
553
+ pygeai/tests/snippets/assistants/rag/delete_rag_assistant.py,sha256=CxNjl5B_eJ8E9qDPjEpY0O-PEbFOZWMiZRceUVAX8YI,260
554
+ pygeai/tests/snippets/assistants/rag/get_document.py,sha256=o9Oao5bqManQ2HNz3JifscAJocVg0xb1Wcsr4NHBMdo,231
555
+ pygeai/tests/snippets/assistants/rag/get_documents.py,sha256=I1w6R4kUF6ncayNDOvQFB5J6wmDXVx9CLtfkr3mrpDw,234
556
+ pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py,sha256=YNgx-0AuxrOrj5o1jTBmOjbt8vtcddlHdBe0Pb2vyU8,262
557
+ pygeai/tests/snippets/assistants/rag/update_rag_assistant.py,sha256=sOMTENyjCjLmv9ZKzwL3Ub5_nTyu3frZTQx7PbSUxdg,1271
558
+ pygeai/tests/snippets/assistants/rag/upload_document.py,sha256=ZcD6-_vexP1y7xCDzuI8qLtE2W4msf8raD-QBwbgC8s,489
559
+ pygeai/tests/snippets/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
560
+ pygeai/tests/snippets/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
561
+ pygeai/tests/snippets/chat/cancel_request.py,sha256=nPY2M8uF67y3slhdK2dPKsWE5wyiWEo4seTuZnnDJrs,192
562
+ pygeai/tests/snippets/chat/chat_completion.py,sha256=NrLGpU2D5hDRfvVqMYVEq2rjM8BWbMOfUieOq10uDx0,548
563
+ pygeai/tests/snippets/chat/chat_completion_1.py,sha256=ZBTAammVC6aqwU-gpz18y0nBa_t_iAUZsmdv6nU07GM,1000
564
+ pygeai/tests/snippets/chat/chat_completion_2.py,sha256=0TigXTiD0bXuB-qff79rRb_r2qn5AsWc0ea0smcHWNk,1713
565
+ pygeai/tests/snippets/chat/chat_completion_3.py,sha256=UGY0At4HGDCiGT9rAOwwWLWYGo3v6ZVeYgbjWeT5xd8,581
566
+ pygeai/tests/snippets/chat/chat_completion_4.py,sha256=nBOlnCMNUGpJaXvP_2XStR-qHSQIaK6GRLzoKyrOvIg,1726
567
+ pygeai/tests/snippets/chat/chat_completion_streaming.py,sha256=2bb5fVrYknoaRVdH8-DHYuz4NtYgCFf3JyyQBa2F-pQ,1395
568
+ pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py,sha256=VDx5Cgy2smWt1MdRz3BJx290_bv2KaCz8NUsNlC41Fg,314
569
+ pygeai/tests/snippets/chat/get_request_status.py,sha256=5_a7DxotYkE-2_PRIT6iDTRct9KNduQHt4X7DmU_kVo,256
570
+ pygeai/tests/snippets/chat/get_response.py,sha256=H7neNsbmykGv7urk-NP-WjZuTT930qu3aPbXUGTerYA,286
571
+ pygeai/tests/snippets/chat/get_response_complete_example.py,sha256=38WkWgNupzQl6Capo48CHwxZuPlR2DVpPufiYva4PIU,2044
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_instructions.py,sha256=J3jeXN0b4OkwlHEtUrqKzkI_WeahxSi9lZ4X1MvPYxI,593
575
+ pygeai/tests/snippets/chat/get_response_with_metadata.py,sha256=XUPh9tmnxivvWxEwuK12UC6ngfcqmyWPYuh6k_ZE2lo,630
576
+ pygeai/tests/snippets/chat/get_response_with_parallel_tools.py,sha256=xX4gHLtSOWP81yGMcgX0CDkwrtHPlqxePa2nmX6PO2U,1581
577
+ pygeai/tests/snippets/chat/get_response_with_reasoning.py,sha256=t-2l8vl_fzxhXQVJGIDbX-vQ5wfb4W3j__lFHOMXQcA,555
578
+ pygeai/tests/snippets/chat/get_response_with_store.py,sha256=Qxt7Uus3qCr5eJK3ZBovsQFcbFo3mtsXcz9U0ZX_d1U,1008
579
+ pygeai/tests/snippets/chat/get_response_with_tools.py,sha256=kTC0N07jWxrLzK_LuK-Gvpc5bzftoiDoTrCfhPT-uMI,837
580
+ pygeai/tests/snippets/chat/get_response_with_truncation.py,sha256=5yKxA14gsGgX0I7jZdcQ1FOchjtydn-4-bfioXxjGiU,789
581
+ pygeai/tests/snippets/chat/send_chat_request.py,sha256=t9tdSE6YozLvc6o6rMPNbZvXcYTfFCjeS5Fn0qGWPRQ,863
582
+ pygeai/tests/snippets/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
583
+ pygeai/tests/snippets/dbg/basic_debugging.py,sha256=XlT7ooQuaCR7W5O4OXL7VLD8vrcmirR-eKRzwGF-q9g,737
584
+ pygeai/tests/snippets/dbg/breakpoint_management.py,sha256=h21WfZJ3fTSPfWLrw9vln0gW92e6yLFmjEWifvIbZpg,1215
585
+ pygeai/tests/snippets/dbg/file_debugging.py,sha256=UOMIqtjO5afsG87bWVEoh-0V0OIbQLob-6k_m7uctwo,1753
586
+ pygeai/tests/snippets/dbg/module_debugging.py,sha256=Q2ln3r4iYGtg1sgi6itNYYaQvGzum3ZOipFJ1lechm8,2028
587
+ pygeai/tests/snippets/dbg/stack_navigation.py,sha256=A2qcsw4-Zccf84ELd3o6yryhqbfZXMH5V0RWsOnfUXE,1042
588
+ pygeai/tests/snippets/dbg/stepping_example.py,sha256=M4uZI3xMOGQh95Ojgg9zWAX2sZ9AUH91wQm4mRoJ8X0,996
589
+ pygeai/tests/snippets/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
590
+ pygeai/tests/snippets/embeddings/cache_example.py,sha256=ie7JGfsz_tTBY4eBr8f8HQeJ4J5R2Uv9lpStYHM-bEU,1071
591
+ pygeai/tests/snippets/embeddings/cohere_example.py,sha256=Zx3qbblIA3z7_dlKJGAJ_VnmyB35WiOi4IcqMAKwYFg,1420
592
+ pygeai/tests/snippets/embeddings/generate_embeddings.py,sha256=IyIlO6UDGMjT-E9uK91NdYsuWI4fCRGwqlaFr0iUzSc,785
593
+ pygeai/tests/snippets/embeddings/openai_base64_example.py,sha256=OXEnou8tCc8DgrLnsBJBQDv_GROTsh-UpCLzmvqgM-g,938
594
+ pygeai/tests/snippets/embeddings/openai_example.py,sha256=DFnarCeNVaq4Jn1oJSRIRr7ZCn-m1JQe1EbgSEl1DgA,1007
595
+ pygeai/tests/snippets/embeddings/similarity_example.py,sha256=CMuG54YV2s-UwCVHYPle9EoFFv-GsWN9RsQx9sahD6o,1388
596
+ pygeai/tests/snippets/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
597
+ pygeai/tests/snippets/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
598
+ pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py,sha256=OQMO_30VN98PX18qR5yLm693k7VPbX-kumjSRY_0sf8,7034
599
+ pygeai/tests/snippets/evaluation/dataset/create_dataset.py,sha256=aJcH6HMyIG6O0hvsNzLEyLRWywgSkBf2RmjBI-wD6Qg,779
600
+ pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py,sha256=BjjL97sEZ6mhkpStPG-GplPyBVm40wA8IGGDuJqspv4,330
601
+ pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py,sha256=8OSID-i1UZLctmB6hiv0UbUuzCujJ8mYWlbPWw_O34A,590
602
+ pygeai/tests/snippets/evaluation/dataset/create_expected_source.py,sha256=MDh1oyP9k3l0XV7x91c_2xEZA1fDTBp5PfbBaCDZpsw,570
603
+ pygeai/tests/snippets/evaluation/dataset/create_filter_variable.py,sha256=vFhGS7IGGliFs-9ULfaoOhxU-cUqGwBxKundUlEkMjM,546
604
+ pygeai/tests/snippets/evaluation/dataset/delete_dataset.py,sha256=_cz9lOI5y0dF8Ano-nBm9ONE1VAtOExRrUXUMuBACgw,239
605
+ pygeai/tests/snippets/evaluation/dataset/delete_dataset_row.py,sha256=JYsmo9qzz3T-dQ0ymtsGU4BGL9mUFHLjvMUOX2btDvo,290
606
+ pygeai/tests/snippets/evaluation/dataset/delete_expected_source.py,sha256=RmnNvgnQRxpv-hdVH2GXvYrswjkzsXeA3BGS-Dx8AYM,393
607
+ pygeai/tests/snippets/evaluation/dataset/delete_filter_variable.py,sha256=9ubYfg3aOAmeMY_LtrKble9MSd7SWynQfmQWmwtKo50,401
608
+ pygeai/tests/snippets/evaluation/dataset/get_dataset.py,sha256=Pfifj1CK9Z89sUZjuXpfurJpHUqDu67Ss0HoePDwDm8,236
609
+ pygeai/tests/snippets/evaluation/dataset/get_dataset_row.py,sha256=ek33YLcOra30FTc69dQi0rXnrB6KrlzctqiqfIHrKWI,287
610
+ pygeai/tests/snippets/evaluation/dataset/get_expected_source.py,sha256=8r8lq_pOUq-suhuwupkZ1YjTNlnwFzIztKXJQFu2agY,390
611
+ pygeai/tests/snippets/evaluation/dataset/get_filter_variable.py,sha256=u8cihENl0_TqbfHzKjd_J2jSMtBcYg_Tp2LlRJTwpEA,398
612
+ pygeai/tests/snippets/evaluation/dataset/list_dataset_rows.py,sha256=NpJtey25sqIgvP5wXeJF13KdrC0FbjfxSzOCLm2ToY8,239
613
+ pygeai/tests/snippets/evaluation/dataset/list_datasets.py,sha256=WkSjDvlR9lPSwYrJDMWCMzdaMrDbLh4PA3VzDogwP_8,172
614
+ pygeai/tests/snippets/evaluation/dataset/list_expected_sources.py,sha256=yzK9YaQIEIgCIc5Nyv_9zk1x7VZxWy0pKKrP0b2ZUFg,298
615
+ pygeai/tests/snippets/evaluation/dataset/list_filter_variables.py,sha256=RDEbI35qRXe7X-LfikKTUiQdV9fxeH4hvF8mz0Gfato,298
616
+ pygeai/tests/snippets/evaluation/dataset/update_dataset.py,sha256=9ANttq_N_gdrDvnnkTPSapao6X_a_QAC-a1y-7j7hno,381
617
+ pygeai/tests/snippets/evaluation/dataset/update_dataset_row.py,sha256=QlJEM6pmufdDvajx5A502qLTsWx4V8yjJzMJrbYs6UM,542
618
+ pygeai/tests/snippets/evaluation/dataset/update_expected_source.py,sha256=g4znWaQPOUVN1XjX6BpdQs3lSzm2PZ3usmEVq0gTcrs,544
619
+ pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py,sha256=GE4xFDUdQLgofmHh6kHjxDwFwUq_jvdMb10A0E8xZ0I,534
620
+ pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py,sha256=t8HL8MdwaDFSemy-2tZKD2pHhaKNrPr3H7mXH_XtOB4,310
621
+ pygeai/tests/snippets/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
622
+ pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py,sha256=ADcMckwO6mHOjPR5jzQa3xtix2-JS-bKESjg0hIxLwE,350
623
+ pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py,sha256=I7dE8Klp--yv6ek0M8O7XyZOaQbnP0nUxfvYrjV45xM,4529
624
+ pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py,sha256=_J19BpWeYVmHG0hjdq-L9b6ozjko7IfT3pu6UN0eFaI,617
625
+ pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py,sha256=scrXCfLAxrlk8sipfV1K4FPD63frJjLU_tiJeth44LU,552
626
+ pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py,sha256=Wr68Kjk_buOql786DhWjips2vWmvhOkuRslAfUiAhuc,273
627
+ pygeai/tests/snippets/evaluation/plan/delete_plan_system_metric.py,sha256=szgcmVXJqRs8LPuLLnZuVxc5lUxT8s8EU63_mlOwwO0,366
628
+ pygeai/tests/snippets/evaluation/plan/execute_evaluation_plan.py,sha256=fpyQDTV1MK8g_cD48HTL7Zx-DnOG55HI-F71b9fKRSQ,365
629
+ pygeai/tests/snippets/evaluation/plan/get_evaluation_plan.py,sha256=pPLk0BvTSrDHE8gg2GuJRDBZxKA_6EUPpXYqdOo4LP0,262
630
+ pygeai/tests/snippets/evaluation/plan/get_plan_system_metric.py,sha256=Lp42WODU_iZMWrhnHotsgYmOhjuKd0hhZFL8x7dwQ1I,360
631
+ pygeai/tests/snippets/evaluation/plan/get_system_metric.py,sha256=Wz0uNDTboJnvjjVxyr--Gr99ilsUR4HaKI2fiGx2mj8,243
632
+ pygeai/tests/snippets/evaluation/plan/list_evaluation_plans.py,sha256=iFjSAEIXIxqgNckovXgJjyAMjQZGiyZbS_fNgaIg2Ag,180
633
+ pygeai/tests/snippets/evaluation/plan/list_plan_system_metrics.py,sha256=xuzp_U1LrzW7n__GQeJrULoC8BXY0cGMer_kEBCGV3o,282
634
+ pygeai/tests/snippets/evaluation/plan/list_system_metrics.py,sha256=dXSKaEZcbJYMY3GMy7LdnPZ6g5SvHnQn5gxi1XVQZH8,186
635
+ pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py,sha256=HR3WVKHuPd8jZofy-LB3LvOkOcAqcmDc3rzVmGo7iU0,538
636
+ pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py,sha256=3TlDFPi2leLnW5MzB97ubrJNelPBmus_KnxNTINRolY,396
637
+ pygeai/tests/snippets/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
638
+ pygeai/tests/snippets/evaluation/result/complete_workflow_example.py,sha256=FGO6P8KDtc8AtWso1TVEd3KkJelMw_av--Z6ARbfr9M,5471
639
+ pygeai/tests/snippets/evaluation/result/get_evaluation_result.py,sha256=itet30dV9xV_NVYbxTnkL4FPb6heIyGJEsyzVrZ83M0,1070
640
+ pygeai/tests/snippets/evaluation/result/list_evaluation_results.py,sha256=e31Hd0iELVtDsMvK847f3yvMgePO7xqT2MLP62zo-Wc,764
641
+ pygeai/tests/snippets/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
642
+ pygeai/tests/snippets/files/delete_file.py,sha256=ORpPkrL9FllDonCHfoqf6LJUGyPHBoTdm1zpopzqbqU,249
643
+ pygeai/tests/snippets/files/get_file_content.py,sha256=LM8DEmtE4MebEptcR_SUrbMfKuR9zfKfxsY9JspLVvc,255
644
+ pygeai/tests/snippets/files/get_file_data.py,sha256=DGxbH155IcquE0t2uOifJRI6o5JQ8-DT5zQJ9MubIG4,251
645
+ pygeai/tests/snippets/files/get_file_list.py,sha256=NItZBEqzHsS8HQEpAI2yoI5URhZB0F5eAys5Okbled8,138
646
+ pygeai/tests/snippets/files/upload_file.py,sha256=In6XIvIFSbctrqOD8r_WMmGlXYGju4syNrBAZULjFow,280
647
+ pygeai/tests/snippets/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
648
+ pygeai/tests/snippets/gam/gam_access_token.py,sha256=168cZwF3IcAZ3neCdvh1jRxi1acpIDXHuyBZnuWwHQY,3122
649
+ pygeai/tests/snippets/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
650
+ pygeai/tests/snippets/lab/agentic_flow_example_1.py,sha256=ihbGdb5ayvmrO1LPQXIHJe0T3xFesFzam9nSNK5aXt0,13461
651
+ pygeai/tests/snippets/lab/agentic_flow_example_2.py,sha256=uUnl1bpyLje1ArY1B7NzA6iIgMc2VYL1OffCTeZnuws,8251
652
+ pygeai/tests/snippets/lab/agentic_flow_example_3.py,sha256=mnDbSZixOlLoG0OFsMDQLdwQYFCL-HeL35WrOxoHuto,19134
653
+ pygeai/tests/snippets/lab/agentic_flow_example_4.py,sha256=Coda7IoTtheL8hmVZhHVj2-jGYHQqzXsJAXeDDZA4sQ,17434
654
+ pygeai/tests/snippets/lab/assistant_to_agent.py,sha256=RHzGV1uHH4BQNHLDtH1XJyzJWDaeil-cmPke8gKDew0,7587
655
+ pygeai/tests/snippets/lab/crud_ui.py,sha256=3ehUGUyAJSJI820GyEcmT7rTC8KRno_zaLd56qlTSPU,23404
656
+ pygeai/tests/snippets/lab/runner_1.py,sha256=QD92MvC22wpWj6YyrSgpp46EcL0ciac2x1zalS7-GkI,7960
657
+ pygeai/tests/snippets/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
658
+ pygeai/tests/snippets/lab/agents/create_agent.py,sha256=EVyfQzDST9A9KaM0ToZJKlJ7yCbfhpSVkVK_MaUVQPw,1875
659
+ pygeai/tests/snippets/lab/agents/create_agent_2.py,sha256=jd7HKhle_c0S0vI80AejOyLaNqBWkILlRF_znzyCGcQ,1879
660
+ pygeai/tests/snippets/lab/agents/create_agent_edge_case.py,sha256=8dA9giNdsHjFZsIWTlBFk8e1QS3YtbZxklsVu0ZrDrk,1877
661
+ pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py,sha256=FUeBAu_mXA6WSv2RKCJLMg5zVsWcGBrMBmYr0M0uBgc,1522
662
+ pygeai/tests/snippets/lab/agents/create_agent_with_properties.py,sha256=kM64wHZxHdfBCNBV2RQv-4uveHzE61tF3QEi1fAPZcw,1548
663
+ pygeai/tests/snippets/lab/agents/create_agent_without_instructions.py,sha256=jd7HKhle_c0S0vI80AejOyLaNqBWkILlRF_znzyCGcQ,1879
664
+ pygeai/tests/snippets/lab/agents/delete_agent.py,sha256=GfDX667_V3tZMz3vjsbrxoFZggzpwjZYH_PVO2Qjw5s,269
665
+ pygeai/tests/snippets/lab/agents/get_agent.py,sha256=bcqloJHwmNsFjEfri6QIRaTuHzwLtfEqIQPIC5pdkWQ,516
666
+ pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py,sha256=GcL_GAGaVu4AqrGOnrRwXUf_lnNLEx4uvQtTJ5ozLfA,1978
667
+ pygeai/tests/snippets/lab/agents/get_sharing_link.py,sha256=FSXuzbX8Folh1h_6liHeZyA8T21_Y-2Ws9B6-uXatDU,316
668
+ pygeai/tests/snippets/lab/agents/list_agents.py,sha256=gY5RBFUozhkk1uJO6opjkLmKmYpF9Ws-B7Oibhs99qQ,457
669
+ pygeai/tests/snippets/lab/agents/publish_agent_revision.py,sha256=ATbFnnSLYRmFTC4GJJUyBwxKosoTWx661Q9FpuktREM,344
670
+ pygeai/tests/snippets/lab/agents/update_agent.py,sha256=6qCnqkowCCygEl3tv_nvdlwXG8k0-LEloKYQUdIfkrs,1943
671
+ pygeai/tests/snippets/lab/agents/update_agent_properties.py,sha256=Mg_JBH0u4OdxarkTER1ymbHCxO-5qIXS6Fg4GjxyI3g,1435
672
+ pygeai/tests/snippets/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
673
+ pygeai/tests/snippets/lab/processes/create_process.py,sha256=gUZap3dF8Nhw3e9d_yZ9n8PZ2wBsTmJ7sRxgKfsIb80,1322
674
+ pygeai/tests/snippets/lab/processes/create_task.py,sha256=dbkp1lSIL9bmhW3YpwLxZymWHJpd3WW_N0W8z85rA4k,326
675
+ pygeai/tests/snippets/lab/processes/list_processes.py,sha256=-4hQvZNz_9H8QUFcr48kmsrN9iv8qBvfxi-NSqbxSzo,449
676
+ pygeai/tests/snippets/lab/processes/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
677
+ pygeai/tests/snippets/lab/processes/jobs/list_jobs.py,sha256=mhZejsEk6aNLVKP1JcnhZ8tGNJ-Ck4-ITK4CuqldxHM,608
678
+ pygeai/tests/snippets/lab/processes/kbs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
679
+ pygeai/tests/snippets/lab/processes/kbs/create_kb.py,sha256=O8sfgDjWgK7SEvKPM8XqJI_BPvcg-vvemea82BMqhx4,448
680
+ pygeai/tests/snippets/lab/processes/kbs/get_kb.py,sha256=yxq-9nWhIVUefvkbwDkRINiIYF63SfCOZ3FI0OUOx9c,702
681
+ pygeai/tests/snippets/lab/processes/kbs/list_kbs.py,sha256=bAjVbGbMpXswMld03WhjQ00hHY7_0zgI-Y5WTimi1g8,869
682
+ pygeai/tests/snippets/lab/processes/kbs/try_all.py,sha256=rfTOHHn73Qyn5nZi6A_ScroeCvs8lTSAY2H_PFkPwEo,2623
683
+ pygeai/tests/snippets/lab/samples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
684
+ pygeai/tests/snippets/lab/samples/summarize_files.py,sha256=BkLqYW2yhlqf8T3s8vtGSS1Yl4Ff0qWIAtMOzCPCufo,5782
685
+ pygeai/tests/snippets/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
686
+ pygeai/tests/snippets/lab/strategies/create_reasoning_strategy.py,sha256=e4NM2SE06GuIGmff43hOT7ANsSRVZ1fMwq1z37Fjbcw,749
687
+ pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py,sha256=OxxXIRWH_c6RhkjlHdoqnVFnQRv7-1OlYCVivwzbGvg,281
688
+ pygeai/tests/snippets/lab/strategies/list_reasoning_strategies.py,sha256=4pqsW16m-oiv_UUVLgZrkeWZESIfDq2nvcfNC0ZpAGo,485
689
+ pygeai/tests/snippets/lab/strategies/update_reasoning_strategy.py,sha256=OIoHNkdnXbC9GacPgXUG1jKlVizVtWfRI-E8_3xF5b0,889
690
+ pygeai/tests/snippets/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
691
+ pygeai/tests/snippets/lab/tools/create_tool.py,sha256=X8qoL7TOk9Gm7jyk5MvhB5V-TBvog3TETCLNL90Z3HA,1400
692
+ pygeai/tests/snippets/lab/tools/create_tool_edge_case.py,sha256=8w4mvoRTMTyc70yYm2bgV2dr_Rh5QpPJR8VoqX-eY-s,1465
693
+ pygeai/tests/snippets/lab/tools/delete_tool.py,sha256=pnIkYvdP7X7Gx79AMK5MSVliIXdHSpyVwRhH3kgi7ys,452
694
+ pygeai/tests/snippets/lab/tools/get_parameter.py,sha256=dXdlHhoWxzZIYdsvHKnLLT5Vff2Tip46XCoOo-B8Gf0,490
695
+ pygeai/tests/snippets/lab/tools/get_tool.py,sha256=-fkKAE6nflwtLY_Lf6itZJyx_9aanFp-TSDHUzub1AM,477
696
+ pygeai/tests/snippets/lab/tools/list_tools.py,sha256=0kzVtF8jyq8fM8yx5y3vPe3YLW8EWt9Ya3_Nx4HvBQQ,472
697
+ pygeai/tests/snippets/lab/tools/publish_tool_revision.py,sha256=UZn_vYt3ACENnnWCqkwN9k-3Qc29pcGIA9cpghB46i4,307
698
+ pygeai/tests/snippets/lab/tools/set_parameters.py,sha256=TY9VHzU-NmAfQBw07uPsnNVjUyHCy20aP_oDoDOZiMQ,838
699
+ pygeai/tests/snippets/lab/tools/update_tool.py,sha256=quD1XwQRhxrHbrK1W3ptTrS_P-HCge0E9V-BfRJgRBc,1501
700
+ pygeai/tests/snippets/lab/use_cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
701
+ pygeai/tests/snippets/lab/use_cases/c_code_fixer_agent_flow.py,sha256=ksVgahh1GnT61x5OrcDUagUfOQKR2BlW2QTagxfG9lk,10003
702
+ pygeai/tests/snippets/lab/use_cases/create_cli_expert.py,sha256=IqUUpNDJRnq119VYGKCrqeBfmf4YYDGUrRd0_-A9VFg,93674
703
+ pygeai/tests/snippets/lab/use_cases/create_lab_expert.py,sha256=CdiuEBW6CAEGXQwNJ_2tH5xIUyc27audzGzkXSU5xNk,173245
704
+ pygeai/tests/snippets/lab/use_cases/create_tool_headless_web_browser.py,sha256=T1HgeYD8GfV98anO4mC7Q-uLsI5hhGdbB3fOntn-Hdo,6054
705
+ pygeai/tests/snippets/lab/use_cases/create_web_designer.py,sha256=Hpl690wEDX1iCrm1EulZd0CNZDeBsik0GsUEeMvgIvc,10817
706
+ pygeai/tests/snippets/lab/use_cases/create_web_reader.py,sha256=BlQ_JsQ3xsmFI7HwMPlJhFKapTqa3XEQp--c8095wK0,10665
707
+ pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py,sha256=pknGVJY042Fw8mdCerzO1_ZnupC6WjGJPLricXTcS0c,5523
708
+ pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py,sha256=uXosAiO9NTGXSoBbHEJimyl4ngjK7twBxcDhjxGRP_I,5520
709
+ pygeai/tests/snippets/lab/use_cases/update_cli_expert.py,sha256=qRrKbxcJn9tIGUtJh3DlvbD-wrWQAU0F5ma6-aSvAVw,98580
710
+ pygeai/tests/snippets/lab/use_cases/update_lab_expert.py,sha256=-YLKCxoIXV9RNTh5D48qtns3SWmbDojDERqQ92MtyAc,173266
711
+ pygeai/tests/snippets/lab/use_cases/update_web_designer.py,sha256=MRKwJmnh_O_YF7i1zQl--yN7Ib5P7D7y2Keey02pK0A,10620
712
+ pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=BgHpf4kiLVQEc-YrapaiuomqIfzbRzr6kniInAhgO94,11620
713
+ pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py,sha256=a3oj9i2RMnGj-BpDjSthDZVvAzcEyXo9cqygJ1jaVqA,14459
714
+ pygeai/tests/snippets/migrate/__init__.py,sha256=NPFth7aeZ8GMDzRABuEUpm83psblNy6NLdk4ECEaPs0,1326
715
+ pygeai/tests/snippets/migrate/agent_migration.py,sha256=xBADIh9ebuZKaXgzRedO2E-DdsyL6aWdXodDnwfMPTg,3720
716
+ pygeai/tests/snippets/migrate/assistant_migration.py,sha256=2HYvMvFbQxZ1VxcHUQFpmx-DuHC-3eLQj8zTU8DbFSM,2137
717
+ pygeai/tests/snippets/migrate/orchestrator_examples.py,sha256=hNymnQeXQ5dhuO_5rz6eEbCwKHb0S4GPJd3EIUOs15E,6836
718
+ pygeai/tests/snippets/migrate/process_migration.py,sha256=To0n6q1NN0sEr7anUv0U1f2aZeW0fBdqYqwVdCEZurw,2146
719
+ pygeai/tests/snippets/migrate/project_migration.py,sha256=N62oRMAc_lAhgmx8Y_gyTMGj-esSJ-ThyEzn3wZI7XE,1356
720
+ pygeai/tests/snippets/migrate/tool_migration.py,sha256=zUSlkO2LtyNQhE782lYvxbTX7NVg9xiwEaH4mSd-Tys,1998
721
+ pygeai/tests/snippets/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
722
+ pygeai/tests/snippets/organization/add_project_member.py,sha256=TBLKPYAuBO0JyLN9Nqjj1IRMpwYmQ3GqSsOUoQ12gDg,314
723
+ pygeai/tests/snippets/organization/add_project_member_batch.py,sha256=cwQ2N6ev6YbcdiXUX6BitXA_sQUXE9Lw_xb-wTDFSko,1402
724
+ pygeai/tests/snippets/organization/create_project.py,sha256=dS_b0BaevxqVZsnQcOurxwnwPcdPy2oBFFFu2f8z_-o,596
725
+ pygeai/tests/snippets/organization/delete_project.py,sha256=jLzHa_ra-T3XtO-eiegv4667TiKFfkuODsqKC6mIECI,201
726
+ pygeai/tests/snippets/organization/export_request_data.py,sha256=hNHAZaUDKm7fRttEYl14m5VtZRW1HKt62BFk5wip-Gk,166
727
+ pygeai/tests/snippets/organization/get_memberships.py,sha256=PXDUf-ahEZ2gLYmRON-SqBbl5d8zhQU5T3vy_JAiSSU,320
728
+ pygeai/tests/snippets/organization/get_organization_members.py,sha256=bhgtHmOwJG9WXd7oPBm6efpKjv3cV-ezASoqjL-BwtU,226
729
+ pygeai/tests/snippets/organization/get_project_data.py,sha256=bvoBOa-r4kiaVrXV4OeDNreAIA_mifqEU_MAnPpKqjM,228
730
+ pygeai/tests/snippets/organization/get_project_list.py,sha256=Hq0E96BD78iAqAqIfoys5yQAEQp4gYQcJuQKZwy0bhU,219
731
+ pygeai/tests/snippets/organization/get_project_members.py,sha256=2trMrEce7YZvqJVJzsnj5EeUnJCA9Etd8awYqOnmYS8,216
732
+ pygeai/tests/snippets/organization/get_project_memberships.py,sha256=ggiO7NBrfQj6HZFu72P8ZCVXAS6fcA6zKp2w3oU_FFM,294
733
+ pygeai/tests/snippets/organization/get_project_roles.py,sha256=uM5nQbqGLh30B80POmN-ZXrep6Od9NsYOClBI-mr6_I,228
734
+ pygeai/tests/snippets/organization/get_project_tokens.py,sha256=VUgmP-9hCHKAyDSFaru8AwKT-CmdU8dr-Ww8EXTLAJU,205
735
+ pygeai/tests/snippets/organization/update_project.py,sha256=z4a3Etes-bpE2k-8eGTo8E5NN-F4uFQG7tXik2V5hZk,383
736
+ pygeai/tests/snippets/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
737
+ pygeai/tests/snippets/rerank/rerank_chunks.py,sha256=HXXmeC5M-q2FQ4SGOph_1bBzx7bmJbH_021Mz5RVmmo,661
738
+ pygeai/tests/snippets/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
739
+ pygeai/tests/snippets/usage_limit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
740
+ pygeai/tests/snippets/usage_limit/delete_usage_limit.py,sha256=e6PJV8wBgrgVfy4jK7_4y3nQqHOayfTPzKEEOrF3s3E,495
741
+ pygeai/tests/snippets/usage_limit/get_all_usage_limit_from_organization.py,sha256=-z-44d_LKkcaqp1h-qvoczuPy1eF8ecNV64ByHyUzAk,424
742
+ pygeai/tests/snippets/usage_limit/get_usage_limit_from_organization.py,sha256=8kkIc8m5VqIeaqn8uuNWLPyS2a1xb2bPKgCMMllso3w,425
743
+ pygeai/tests/snippets/usage_limit/get_usage_limit_from_project.py,sha256=W_gPBZy0EZBUpgepzWg0AcuYPKA_JxhEX8k9uJpSxDs,447
744
+ pygeai/tests/snippets/usage_limit/set_usage_limit_organization.py,sha256=1nQZwBN4ZMfuNAGQMOjCJ6oBGrghZSTFu5VDMCsJU9Y,615
745
+ pygeai/tests/snippets/usage_limit/set_usage_limit_project.py,sha256=VkCzZ1IG5zypOJAS5sxJXT6fXotPgAFkwYjGdrWH7LY,637
746
+ pygeai/tests/snippets/usage_limit/update_usage_limit_organization.py,sha256=s0430FutlfimE9mNTd5_qZwzpQ9hEgGd9EEK-1Hw4IM,667
747
+ pygeai/tests/snippets/usage_limit/update_usage_limit_project.py,sha256=X7fBlBLfPtv6GArAIYoY7rXD149ggj8grfCmp8Nuamo,689
748
+ pygeai/vendor/a2a/__init__.py,sha256=Bx-wBXva3m3y3wpu4cCTSNwfb1Te_Lo0j-d3Sy7wmDQ,26
749
+ pygeai/vendor/a2a/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
750
+ pygeai/vendor/a2a/types.py,sha256=0TsTlb2BLDh7wLP2rmY6MTk1HnE2itiSXzm-oiYjlN4,40396
751
+ pygeai/vendor/a2a/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
752
+ pygeai/vendor/a2a/auth/user.py,sha256=dXm8GdLstIL_UxZbCvgmWM1f6iZLGmRqmhxh4SnYuCU,788
753
+ pygeai/vendor/a2a/client/__init__.py,sha256=ckm4yUiu9ADUE_dRBicbmGltVG22RUFiBielccFgmsQ,446
754
+ pygeai/vendor/a2a/client/client.py,sha256=5Y4Ji5JeW3ii6JtCAEeP6NrbKvuuWdGTv5Kk_BtUZ-c,15633
755
+ pygeai/vendor/a2a/client/errors.py,sha256=xohFHc1N6iGtonjHfcpvDjMehMDb7S4oepx_w1HZ6Go,990
756
+ pygeai/vendor/a2a/client/helpers.py,sha256=xIqQEE25KaCZr_C9eGUCUzTiOnBjiQmF7hKjMdXSMz4,632
757
+ pygeai/vendor/a2a/server/__init__.py,sha256=UFgpyowx2--wE1dGkRhmgi5rA9TbhZLcjy9BbV6YWfE,60
758
+ pygeai/vendor/a2a/server/context.py,sha256=QkzuGSITA7NhC04dLzrQNi_Aw0YfOceCLpQQQfPCsx4,571
759
+ pygeai/vendor/a2a/server/agent_execution/__init__.py,sha256=FFIBX_AW688X3sPd6nO-noXwISxZHUBa3nGh_-k6158,521
760
+ pygeai/vendor/a2a/server/agent_execution/agent_executor.py,sha256=Izd0yZO9ETOWMcQZ0Ywp01xtnQHiYoeWrk373ttgCgQ,1649
761
+ pygeai/vendor/a2a/server/agent_execution/context.py,sha256=UMcz19TdSdgdb1gFolyIEo8oeUMcmcCal0WZT6ZmHkM,5548
762
+ pygeai/vendor/a2a/server/agent_execution/request_context_builder.py,sha256=y_EUW4gEVkFiI4AyRpOEyse9bGhJr1kA-l2UuOlpBcA,591
763
+ pygeai/vendor/a2a/server/agent_execution/simple_request_context_builder.py,sha256=M0T79q-6oQHUAMIPgN0gxICF1J2t7LoHzOrdV4NUxBU,2923
764
+ pygeai/vendor/a2a/server/apps/__init__.py,sha256=aNezKDto2XxZ0DTcimoTbO20U2_Lmh7adpqafI_vKfk,327
765
+ pygeai/vendor/a2a/server/apps/jsonrpc/__init__.py,sha256=48gl6twv6BQNvsOeLw2kxYMBTKZmH5DT4SV4X0vKLIc,406
766
+ pygeai/vendor/a2a/server/apps/jsonrpc/fastapi_app.py,sha256=Tcz3sAoizrSrCBEsYQmWavkqDtTg6JVDY29xmL0iV-U,3034
767
+ pygeai/vendor/a2a/server/apps/jsonrpc/jsonrpc_app.py,sha256=iwwhFJ7X8egE0dvdwTCmteo1pyoepN5UVHV-rXQVrHI,15259
768
+ pygeai/vendor/a2a/server/apps/jsonrpc/starlette_app.py,sha256=QyXn2jhGGiI_PiWB2O2YJ68iyN3RxtzZbws4U915lBs,4167
769
+ pygeai/vendor/a2a/server/events/__init__.py,sha256=rP2AY8kvO56DN7RZjN6eN5t2u66fKXk9N-j03F3yH28,509
770
+ pygeai/vendor/a2a/server/events/event_consumer.py,sha256=zKU0KDp7CM99LRkyV14pKZeoQQ5W35GqXnYyGqMjS0Q,5491
771
+ pygeai/vendor/a2a/server/events/event_queue.py,sha256=2rTfodW0H3H1cRy4WU5bi1ye_ro7aLUfwfsauZH1Ksw,6044
772
+ pygeai/vendor/a2a/server/events/in_memory_queue_manager.py,sha256=tUJ6Pzp006LW7mAJtim4gHWwj0ZndmoupcPrFGsoigk,2967
773
+ pygeai/vendor/a2a/server/events/queue_manager.py,sha256=NygOM91gs3ZEvqspCOZai63o1AvipDmHZekYJk4L2Zs,1225
774
+ pygeai/vendor/a2a/server/request_handlers/__init__.py,sha256=OEakJ9oaA0k6IifPVQYQOuI5VIVGAyEUxt8o7dhHR9c,555
775
+ pygeai/vendor/a2a/server/request_handlers/default_request_handler.py,sha256=QLEcokADYCohHe8T2q5y7qjOqxp-2Gtg9hgyojq6njU,15405
776
+ pygeai/vendor/a2a/server/request_handlers/jsonrpc_handler.py,sha256=wg5HzCFqEcfvVEf_4_LTXl1GXGaY043Uqas6_O6-4Es,11435
777
+ pygeai/vendor/a2a/server/request_handlers/request_handler.py,sha256=nCHSpr_4bfamY-fVknq7_KYLvWLZytPlar69R09dGaM,4942
778
+ pygeai/vendor/a2a/server/request_handlers/response_helpers.py,sha256=Rrs5D4qOP0te4BuK1H6c82hkOZObTO0CdbFpOsKj67Y,4220
779
+ pygeai/vendor/a2a/server/tasks/__init__.py,sha256=YlUyGs9Y23gCPTZVO_g1EgAYF4PdFD7k_vLJXwmpMZA,646
780
+ pygeai/vendor/a2a/server/tasks/inmemory_push_notifier.py,sha256=fKdgKlSU4qhOoiQNO28ab1HJQ4LbBdi8cROPnLj2Zwk,2231
781
+ pygeai/vendor/a2a/server/tasks/inmemory_task_store.py,sha256=OHPb-K_MQoxIiRd2kx1Y8JyeqDkKlzAe6tbe_x1LstA,1782
782
+ pygeai/vendor/a2a/server/tasks/push_notifier.py,sha256=Z2KYR9c2x50TlA10go2hATlrg9vMHt62vTtWprcqi-w,904
783
+ pygeai/vendor/a2a/server/tasks/result_aggregator.py,sha256=Z4ABZWXj9FyV9XV94I2r4P09ViEt8dx-Z7Dqb6B6LEE,6189
784
+ pygeai/vendor/a2a/server/tasks/task_manager.py,sha256=MQLKPpn9P2isC_AtbOpnhHAzORQaDdvvttDE1pFjfME,8750
785
+ pygeai/vendor/a2a/server/tasks/task_store.py,sha256=wNZie_IdYJu-Lc2CA6q5NCkvqQjPvCp_yRMoXjdsqhE,571
786
+ pygeai/vendor/a2a/server/tasks/task_updater.py,sha256=wiMsqPKP0qyv4Vx9Ve6IKh8HjLiqg-n_QbF4-C0zEQ0,5047
787
+ pygeai/vendor/a2a/utils/__init__.py,sha256=HfbajFahz-mQCqqeZjxmFfDXm_yUqe57HXx7G8hdXQg,831
788
+ pygeai/vendor/a2a/utils/artifact.py,sha256=Xd9gFYfeUgfgfLqFuaAZGMpFR6xM78JDiVE4ZRoK9Aw,1800
789
+ pygeai/vendor/a2a/utils/errors.py,sha256=cPR56MXBRKAdlz4PgE-swIpjAckpCuDXMsiBkzvC-1U,2019
790
+ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfBg2l7w,6364
791
+ pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
792
+ pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
793
+ pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
794
+ pygeai-0.6.0b15.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
795
+ pygeai-0.6.0b15.dist-info/METADATA,sha256=x07OasghCnt3ksTiHmxBCIxSWqOZlWfs5VnHc-lvtGo,7978
796
+ pygeai-0.6.0b15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
797
+ pygeai-0.6.0b15.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
798
+ pygeai-0.6.0b15.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
799
+ pygeai-0.6.0b15.dist-info/RECORD,,