pygeai 0.6.0b3__py3-none-any.whl → 0.6.0b6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. pygeai/_docs/Makefile +20 -0
  2. pygeai/_docs/make.bat +35 -0
  3. pygeai/_docs/source/conf.py +45 -0
  4. pygeai/_docs/source/content/ai_lab/cli.rst +747 -0
  5. pygeai/_docs/source/content/ai_lab/models.rst +1600 -0
  6. pygeai/_docs/source/content/ai_lab/runner.rst +253 -0
  7. pygeai/_docs/source/content/ai_lab/spec.rst +431 -0
  8. pygeai/_docs/source/content/ai_lab/usage.rst +1011 -0
  9. pygeai/_docs/source/content/ai_lab.rst +102 -0
  10. pygeai/_docs/source/content/api_reference/chat.rst +328 -0
  11. pygeai/_docs/source/content/api_reference/embeddings.rst +124 -0
  12. pygeai/_docs/source/content/api_reference/project.rst +552 -0
  13. pygeai/_docs/source/content/api_reference/rag.rst +710 -0
  14. pygeai/_docs/source/content/api_reference.rst +46 -0
  15. pygeai/_docs/source/content/chat_gui.rst +121 -0
  16. pygeai/_docs/source/content/cli.rst +126 -0
  17. pygeai/_docs/source/content/debugger.rst +188 -0
  18. pygeai/_docs/source/content/intro.rst +67 -0
  19. pygeai/_docs/source/content/modules.rst +7 -0
  20. pygeai/_docs/source/content/quickstart.rst +143 -0
  21. pygeai/_docs/source/content/samples.rst +394 -0
  22. pygeai/_docs/source/index.rst +21 -0
  23. pygeai/_docs/source/modules.rst +7 -0
  24. pygeai/_docs/source/pygeai.admin.rst +29 -0
  25. pygeai/_docs/source/pygeai.assistant.data.rst +21 -0
  26. pygeai/_docs/source/pygeai.assistant.data_analyst.rst +29 -0
  27. pygeai/_docs/source/pygeai.assistant.rag.rst +53 -0
  28. pygeai/_docs/source/pygeai.assistant.rst +55 -0
  29. pygeai/_docs/source/pygeai.chat.rst +69 -0
  30. pygeai/_docs/source/pygeai.cli.commands.flows.rst +10 -0
  31. pygeai/_docs/source/pygeai.cli.commands.lab.rst +53 -0
  32. pygeai/_docs/source/pygeai.cli.commands.rst +198 -0
  33. pygeai/_docs/source/pygeai.cli.rst +54 -0
  34. pygeai/_docs/source/pygeai.cli.texts.rst +21 -0
  35. pygeai/_docs/source/pygeai.core.base.rst +53 -0
  36. pygeai/_docs/source/pygeai.core.common.rst +37 -0
  37. pygeai/_docs/source/pygeai.core.embeddings.rst +61 -0
  38. pygeai/_docs/source/pygeai.core.feedback.rst +37 -0
  39. pygeai/_docs/source/pygeai.core.files.rst +61 -0
  40. pygeai/_docs/source/pygeai.core.llm.rst +29 -0
  41. pygeai/_docs/source/pygeai.core.plugins.rst +37 -0
  42. pygeai/_docs/source/pygeai.core.rerank.rst +53 -0
  43. pygeai/_docs/source/pygeai.core.rst +63 -0
  44. pygeai/_docs/source/pygeai.core.secrets.rst +29 -0
  45. pygeai/_docs/source/pygeai.core.services.llm.rst +29 -0
  46. pygeai/_docs/source/pygeai.core.services.rst +37 -0
  47. pygeai/_docs/source/pygeai.core.utils.rst +21 -0
  48. pygeai/_docs/source/pygeai.dbg.rst +21 -0
  49. pygeai/_docs/source/pygeai.evaluation.dataset.rst +29 -0
  50. pygeai/_docs/source/pygeai.evaluation.plan.rst +29 -0
  51. pygeai/_docs/source/pygeai.evaluation.result.rst +29 -0
  52. pygeai/_docs/source/pygeai.evaluation.rst +31 -0
  53. pygeai/_docs/source/pygeai.flows.rst +29 -0
  54. pygeai/_docs/source/pygeai.gam.rst +29 -0
  55. pygeai/_docs/source/pygeai.health.rst +29 -0
  56. pygeai/_docs/source/pygeai.lab.agents.rst +37 -0
  57. pygeai/_docs/source/pygeai.lab.processes.rst +37 -0
  58. pygeai/_docs/source/pygeai.lab.rst +65 -0
  59. pygeai/_docs/source/pygeai.lab.spec.rst +29 -0
  60. pygeai/_docs/source/pygeai.lab.strategies.rst +37 -0
  61. pygeai/_docs/source/pygeai.lab.tools.rst +37 -0
  62. pygeai/_docs/source/pygeai.man.man1.rst +10 -0
  63. pygeai/_docs/source/pygeai.man.rst +18 -0
  64. pygeai/_docs/source/pygeai.migration.rst +29 -0
  65. pygeai/_docs/source/pygeai.organization.limits.rst +45 -0
  66. pygeai/_docs/source/pygeai.organization.rst +61 -0
  67. pygeai/_docs/source/pygeai.proxy.rst +53 -0
  68. pygeai/_docs/source/pygeai.rst +33 -0
  69. pygeai/_docs/source/pygeai.tests.admin.rst +21 -0
  70. pygeai/_docs/source/pygeai.tests.assistants.rag.rst +37 -0
  71. pygeai/_docs/source/pygeai.tests.assistants.rst +45 -0
  72. pygeai/_docs/source/pygeai.tests.chat.rst +45 -0
  73. pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst +37 -0
  74. pygeai/_docs/source/pygeai.tests.cli.commands.rst +149 -0
  75. pygeai/_docs/source/pygeai.tests.cli.docker.rst +10 -0
  76. pygeai/_docs/source/pygeai.tests.cli.rst +30 -0
  77. pygeai/_docs/source/pygeai.tests.core.base.data.rst +29 -0
  78. pygeai/_docs/source/pygeai.tests.core.base.rst +37 -0
  79. pygeai/_docs/source/pygeai.tests.core.common.data.rst +10 -0
  80. pygeai/_docs/source/pygeai.tests.core.common.rst +37 -0
  81. pygeai/_docs/source/pygeai.tests.core.embeddings.rst +21 -0
  82. pygeai/_docs/source/pygeai.tests.core.feedback.rst +21 -0
  83. pygeai/_docs/source/pygeai.tests.core.files.rst +45 -0
  84. pygeai/_docs/source/pygeai.tests.core.llm.rst +21 -0
  85. pygeai/_docs/source/pygeai.tests.core.rerank.rst +37 -0
  86. pygeai/_docs/source/pygeai.tests.core.rst +38 -0
  87. pygeai/_docs/source/pygeai.tests.core.secrets.rst +21 -0
  88. pygeai/_docs/source/pygeai.tests.core.services.rst +21 -0
  89. pygeai/_docs/source/pygeai.tests.core.utils.rst +21 -0
  90. pygeai/_docs/source/pygeai.tests.dbg.rst +21 -0
  91. pygeai/_docs/source/pygeai.tests.gam.rst +21 -0
  92. pygeai/_docs/source/pygeai.tests.health.rst +21 -0
  93. pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst +21 -0
  94. pygeai/_docs/source/pygeai.tests.integration.assistants.rst +18 -0
  95. pygeai/_docs/source/pygeai.tests.integration.chat.rst +21 -0
  96. pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst +69 -0
  97. pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst +69 -0
  98. pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst +37 -0
  99. pygeai/_docs/source/pygeai.tests.integration.lab.rst +21 -0
  100. pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst +77 -0
  101. pygeai/_docs/source/pygeai.tests.integration.rst +20 -0
  102. pygeai/_docs/source/pygeai.tests.lab.agents.rst +29 -0
  103. pygeai/_docs/source/pygeai.tests.lab.processes.rst +29 -0
  104. pygeai/_docs/source/pygeai.tests.lab.rst +49 -0
  105. pygeai/_docs/source/pygeai.tests.lab.spec.rst +29 -0
  106. pygeai/_docs/source/pygeai.tests.lab.strategies.rst +29 -0
  107. pygeai/_docs/source/pygeai.tests.lab.tools.rst +29 -0
  108. pygeai/_docs/source/pygeai.tests.migration.rst +29 -0
  109. pygeai/_docs/source/pygeai.tests.organization.limits.rst +29 -0
  110. pygeai/_docs/source/pygeai.tests.organization.rst +45 -0
  111. pygeai/_docs/source/pygeai.tests.proxy.rst +61 -0
  112. pygeai/_docs/source/pygeai.tests.rst +31 -0
  113. pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst +37 -0
  114. pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst +85 -0
  115. pygeai/_docs/source/pygeai.tests.snippets.assistants.rst +78 -0
  116. pygeai/_docs/source/pygeai.tests.snippets.chat.rst +85 -0
  117. pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst +21 -0
  118. pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst +10 -0
  119. pygeai/_docs/source/pygeai.tests.snippets.extras.rst +37 -0
  120. pygeai/_docs/source/pygeai.tests.snippets.files.rst +53 -0
  121. pygeai/_docs/source/pygeai.tests.snippets.gam.rst +21 -0
  122. pygeai/_docs/source/pygeai.tests.snippets.lab.agents.rst +93 -0
  123. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.jobs.rst +21 -0
  124. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.kbs.rst +45 -0
  125. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.rst +46 -0
  126. pygeai/_docs/source/pygeai.tests.snippets.lab.rst +82 -0
  127. pygeai/_docs/source/pygeai.tests.snippets.lab.samples.rst +21 -0
  128. pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst +45 -0
  129. pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst +85 -0
  130. pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst +117 -0
  131. pygeai/_docs/source/pygeai.tests.snippets.migrate.rst +10 -0
  132. pygeai/_docs/source/pygeai.tests.snippets.organization.rst +69 -0
  133. pygeai/_docs/source/pygeai.tests.snippets.rag.rst +85 -0
  134. pygeai/_docs/source/pygeai.tests.snippets.rerank.rst +21 -0
  135. pygeai/_docs/source/pygeai.tests.snippets.rst +30 -0
  136. pygeai/_docs/source/pygeai.tests.snippets.secrets.rst +10 -0
  137. pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst +77 -0
  138. pygeai/cli/commands/base.py +9 -9
  139. pygeai/cli/commands/docs.py +2 -2
  140. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/METADATA +1 -1
  141. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/RECORD +145 -8
  142. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/WHEEL +0 -0
  143. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/entry_points.txt +0 -0
  144. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/licenses/LICENSE +0 -0
  145. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,141 @@
1
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=3B8QPySCAqNFLxKYdiojBTwJE8pAyL7__TPoYAVT_is,1239
5
+ pygeai/_docs/source/index.rst,sha256=Koz3zjIuEJIsHM7V0LVIPXF2kTtOXfzMKZ1apXQmYmw,665
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.assistant.data.rst,sha256=CObeMQ4LO1NCIfg_FBkbdJAYwMfxkKLgMz1iXIonAf4,385
9
+ pygeai/_docs/source/pygeai.assistant.data_analyst.rst,sha256=r5q_HYl5dlb0_z2Yh8_dTmkgZIWo2Al0IJ1i-ZSEDcA,645
10
+ pygeai/_docs/source/pygeai.assistant.rag.rst,sha256=Y-JNIBd2sGwX_qclqmDKMSQHbniZhiFe_1FeG5NkCIk,1080
11
+ pygeai/_docs/source/pygeai.assistant.rst,sha256=UM1rs3EZoMoF16XHO5sycwsMqWB9ci1jZPBcO8GCst0,985
12
+ pygeai/_docs/source/pygeai.chat.rst,sha256=cW35lNsOImawmYiriUwSGjJITGnx0Kxa_wYJRnACwvw,1189
13
+ pygeai/_docs/source/pygeai.cli.commands.flows.rst,sha256=_oPTa5gn3jtsYo8SSjr5LWp3hHkOcVXa-9sOXwST8Ik,198
14
+ pygeai/_docs/source/pygeai.cli.commands.lab.rst,sha256=48iA3vbixQBMmBmnthf_Jy7jJhHyozhXFXNki-zmOTY,1106
15
+ pygeai/_docs/source/pygeai.cli.commands.rst,sha256=PLxTWp_f0dQyDmyTsqMAjdGLOU2Czx9hWJ5Eo00BDbo,4072
16
+ pygeai/_docs/source/pygeai.cli.rst,sha256=SXVkOJhUZFrcvJJMtqUlsAFsqoIa2mF96fy-L5rEPWw,863
17
+ pygeai/_docs/source/pygeai.cli.texts.rst,sha256=z2dfcJAwQPLkfDJxTp7iyGJ5KijBhC7LcRlbdSB3bqw,346
18
+ pygeai/_docs/source/pygeai.core.base.rst,sha256=IKexE5NtfxU_oot-y4dwKGPkvTjyuFD8B4LE_dPXEJw,1002
19
+ pygeai/_docs/source/pygeai.core.common.rst,sha256=TsSyb22e_zwO7MDwBLu8zayERe0GDp2m8xa05KWoEss,716
20
+ pygeai/_docs/source/pygeai.core.embeddings.rst,sha256=9fXh2IEcNUubbEu1azDLE-_e_s9JZ-uxH2VW8jZaA5Q,1298
21
+ pygeai/_docs/source/pygeai.core.feedback.rst,sha256=s7qOl5JivMMSlrPhHv4owdgzQCK6MczSkupU8bkPwwQ,728
22
+ pygeai/_docs/source/pygeai.core.files.rst,sha256=vnjnZTNZOj9R48Vu9wUrmly1HKXuP-EGeZ6GXMuVrhg,1193
23
+ pygeai/_docs/source/pygeai.core.llm.rst,sha256=RRBjpuhC9CP8rV8xPa-69mVLHztnwTm4C28Se-XVr-4,513
24
+ pygeai/_docs/source/pygeai.core.plugins.rst,sha256=ZmoFGJwdCQfviUkS52UuOdCMWAaZuFRDAQ0E5N51XiE,716
25
+ pygeai/_docs/source/pygeai.core.rerank.rst,sha256=goeW2OSxqUkllV0hZS9CG92yBr53FhRJtsDmBI_s1Bw,1041
26
+ pygeai/_docs/source/pygeai.core.rst,sha256=OsOdfmGmIeto1DaYMXMlYct0s-dOidn-_ERW0nmYB30,1076
27
+ pygeai/_docs/source/pygeai.core.secrets.rst,sha256=Or8sbF3-tDQNVw7SGAqv06Vx4jGVj9sZWX7HAs9YpTc,549
28
+ pygeai/_docs/source/pygeai.core.services.llm.rst,sha256=stTaWu4W0knoQEHHVyptlFa41HR-Gt3oI8agxeuvA3U,588
29
+ pygeai/_docs/source/pygeai.core.services.rst,sha256=1lTLW85kOVgm-dtKdltC2t0ao5MpIxuwBOfaiC3ymI8,630
30
+ pygeai/_docs/source/pygeai.core.utils.rst,sha256=SA2qunmsJHBA4MsYXLdzT7xcsrSNuz9tiKAAOvDIPuU,361
31
+ pygeai/_docs/source/pygeai.dbg.rst,sha256=mg6bsMmAREoCFuow8VyU2JZ680tMbzc9hemqBqj5SpY,322
32
+ pygeai/_docs/source/pygeai.evaluation.dataset.rst,sha256=vPuc2d_5zt9WAc29lq50uzWnJgSRoQpHEZLWpLIYV1s,603
33
+ pygeai/_docs/source/pygeai.evaluation.plan.rst,sha256=Eqdeu9e-lPoiMIn5eIjN5vi8aUQYGYHG3ilBocag-zU,576
34
+ pygeai/_docs/source/pygeai.evaluation.result.rst,sha256=vwdKbPMDv6eLGIhf_vMC9IXospAy8SI3lLaoofyI5js,594
35
+ pygeai/_docs/source/pygeai.evaluation.rst,sha256=Hp5n5cPanHMgcNHcDEA8TCpKmeMWeVfciWaHN219dcQ,500
36
+ pygeai/_docs/source/pygeai.flows.rst,sha256=O-6IRp34dbvCoK4NJr-GbEoszmCznchydJ6ZS1DZSp4,483
37
+ pygeai/_docs/source/pygeai.gam.rst,sha256=kELcOqgLTEa-oGUAyADVJ4HgFeK5SxsIq097oln_LA8,468
38
+ pygeai/_docs/source/pygeai.health.rst,sha256=_B3YF5GVLy0DPJvkKuuslyaJabyuODVYbP-wzINjR-I,495
39
+ pygeai/_docs/source/pygeai.lab.agents.rst,sha256=sTCRHYR5tY5d5wBraEh0eCtBzcIgAr5wKvxv1YQltXU,695
40
+ pygeai/_docs/source/pygeai.lab.processes.rst,sha256=tiyk4CJ3pmdXQstIP1tOciA6g8HmYVNU9rftvKf04mE,731
41
+ pygeai/_docs/source/pygeai.lab.rst,sha256=XijCrP43uvLyavHl8F3QYNj3TmDJK6B8W9qt4h8pjFo,1062
42
+ pygeai/_docs/source/pygeai.lab.spec.rst,sha256=GHj2FFL_Be8SWn46jKMJP2YGzxKffsdQufoktbvUNz8,504
43
+ pygeai/_docs/source/pygeai.lab.strategies.rst,sha256=NhUjKJdHe_URD-Rt2vzX6t8Zv8_Vf7Zoez6xOibfgxo,743
44
+ pygeai/_docs/source/pygeai.lab.tools.rst,sha256=qvxXbNZJJ37xXrCymcper2qRyvopy4OAeACi52gB0YI,683
45
+ pygeai/_docs/source/pygeai.man.man1.rst,sha256=Sl54uhGh5ytMTnfIG_1Lzera87fWWXzAdDdZq_g5-Lw,168
46
+ pygeai/_docs/source/pygeai.man.rst,sha256=szasyjrZUBUbdBAeWBSOGgSEOdDC3EknO-Qi4dxmnDQ,228
47
+ pygeai/_docs/source/pygeai.migration.rst,sha256=LmccQTJ1idwY37lg8-29pTm6szsgaSbYmOvYqHm1Q1E,519
48
+ pygeai/_docs/source/pygeai.organization.limits.rst,sha256=5rjKRtaXl_FUQss_UuQjws-kej97IbMqvS9hks_3fxg,997
49
+ pygeai/_docs/source/pygeai.organization.rst,sha256=91Fby-1S78q0VJ8Yt5iGJ2M2brqtXqH3vlNKJj63dk4,1154
50
+ pygeai/_docs/source/pygeai.proxy.rst,sha256=XgZwF0OmOUJa_AasledYKAIH3JPIubOUEnO4SIf0LKk,918
51
+ pygeai/_docs/source/pygeai.rst,sha256=gZf-JUHsh3v-W0821P_uw_9A1Eh34d5ouyjs7Fb-rP0,462
52
+ pygeai/_docs/source/pygeai.tests.admin.rst,sha256=z3vaTaKOVea_zmgQwKRZSD-HZQ6dC3B8GEXY6DD9kEw,384
53
+ pygeai/_docs/source/pygeai.tests.assistants.rag.rst,sha256=aTM3TccZgohUBwVqJx7lbVQsH_p_d5LvUCKMBV4UjeE,857
54
+ pygeai/_docs/source/pygeai.tests.assistants.rst,sha256=JlPdf3soviMwSH6HAXjdgI7qFsqN5GL_NQLJjnQ8bYI,902
55
+ pygeai/_docs/source/pygeai.tests.chat.rst,sha256=xiTEjTTXU0hLeIaNx32u30HuqDDlHuBN8oOD2GaY-yA,897
56
+ pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst,sha256=Ph5mvvnfn7qTDtbgU3ScxVzZGcRqvguVpUzboTnEiig,871
57
+ pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=ei0h4KbpKEgIAGsKG3MdrdG6LFjBkm8BEIHv-dasi8Q,3600
58
+ pygeai/_docs/source/pygeai.tests.cli.docker.rst,sha256=UM4B_DAlsak4hAGFH-vjNiif0U6SDXxeYg_LqG7f9N4,192
59
+ pygeai/_docs/source/pygeai.tests.cli.rst,sha256=WrsiBUPkIkxLX8ZepttNZaG8R6BAnTAHWFVaap-xipg,484
60
+ pygeai/_docs/source/pygeai.tests.core.base.data.rst,sha256=SsV7Q4nT37voKqp1BDbP7Rub29jVarIPbrNZktQb5Jg,612
61
+ pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ZtDGK2cWTSL9Ds3e2mLgNA25LrxRSa8z3gz2sJrs980,688
62
+ pygeai/_docs/source/pygeai.tests.core.common.data.rst,sha256=-oOOj8QUOJRw6y9wk31e6ZyS-2kTBJC8PNbLh0GA16c,210
63
+ pygeai/_docs/source/pygeai.tests.core.common.rst,sha256=07o4RYKqCf757VTBfySjHkfyvHUXY1oMVD2lq2r0N0U,717
64
+ pygeai/_docs/source/pygeai.tests.core.embeddings.rst,sha256=8_kn4Dh6j2-7CK_9qZwJ6I3Fs2iTOrIv3FRC8Zx7dfQ,444
65
+ pygeai/_docs/source/pygeai.tests.core.feedback.rst,sha256=9H40ALCDjSEMRz9wABan1WyEroubvsPf4rvdqpIfTCU,432
66
+ pygeai/_docs/source/pygeai.tests.core.files.rst,sha256=PzVUQXZe0fZZQsqZFGp1OX6pD5r_wwOCIsYxY5OQbAA,1017
67
+ pygeai/_docs/source/pygeai.tests.core.llm.rst,sha256=y9sVhRP7V0CfwjRrbb1NC_ui7EUGA43McfbjqmeUPMk,402
68
+ pygeai/_docs/source/pygeai.tests.core.rerank.rst,sha256=y4HrgcgimfUHRrcYKLGc1jtituy6nQAl78f7pgI_BAI,827
69
+ pygeai/_docs/source/pygeai.tests.core.rst,sha256=kS7v6qr5TgfmX9J8g16OFikrXkCuTtQ3H5TWEDm9E6Q,719
70
+ pygeai/_docs/source/pygeai.tests.core.secrets.rst,sha256=FuE6pZvrM5rsHsIOVc9m4YcW3Zu8rM02NQzL_XsR3Rc,426
71
+ pygeai/_docs/source/pygeai.tests.core.services.rst,sha256=4xL4sdjTv1lHcO9jgloXKyjYxN2xUzGcEkD-UMFyE2g,423
72
+ pygeai/_docs/source/pygeai.tests.core.utils.rst,sha256=wJtGlLlQF6p3E4ywmSJr5dMYZsYGudIRwqVWNW8Omg8,414
73
+ pygeai/_docs/source/pygeai.tests.dbg.rst,sha256=9hsXIno_7hC6oLjVG7FPhlHAJw993ybYtXi52GiiCVI,375
74
+ pygeai/_docs/source/pygeai.tests.gam.rst,sha256=Rl2kATXXoS-JYYwMbSgxEd8bbNLpyh5hKq9OtKUAVyE,372
75
+ pygeai/_docs/source/pygeai.tests.health.rst,sha256=1jSPXAOcrMaP0bsyD0GcF6eqV-Kf_mr1yF8yriDbRnA,390
76
+ pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst,sha256=6ln50eZnW0kP3GUN4EaDkMV3K6YEKQ8S-jkTy3ecygs,521
77
+ pygeai/_docs/source/pygeai.tests.integration.assistants.rst,sha256=L7uS5CnA7skmPQf3Cdec7ZAwGTN_v2gXuHwQGZZU7Xo,327
78
+ pygeai/_docs/source/pygeai.tests.integration.chat.rst,sha256=DTIYNCzxLxwrCls8xhuhSGSFMDEi5FgrCu5Kwr8MLw8,473
79
+ pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst,sha256=LlMEyt0ATVMMSN9ohnhXtSovhNFw8UIxjL3jBezD7ic,2058
80
+ pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst,sha256=2NOAKNEKkjsYHHLprCK7mowBca4X_DYQWka_-rzHau4,2178
81
+ pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst,sha256=3fjZzzFCSJ5p8p0PHWo3c3dyPqFzdcnIH_aoTq-MUpg,1297
82
+ pygeai/_docs/source/pygeai.tests.integration.lab.rst,sha256=VvG17L2E9g8GVZsR_ImG437Qsfk0-bWKMjVojBlIwds,435
83
+ pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst,sha256=5TCpyK_IMhPgIUldvupE6XAnAZQdVxbqXupGYZpwYmE,2248
84
+ pygeai/_docs/source/pygeai.tests.integration.rst,sha256=9vKTwjgBazu6pJesf2cbkc-DOl8UiMEi2KJjD78L3BM,355
85
+ pygeai/_docs/source/pygeai.tests.lab.agents.rst,sha256=bGXltVdLy1WZup4uY0M_y-9jzzirs9q9mbV5Psx9ZHE,613
86
+ pygeai/_docs/source/pygeai.tests.lab.processes.rst,sha256=_BNmkKra0oq_bnmTJbvl1KHWLJRs2TBhFixLTgmkoMw,640
87
+ pygeai/_docs/source/pygeai.tests.lab.rst,sha256=GKUNimTp8kaOKRjmARm9m7zTBCs4B1HG3hGt-BoCLoc,923
88
+ pygeai/_docs/source/pygeai.tests.lab.spec.rst,sha256=18ef1SHmIaNLTqcJGw1PmAtHJ3D0GKblqmS4l496NQI,592
89
+ pygeai/_docs/source/pygeai.tests.lab.strategies.rst,sha256=phIZJib0m8WVv3klnVe-P5DRL_2zMh0m8ybPfbbFhuE,649
90
+ pygeai/_docs/source/pygeai.tests.lab.tools.rst,sha256=0r74wroe80KosW60hGEYUzM-gAbvoJeLcoUmkIw03Q0,604
91
+ pygeai/_docs/source/pygeai.tests.migration.rst,sha256=RrOUG2jhf9ZPmhrj8sRbzoV8f3o45bzLk8x1vfIeasQ,607
92
+ pygeai/_docs/source/pygeai.tests.organization.limits.rst,sha256=TQGsWAEkfgblivHoYUZ7VBgNDEo7B1SbocYPdX_LWqI,697
93
+ pygeai/_docs/source/pygeai.tests.organization.rst,sha256=iQPw3NON6JFZSfTUhehc6CBEEsLy1pJHLBphMie1Yko,931
94
+ pygeai/_docs/source/pygeai.tests.proxy.rst,sha256=k3_wXvaRaXGEo77ETI-TD0n7f9hCgAVmEGP_Osw35vs,1307
95
+ pygeai/_docs/source/pygeai.tests.rst,sha256=eyU6QLRLB3DdIYAaOo_Jfn4Niq2Mj69yv8RaInMSXK4,539
96
+ pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst,sha256=9BhQEuja2fubrvK96gwfC1kP9bpHIS4KyWm9Pww8wKc,1098
97
+ pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst,sha256=MJjQOlUuJRHrVZGP2JXx0HqM-WfdxQN_k0fLaH4ihPo,2552
98
+ pygeai/_docs/source/pygeai.tests.snippets.assistants.rst,sha256=HSsTyB8Vw-m_9ZU_ukhMq-BPWoTvq8zRLqk6yTOhnLM,2140
99
+ pygeai/_docs/source/pygeai.tests.snippets.chat.rst,sha256=yIpbOH7XXrGcTkhT9pNiTGb66QMJ09mNWx36qUoG-Jw,2257
100
+ pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst,sha256=heK_JqYIpYr-Sz90PGhE0R5EgrllsURApyeqcgYuL2M,489
101
+ pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst,sha256=xktMl4wbfdZpBFwXS5nnpJqJJdByPfkvE4ntzwpShwU,219
102
+ pygeai/_docs/source/pygeai.tests.snippets.extras.rst,sha256=XUrOZUU24z5NrgX5h-FHQvfl1YsqFcaSNTjMRRgcwWQ,819
103
+ pygeai/_docs/source/pygeai.tests.snippets.files.rst,sha256=gx-f28YqxMRkuCoNexEpJEUcAbdXT1gDbouXYJZo0pI,1300
104
+ pygeai/_docs/source/pygeai.tests.snippets.gam.rst,sha256=0c1zqQVNLKyklJnZ9sEHsfjTDVf_v658ZX2Iyh8VFco,440
105
+ pygeai/_docs/source/pygeai.tests.snippets.lab.agents.rst,sha256=hP-NzSfM0NtyXMJmhiZ7wGQuR2KLLNrT8NwcVF--dRI,2645
106
+ pygeai/_docs/source/pygeai.tests.snippets.lab.processes.jobs.rst,sha256=12peXKT3abH8_L8h7HNEfab5h8uX60bRjpdVd9Qws9g,507
107
+ pygeai/_docs/source/pygeai.tests.snippets.lab.processes.kbs.rst,sha256=pt-fr9vO-zOGdM1Bx20oY_4f85262Uq6fy_JlEhcJNA,1197
108
+ pygeai/_docs/source/pygeai.tests.snippets.lab.processes.rst,sha256=U5ReDbjjWP22zKPYIZlAl6W3rk9TQHyOA_9cyqWL8aQ,1108
109
+ pygeai/_docs/source/pygeai.tests.snippets.lab.rst,sha256=a73MGdOmnecAcOWX_SDy-tRbApLBot-GvwNQw1APvuY,2067
110
+ pygeai/_docs/source/pygeai.tests.snippets.lab.samples.rst,sha256=I7es8UpNuPQB_E08IxoSuT7GFG-mxpQdfRVtcpUHzZU,483
111
+ pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst,sha256=hSZDlOoBFX9CIjIZdTcQWYytobOUyLA9Iy3JZ6sQQQo,1361
112
+ pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst,sha256=Z5sN-ocA04__NI_UHJZ8Cy-LbAMj7fcHiac49Gg9P-k,2288
113
+ pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst,sha256=56o_i5rP3eLyrFmiJjnJ80nSC5awhoZ4G-1-MEhjn2M,3716
114
+ pygeai/_docs/source/pygeai.tests.snippets.migrate.rst,sha256=Z9WmOIr1MFCpDP72QD02yI7M4Z7a6QBF949ONYQDJ4E,210
115
+ pygeai/_docs/source/pygeai.tests.snippets.organization.rst,sha256=jxg07dF8TX11I-d26cW7OVup9Q52e_Xrj_PZNg6ka-c,1961
116
+ pygeai/_docs/source/pygeai.tests.snippets.rag.rst,sha256=v_FFSm6fVE4CVOW79HI8piz8MOYa8PEvm28WoPpQGRo,2222
117
+ pygeai/_docs/source/pygeai.tests.snippets.rerank.rst,sha256=RwkOt3kGBsoUtiqmA3rMeMDMkZ-idMm08VWnMzo3w2c,447
118
+ pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=rxJlKKzRKEf7E3BOttfYFPGCDSYM2Ev9EZW06_KrxsE,674
119
+ pygeai/_docs/source/pygeai.tests.snippets.secrets.rst,sha256=kWSmN3I-MuhpeabIskpz7m3YpPBlFrYA73mt5m5zk-E,210
120
+ pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst,sha256=S2oNQdHLRyNdfBijqJMDl_nyq094M8yy9Fu1OyeDjo8,2517
121
+ pygeai/_docs/source/content/ai_lab.rst,sha256=t0NSjKhjY8snu9VxgY4PE8PYz4LtumyMnhhbxmOR1oY,11519
122
+ pygeai/_docs/source/content/api_reference.rst,sha256=rVwWzcE4nX2o4JLfy6AJae0WuMSsvZ8qEX7JJPYBvdw,2459
123
+ pygeai/_docs/source/content/chat_gui.rst,sha256=0nnQFh_m4V-TqbeZXTKYMzU6gmPTOwRHrkqaZ16098k,6805
124
+ pygeai/_docs/source/content/cli.rst,sha256=roIhLfeb0XAspXLbivHGSUMi-83RZ59rTGJbSfNMmt4,3178
125
+ pygeai/_docs/source/content/debugger.rst,sha256=FVe3CcroaOH8HMpnT5oHdcJaEDNhLi7SlCBW-wh0RG8,7593
126
+ pygeai/_docs/source/content/intro.rst,sha256=nRoIXypN6xGN9kaqTJM5HrhE0LPn7bnk0CDFeRixito,4532
127
+ pygeai/_docs/source/content/modules.rst,sha256=qaCQyx8SIDMG6EA2i6jo3z_U2XL2fw1ycRsMBjgDU5s,83
128
+ pygeai/_docs/source/content/quickstart.rst,sha256=bsz8ZwTJTWlznnPNq3XJJuOXuV63-7UKqur2YHGD8No,4159
129
+ pygeai/_docs/source/content/samples.rst,sha256=BfRzjBDVgiegbW1OPczZvq1LvS-aHGCH-zDmbX6mNPI,12488
130
+ pygeai/_docs/source/content/ai_lab/cli.rst,sha256=4ZhP4XfYYREWaVpfU4jEWw4SHpJECtFC7KH1KoCSj9M,24683
131
+ pygeai/_docs/source/content/ai_lab/models.rst,sha256=7sN2LjrP6MGMA6ebDmXiJNeN64aveE1a-9C8eiN7J0g,36360
132
+ pygeai/_docs/source/content/ai_lab/runner.rst,sha256=_g2VW8Pqyl4EpK5UMU6Sgbmf5Y6zV6qcS3pfRj9I0Qc,13887
133
+ pygeai/_docs/source/content/ai_lab/spec.rst,sha256=8BFIJxzLp3Vdar2kaqGEsw4NO5jiIsgysSDtvBBKZ44,16487
134
+ pygeai/_docs/source/content/ai_lab/usage.rst,sha256=bTlyiAhWckTdkcWyLntJmJOzcYseYf4D4EqexQNu_s8,28564
135
+ pygeai/_docs/source/content/api_reference/chat.rst,sha256=vacD71YEqUGEVoWxlcyEbXqDP5ng6FUsKJdbycy3t9Y,10670
136
+ pygeai/_docs/source/content/api_reference/embeddings.rst,sha256=7krqSxDKq-BCI0-3q9KcgV7U3vP-4C-96yvbygp6aJ8,4323
137
+ pygeai/_docs/source/content/api_reference/project.rst,sha256=s4AiCVs4QL-5GqD2X0DVkPfyW7sZoA64gC9nbuW9750,16388
138
+ pygeai/_docs/source/content/api_reference/rag.rst,sha256=Y5azvt5V9I3jS7qySc4LaQqkjCHtgspDiJkHBHGQ9Gc,18818
2
139
  pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
140
  pygeai/admin/clients.py,sha256=2wuXSmTyg-gCbempDFCeI1yCKeOlKDBZsrFyFWxcwBg,6698
4
141
  pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
@@ -39,12 +176,12 @@ pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0Aa
39
176
  pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
40
177
  pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
41
178
  pygeai/cli/commands/auth.py,sha256=xiW9GEXZy7ti3HJMUEX5fSKe6XqxTVciZiCz1Trws7E,3361
42
- pygeai/cli/commands/base.py,sha256=pnZDBKLv4ZN1mEvIQOR35S9n07mYvCuxa-Nrgm8DOao,7397
179
+ pygeai/cli/commands/base.py,sha256=OKlYNpQvTCxOOLDSR-KkmoUvKs4OGYerwo_escQaDwY,7406
43
180
  pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
44
181
  pygeai/cli/commands/chat.py,sha256=Y2e3NjDXYjutdxbpGUDmewZfKnR_QHb69Jz4L-2GHY4,25170
45
182
  pygeai/cli/commands/common.py,sha256=zL1cWKMTqzqMsHBDFfVzbZe0i2l0hgJNpzjSRgvloY8,16568
46
183
  pygeai/cli/commands/configuration.py,sha256=J1Y8AH1xYWvcY4bzqKvF-_ggEDJ22Dv4iEcCBi2pq_8,4140
47
- pygeai/cli/commands/docs.py,sha256=vk-nM4r3Ru07rxkjF3AgJCw6QnsSHuBL7W6WF8WbCjE,3438
184
+ pygeai/cli/commands/docs.py,sha256=8JEgKAHFL19g1rmgQzFwdzqLBP8ySvnpQogXwJPWfS4,3444
48
185
  pygeai/cli/commands/embeddings.py,sha256=om_RR3CHgfmHcTN43F6TzP71n-BS8Lf589wyBMVZJ3g,4220
49
186
  pygeai/cli/commands/evaluation.py,sha256=7fgqihWtJ1h7dGXdTR3AbanNAIjeAI5qY7TAaTSi6WI,63828
50
187
  pygeai/cli/commands/feedback.py,sha256=nJdrI974N_3IsloJMqe7GRay5_ijOSkeZ9MIdGeQZa0,2442
@@ -537,9 +674,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
537
674
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
538
675
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
539
676
  pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
540
- pygeai-0.6.0b3.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
541
- pygeai-0.6.0b3.dist-info/METADATA,sha256=QA3RKfpdxgcSs6AoWXw3ZIBwiwbsRknthn-7WdjDyP4,7977
542
- pygeai-0.6.0b3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
543
- pygeai-0.6.0b3.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
544
- pygeai-0.6.0b3.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
545
- pygeai-0.6.0b3.dist-info/RECORD,,
677
+ pygeai-0.6.0b6.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
678
+ pygeai-0.6.0b6.dist-info/METADATA,sha256=Kau106L0Ux370EiBA6fXG3fRQhhq_dYqnJBfzjriWRU,7977
679
+ pygeai-0.6.0b6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
680
+ pygeai-0.6.0b6.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
681
+ pygeai-0.6.0b6.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
682
+ pygeai-0.6.0b6.dist-info/RECORD,,