pygeai 0.6.0b6__py3-none-any.whl → 0.6.0b7__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 (85) hide show
  1. pygeai/_docs/source/content/api_reference/admin.rst +161 -0
  2. pygeai/_docs/source/content/api_reference/assistant.rst +326 -0
  3. pygeai/_docs/source/content/api_reference/auth.rst +379 -0
  4. pygeai/_docs/source/content/api_reference/health.rst +58 -0
  5. pygeai/_docs/source/content/api_reference/project.rst +20 -18
  6. pygeai/_docs/source/content/api_reference/rerank.rst +94 -0
  7. pygeai/_docs/source/content/api_reference.rst +6 -1
  8. pygeai/_docs/source/index.rst +59 -7
  9. pygeai/_docs/source/pygeai.auth.rst +29 -0
  10. pygeai/_docs/source/pygeai.cli.commands.rst +16 -0
  11. pygeai/_docs/source/pygeai.core.utils.rst +16 -0
  12. pygeai/_docs/source/pygeai.rst +1 -0
  13. pygeai/_docs/source/pygeai.tests.auth.rst +21 -0
  14. pygeai/_docs/source/pygeai.tests.cli.commands.rst +16 -0
  15. pygeai/_docs/source/pygeai.tests.core.base.rst +8 -0
  16. pygeai/_docs/source/pygeai.tests.core.files.rst +8 -0
  17. pygeai/_docs/source/pygeai.tests.core.plugins.rst +21 -0
  18. pygeai/_docs/source/pygeai.tests.core.rst +1 -0
  19. pygeai/_docs/source/pygeai.tests.evaluation.dataset.rst +21 -0
  20. pygeai/_docs/source/pygeai.tests.evaluation.plan.rst +21 -0
  21. pygeai/_docs/source/pygeai.tests.evaluation.result.rst +21 -0
  22. pygeai/_docs/source/pygeai.tests.evaluation.rst +20 -0
  23. pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst +8 -0
  24. pygeai/_docs/source/pygeai.tests.organization.rst +8 -0
  25. pygeai/_docs/source/pygeai.tests.rst +2 -0
  26. pygeai/_docs/source/pygeai.tests.snippets.auth.rst +10 -0
  27. pygeai/_docs/source/pygeai.tests.snippets.organization.rst +40 -0
  28. pygeai/_docs/source/pygeai.tests.snippets.rst +1 -0
  29. pygeai/admin/clients.py +7 -32
  30. pygeai/assistant/clients.py +9 -44
  31. pygeai/assistant/data/clients.py +1 -0
  32. pygeai/assistant/data_analyst/clients.py +4 -13
  33. pygeai/assistant/rag/clients.py +13 -67
  34. pygeai/auth/clients.py +88 -14
  35. pygeai/auth/endpoints.py +4 -0
  36. pygeai/chat/clients.py +1 -0
  37. pygeai/cli/commands/auth.py +178 -2
  38. pygeai/cli/commands/lab/ai_lab.py +0 -2
  39. pygeai/cli/commands/organization.py +241 -0
  40. pygeai/core/base/clients.py +1 -0
  41. pygeai/core/embeddings/clients.py +3 -7
  42. pygeai/core/feedback/clients.py +3 -8
  43. pygeai/core/files/clients.py +5 -18
  44. pygeai/core/llm/clients.py +7 -26
  45. pygeai/core/models.py +107 -0
  46. pygeai/core/plugins/clients.py +3 -7
  47. pygeai/core/rerank/clients.py +3 -8
  48. pygeai/core/secrets/clients.py +8 -37
  49. pygeai/core/utils/parsers.py +32 -0
  50. pygeai/core/utils/validators.py +10 -0
  51. pygeai/evaluation/clients.py +1 -0
  52. pygeai/evaluation/dataset/clients.py +1 -0
  53. pygeai/evaluation/plan/clients.py +1 -0
  54. pygeai/evaluation/result/clients.py +1 -0
  55. pygeai/gam/clients.py +6 -25
  56. pygeai/health/clients.py +3 -7
  57. pygeai/lab/agents/clients.py +13 -53
  58. pygeai/lab/agents/endpoints.py +2 -0
  59. pygeai/lab/clients.py +1 -0
  60. pygeai/lab/processes/clients.py +24 -127
  61. pygeai/lab/strategies/clients.py +7 -25
  62. pygeai/lab/tools/clients.py +22 -67
  63. pygeai/lab/tools/endpoints.py +3 -0
  64. pygeai/organization/clients.py +122 -51
  65. pygeai/organization/endpoints.py +6 -1
  66. pygeai/organization/limits/clients.py +17 -91
  67. pygeai/organization/managers.py +157 -1
  68. pygeai/organization/mappers.py +76 -2
  69. pygeai/organization/responses.py +25 -1
  70. pygeai/proxy/clients.py +1 -0
  71. pygeai/tests/auth/test_clients.py +183 -7
  72. pygeai/tests/organization/test_clients.py +184 -1
  73. pygeai/tests/organization/test_managers.py +122 -1
  74. pygeai/tests/snippets/auth/__init__.py +0 -0
  75. pygeai/tests/snippets/organization/get_memberships.py +12 -0
  76. pygeai/tests/snippets/organization/get_organization_members.py +6 -0
  77. pygeai/tests/snippets/organization/get_project_members.py +6 -0
  78. pygeai/tests/snippets/organization/get_project_memberships.py +12 -0
  79. pygeai/tests/snippets/organization/get_project_roles.py +6 -0
  80. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b7.dist-info}/METADATA +1 -1
  81. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b7.dist-info}/RECORD +85 -64
  82. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b7.dist-info}/WHEEL +0 -0
  83. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b7.dist-info}/entry_points.txt +0 -0
  84. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b7.dist-info}/licenses/LICENSE +0 -0
  85. {pygeai-0.6.0b6.dist-info → pygeai-0.6.0b7.dist-info}/top_level.txt +0 -0
@@ -2,17 +2,18 @@ pygeai/__init__.py,sha256=VpX09d3yWymZmWS4bQbYYIWJLEQpYTWJyTKhVGHSwb0,502
2
2
  pygeai/_docs/Makefile,sha256=4zv3TVkTACm6JBaKgTES3ZI9cETXgM6ULbZkXZP1as8,638
3
3
  pygeai/_docs/make.bat,sha256=L4I5T7uDUIjwGyMRJ-y9FoT61sxIyCuaYuJyLt8c-nA,804
4
4
  pygeai/_docs/source/conf.py,sha256=3B8QPySCAqNFLxKYdiojBTwJE8pAyL7__TPoYAVT_is,1239
5
- pygeai/_docs/source/index.rst,sha256=Koz3zjIuEJIsHM7V0LVIPXF2kTtOXfzMKZ1apXQmYmw,665
5
+ pygeai/_docs/source/index.rst,sha256=A930R3a3mBzMUrRP6EjTxFMS-rrC40nO3SNG9xw4q9A,1630
6
6
  pygeai/_docs/source/modules.rst,sha256=LrEcy3DTRTHFjGk0PcMgSVdy4cKmEDQW_GnwvPvtSic,55
7
7
  pygeai/_docs/source/pygeai.admin.rst,sha256=BErqezo4qPNthV4QTQl9sNpPJrBfQ904R93xTky4bEI,486
8
8
  pygeai/_docs/source/pygeai.assistant.data.rst,sha256=CObeMQ4LO1NCIfg_FBkbdJAYwMfxkKLgMz1iXIonAf4,385
9
9
  pygeai/_docs/source/pygeai.assistant.data_analyst.rst,sha256=r5q_HYl5dlb0_z2Yh8_dTmkgZIWo2Al0IJ1i-ZSEDcA,645
10
10
  pygeai/_docs/source/pygeai.assistant.rag.rst,sha256=Y-JNIBd2sGwX_qclqmDKMSQHbniZhiFe_1FeG5NkCIk,1080
11
11
  pygeai/_docs/source/pygeai.assistant.rst,sha256=UM1rs3EZoMoF16XHO5sycwsMqWB9ci1jZPBcO8GCst0,985
12
+ pygeai/_docs/source/pygeai.auth.rst,sha256=99Dbf-hng18guWy1Bi8_6jvCZtVQ6xFWrHz6LII2fQ4,477
12
13
  pygeai/_docs/source/pygeai.chat.rst,sha256=cW35lNsOImawmYiriUwSGjJITGnx0Kxa_wYJRnACwvw,1189
13
14
  pygeai/_docs/source/pygeai.cli.commands.flows.rst,sha256=_oPTa5gn3jtsYo8SSjr5LWp3hHkOcVXa-9sOXwST8Ik,198
14
15
  pygeai/_docs/source/pygeai.cli.commands.lab.rst,sha256=48iA3vbixQBMmBmnthf_Jy7jJhHyozhXFXNki-zmOTY,1106
15
- pygeai/_docs/source/pygeai.cli.commands.rst,sha256=PLxTWp_f0dQyDmyTsqMAjdGLOU2Czx9hWJ5Eo00BDbo,4072
16
+ pygeai/_docs/source/pygeai.cli.commands.rst,sha256=XLmfgH8bMFtgM6hTBq-2mcp6RrXYw1MQ4K45hTCyUvE,4394
16
17
  pygeai/_docs/source/pygeai.cli.rst,sha256=SXVkOJhUZFrcvJJMtqUlsAFsqoIa2mF96fy-L5rEPWw,863
17
18
  pygeai/_docs/source/pygeai.cli.texts.rst,sha256=z2dfcJAwQPLkfDJxTp7iyGJ5KijBhC7LcRlbdSB3bqw,346
18
19
  pygeai/_docs/source/pygeai.core.base.rst,sha256=IKexE5NtfxU_oot-y4dwKGPkvTjyuFD8B4LE_dPXEJw,1002
@@ -27,7 +28,7 @@ pygeai/_docs/source/pygeai.core.rst,sha256=OsOdfmGmIeto1DaYMXMlYct0s-dOidn-_ERW0
27
28
  pygeai/_docs/source/pygeai.core.secrets.rst,sha256=Or8sbF3-tDQNVw7SGAqv06Vx4jGVj9sZWX7HAs9YpTc,549
28
29
  pygeai/_docs/source/pygeai.core.services.llm.rst,sha256=stTaWu4W0knoQEHHVyptlFa41HR-Gt3oI8agxeuvA3U,588
29
30
  pygeai/_docs/source/pygeai.core.services.rst,sha256=1lTLW85kOVgm-dtKdltC2t0ao5MpIxuwBOfaiC3ymI8,630
30
- pygeai/_docs/source/pygeai.core.utils.rst,sha256=SA2qunmsJHBA4MsYXLdzT7xcsrSNuz9tiKAAOvDIPuU,361
31
+ pygeai/_docs/source/pygeai.core.utils.rst,sha256=LgI6vvhcCk1Q9VSFIh4Dw5pHtXZqjbdXz6vd9vk6x8o,698
31
32
  pygeai/_docs/source/pygeai.dbg.rst,sha256=mg6bsMmAREoCFuow8VyU2JZ680tMbzc9hemqBqj5SpY,322
32
33
  pygeai/_docs/source/pygeai.evaluation.dataset.rst,sha256=vPuc2d_5zt9WAc29lq50uzWnJgSRoQpHEZLWpLIYV1s,603
33
34
  pygeai/_docs/source/pygeai.evaluation.plan.rst,sha256=Eqdeu9e-lPoiMIn5eIjN5vi8aUQYGYHG3ilBocag-zU,576
@@ -48,36 +49,42 @@ pygeai/_docs/source/pygeai.migration.rst,sha256=LmccQTJ1idwY37lg8-29pTm6szsgaSbY
48
49
  pygeai/_docs/source/pygeai.organization.limits.rst,sha256=5rjKRtaXl_FUQss_UuQjws-kej97IbMqvS9hks_3fxg,997
49
50
  pygeai/_docs/source/pygeai.organization.rst,sha256=91Fby-1S78q0VJ8Yt5iGJ2M2brqtXqH3vlNKJj63dk4,1154
50
51
  pygeai/_docs/source/pygeai.proxy.rst,sha256=XgZwF0OmOUJa_AasledYKAIH3JPIubOUEnO4SIf0LKk,918
51
- pygeai/_docs/source/pygeai.rst,sha256=gZf-JUHsh3v-W0821P_uw_9A1Eh34d5ouyjs7Fb-rP0,462
52
+ pygeai/_docs/source/pygeai.rst,sha256=yaUcMIMQP246VTVdGu_9KKKNxChVbffx3OUy4wUcAeY,477
52
53
  pygeai/_docs/source/pygeai.tests.admin.rst,sha256=z3vaTaKOVea_zmgQwKRZSD-HZQ6dC3B8GEXY6DD9kEw,384
53
54
  pygeai/_docs/source/pygeai.tests.assistants.rag.rst,sha256=aTM3TccZgohUBwVqJx7lbVQsH_p_d5LvUCKMBV4UjeE,857
54
55
  pygeai/_docs/source/pygeai.tests.assistants.rst,sha256=JlPdf3soviMwSH6HAXjdgI7qFsqN5GL_NQLJjnQ8bYI,902
56
+ pygeai/_docs/source/pygeai.tests.auth.rst,sha256=OEQtek7xgptYQpZfetx2xX7ZrMaf3CKWIJUHiqUb9-w,378
55
57
  pygeai/_docs/source/pygeai.tests.chat.rst,sha256=xiTEjTTXU0hLeIaNx32u30HuqDDlHuBN8oOD2GaY-yA,897
56
58
  pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst,sha256=Ph5mvvnfn7qTDtbgU3ScxVzZGcRqvguVpUzboTnEiig,871
57
- pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=ei0h4KbpKEgIAGsKG3MdrdG6LFjBkm8BEIHv-dasi8Q,3600
59
+ pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=95znjo_v7JLK2FZcUPnE57ofrW4CHF3U8OeYeqsEkHA,4019
58
60
  pygeai/_docs/source/pygeai.tests.cli.docker.rst,sha256=UM4B_DAlsak4hAGFH-vjNiif0U6SDXxeYg_LqG7f9N4,192
59
61
  pygeai/_docs/source/pygeai.tests.cli.rst,sha256=WrsiBUPkIkxLX8ZepttNZaG8R6BAnTAHWFVaap-xipg,484
60
62
  pygeai/_docs/source/pygeai.tests.core.base.data.rst,sha256=SsV7Q4nT37voKqp1BDbP7Rub29jVarIPbrNZktQb5Jg,612
61
- pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ZtDGK2cWTSL9Ds3e2mLgNA25LrxRSa8z3gz2sJrs980,688
63
+ pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ndRoX3malfqip5_eZfmWPwhyI85aBNfu8gVhSBBUghY,890
62
64
  pygeai/_docs/source/pygeai.tests.core.common.data.rst,sha256=-oOOj8QUOJRw6y9wk31e6ZyS-2kTBJC8PNbLh0GA16c,210
63
65
  pygeai/_docs/source/pygeai.tests.core.common.rst,sha256=07o4RYKqCf757VTBfySjHkfyvHUXY1oMVD2lq2r0N0U,717
64
66
  pygeai/_docs/source/pygeai.tests.core.embeddings.rst,sha256=8_kn4Dh6j2-7CK_9qZwJ6I3Fs2iTOrIv3FRC8Zx7dfQ,444
65
67
  pygeai/_docs/source/pygeai.tests.core.feedback.rst,sha256=9H40ALCDjSEMRz9wABan1WyEroubvsPf4rvdqpIfTCU,432
66
- pygeai/_docs/source/pygeai.tests.core.files.rst,sha256=PzVUQXZe0fZZQsqZFGp1OX6pD5r_wwOCIsYxY5OQbAA,1017
68
+ pygeai/_docs/source/pygeai.tests.core.files.rst,sha256=5FAxa0Jef8QOZuYqyvy5S1ISm4wcsNrs0h-6Et-vU8E,1216
67
69
  pygeai/_docs/source/pygeai.tests.core.llm.rst,sha256=y9sVhRP7V0CfwjRrbb1NC_ui7EUGA43McfbjqmeUPMk,402
70
+ pygeai/_docs/source/pygeai.tests.core.plugins.rst,sha256=qvKCfyvArjbFcCISZ7Ig3DqscvgZr_LcuiSY17LYNA8,426
68
71
  pygeai/_docs/source/pygeai.tests.core.rerank.rst,sha256=y4HrgcgimfUHRrcYKLGc1jtituy6nQAl78f7pgI_BAI,827
69
- pygeai/_docs/source/pygeai.tests.core.rst,sha256=kS7v6qr5TgfmX9J8g16OFikrXkCuTtQ3H5TWEDm9E6Q,719
72
+ pygeai/_docs/source/pygeai.tests.core.rst,sha256=ypcwqmEmra-uoifoDzQgNDkgaX4t9mqzv_pb5K8Onug,748
70
73
  pygeai/_docs/source/pygeai.tests.core.secrets.rst,sha256=FuE6pZvrM5rsHsIOVc9m4YcW3Zu8rM02NQzL_XsR3Rc,426
71
74
  pygeai/_docs/source/pygeai.tests.core.services.rst,sha256=4xL4sdjTv1lHcO9jgloXKyjYxN2xUzGcEkD-UMFyE2g,423
72
75
  pygeai/_docs/source/pygeai.tests.core.utils.rst,sha256=wJtGlLlQF6p3E4ywmSJr5dMYZsYGudIRwqVWNW8Omg8,414
73
76
  pygeai/_docs/source/pygeai.tests.dbg.rst,sha256=9hsXIno_7hC6oLjVG7FPhlHAJw993ybYtXi52GiiCVI,375
77
+ pygeai/_docs/source/pygeai.tests.evaluation.dataset.rst,sha256=CPg1J3PdXhIZ9lnpcSy5jJCl_SC6eCXX4WoUjdGRAkU,462
78
+ pygeai/_docs/source/pygeai.tests.evaluation.plan.rst,sha256=T8ZJ3CcKck7n_ROUWEpkbNMjzCXhYUoEDrI9Mi2a8mg,444
79
+ pygeai/_docs/source/pygeai.tests.evaluation.result.rst,sha256=6xSyb7SJHjn_Fr1Z4f4hyzcz2wgXtcohmWal9iDidYI,456
80
+ pygeai/_docs/source/pygeai.tests.evaluation.rst,sha256=vEUIxZy-Eft-i-IL1ZIH4bj0Z5LSUE4aX3CprdNeTIk,349
74
81
  pygeai/_docs/source/pygeai.tests.gam.rst,sha256=Rl2kATXXoS-JYYwMbSgxEd8bbNLpyh5hKq9OtKUAVyE,372
75
82
  pygeai/_docs/source/pygeai.tests.health.rst,sha256=1jSPXAOcrMaP0bsyD0GcF6eqV-Kf_mr1yF8yriDbRnA,390
76
83
  pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst,sha256=6ln50eZnW0kP3GUN4EaDkMV3K6YEKQ8S-jkTy3ecygs,521
77
84
  pygeai/_docs/source/pygeai.tests.integration.assistants.rst,sha256=L7uS5CnA7skmPQf3Cdec7ZAwGTN_v2gXuHwQGZZU7Xo,327
78
85
  pygeai/_docs/source/pygeai.tests.integration.chat.rst,sha256=DTIYNCzxLxwrCls8xhuhSGSFMDEi5FgrCu5Kwr8MLw8,473
79
86
  pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst,sha256=LlMEyt0ATVMMSN9ohnhXtSovhNFw8UIxjL3jBezD7ic,2058
80
- pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst,sha256=2NOAKNEKkjsYHHLprCK7mowBca4X_DYQWka_-rzHau4,2178
87
+ pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst,sha256=S9nbhEP7apPgY__pertBcapWwFJTW140jOcyqCTNsTo,2436
81
88
  pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst,sha256=3fjZzzFCSJ5p8p0PHWo3c3dyPqFzdcnIH_aoTq-MUpg,1297
82
89
  pygeai/_docs/source/pygeai.tests.integration.lab.rst,sha256=VvG17L2E9g8GVZsR_ImG437Qsfk0-bWKMjVojBlIwds,435
83
90
  pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst,sha256=5TCpyK_IMhPgIUldvupE6XAnAZQdVxbqXupGYZpwYmE,2248
@@ -90,12 +97,13 @@ pygeai/_docs/source/pygeai.tests.lab.strategies.rst,sha256=phIZJib0m8WVv3klnVe-P
90
97
  pygeai/_docs/source/pygeai.tests.lab.tools.rst,sha256=0r74wroe80KosW60hGEYUzM-gAbvoJeLcoUmkIw03Q0,604
91
98
  pygeai/_docs/source/pygeai.tests.migration.rst,sha256=RrOUG2jhf9ZPmhrj8sRbzoV8f3o45bzLk8x1vfIeasQ,607
92
99
  pygeai/_docs/source/pygeai.tests.organization.limits.rst,sha256=TQGsWAEkfgblivHoYUZ7VBgNDEo7B1SbocYPdX_LWqI,697
93
- pygeai/_docs/source/pygeai.tests.organization.rst,sha256=iQPw3NON6JFZSfTUhehc6CBEEsLy1pJHLBphMie1Yko,931
100
+ pygeai/_docs/source/pygeai.tests.organization.rst,sha256=81b5GWMVbJ0vGwM0I2lA1frwxReEEdv3cHiFCrZ3yhY,1142
94
101
  pygeai/_docs/source/pygeai.tests.proxy.rst,sha256=k3_wXvaRaXGEo77ETI-TD0n7f9hCgAVmEGP_Osw35vs,1307
95
- pygeai/_docs/source/pygeai.tests.rst,sha256=eyU6QLRLB3DdIYAaOo_Jfn4Niq2Mj69yv8RaInMSXK4,539
102
+ pygeai/_docs/source/pygeai.tests.rst,sha256=Vr0Trtak7qWb3o-cbUofIewUin-wu2WwPCsvb8BTTJQ,587
96
103
  pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst,sha256=9BhQEuja2fubrvK96gwfC1kP9bpHIS4KyWm9Pww8wKc,1098
97
104
  pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst,sha256=MJjQOlUuJRHrVZGP2JXx0HqM-WfdxQN_k0fLaH4ihPo,2552
98
105
  pygeai/_docs/source/pygeai.tests.snippets.assistants.rst,sha256=HSsTyB8Vw-m_9ZU_ukhMq-BPWoTvq8zRLqk6yTOhnLM,2140
106
+ pygeai/_docs/source/pygeai.tests.snippets.auth.rst,sha256=zmZRwspFVQwPFRSzetlgf5DX9ylU-zgx_b7VERjNkS0,201
99
107
  pygeai/_docs/source/pygeai.tests.snippets.chat.rst,sha256=yIpbOH7XXrGcTkhT9pNiTGb66QMJ09mNWx36qUoG-Jw,2257
100
108
  pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst,sha256=heK_JqYIpYr-Sz90PGhE0R5EgrllsURApyeqcgYuL2M,489
101
109
  pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst,sha256=xktMl4wbfdZpBFwXS5nnpJqJJdByPfkvE4ntzwpShwU,219
@@ -112,14 +120,14 @@ pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst,sha256=hSZDlOoBFX9C
112
120
  pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst,sha256=Z5sN-ocA04__NI_UHJZ8Cy-LbAMj7fcHiac49Gg9P-k,2288
113
121
  pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst,sha256=56o_i5rP3eLyrFmiJjnJ80nSC5awhoZ4G-1-MEhjn2M,3716
114
122
  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
123
+ pygeai/_docs/source/pygeai.tests.snippets.organization.rst,sha256=sSwv9PHlUX5kNRdFnhbcRLd-y3UUXX6-y-PWeF1jl5A,3243
116
124
  pygeai/_docs/source/pygeai.tests.snippets.rag.rst,sha256=v_FFSm6fVE4CVOW79HI8piz8MOYa8PEvm28WoPpQGRo,2222
117
125
  pygeai/_docs/source/pygeai.tests.snippets.rerank.rst,sha256=RwkOt3kGBsoUtiqmA3rMeMDMkZ-idMm08VWnMzo3w2c,447
118
- pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=rxJlKKzRKEf7E3BOttfYFPGCDSYM2Ev9EZW06_KrxsE,674
126
+ pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=de1jN5Mz4DTrbpn6PvWkcDcZ4qW84OzlQHa4xmBS64E,704
119
127
  pygeai/_docs/source/pygeai.tests.snippets.secrets.rst,sha256=kWSmN3I-MuhpeabIskpz7m3YpPBlFrYA73mt5m5zk-E,210
120
128
  pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst,sha256=S2oNQdHLRyNdfBijqJMDl_nyq094M8yy9Fu1OyeDjo8,2517
121
129
  pygeai/_docs/source/content/ai_lab.rst,sha256=t0NSjKhjY8snu9VxgY4PE8PYz4LtumyMnhhbxmOR1oY,11519
122
- pygeai/_docs/source/content/api_reference.rst,sha256=rVwWzcE4nX2o4JLfy6AJae0WuMSsvZ8qEX7JJPYBvdw,2459
130
+ pygeai/_docs/source/content/api_reference.rst,sha256=-Vd0GszB21lp_3xbGnv5-xd1425TggKk4-Poqnnt7nc,2584
123
131
  pygeai/_docs/source/content/chat_gui.rst,sha256=0nnQFh_m4V-TqbeZXTKYMzU6gmPTOwRHrkqaZ16098k,6805
124
132
  pygeai/_docs/source/content/cli.rst,sha256=roIhLfeb0XAspXLbivHGSUMi-83RZ59rTGJbSfNMmt4,3178
125
133
  pygeai/_docs/source/content/debugger.rst,sha256=FVe3CcroaOH8HMpnT5oHdcJaEDNhLi7SlCBW-wh0RG8,7593
@@ -132,34 +140,39 @@ pygeai/_docs/source/content/ai_lab/models.rst,sha256=7sN2LjrP6MGMA6ebDmXiJNeN64a
132
140
  pygeai/_docs/source/content/ai_lab/runner.rst,sha256=_g2VW8Pqyl4EpK5UMU6Sgbmf5Y6zV6qcS3pfRj9I0Qc,13887
133
141
  pygeai/_docs/source/content/ai_lab/spec.rst,sha256=8BFIJxzLp3Vdar2kaqGEsw4NO5jiIsgysSDtvBBKZ44,16487
134
142
  pygeai/_docs/source/content/ai_lab/usage.rst,sha256=bTlyiAhWckTdkcWyLntJmJOzcYseYf4D4EqexQNu_s8,28564
143
+ pygeai/_docs/source/content/api_reference/admin.rst,sha256=v_o5I_B3ND6fu_v8gOpGKvR_ekI6EPU4EEIZLdDnPT0,3401
144
+ pygeai/_docs/source/content/api_reference/assistant.rst,sha256=5-XseBnf-s-UfttcYW0SUWD8WoL6FQMfmXqw024h2EA,7326
145
+ pygeai/_docs/source/content/api_reference/auth.rst,sha256=to_Bjp1BnJ-iOf8Yg2UUjuOZ7FcLJleeu-Qh-lwAQrM,10057
135
146
  pygeai/_docs/source/content/api_reference/chat.rst,sha256=vacD71YEqUGEVoWxlcyEbXqDP5ng6FUsKJdbycy3t9Y,10670
136
147
  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
148
+ pygeai/_docs/source/content/api_reference/health.rst,sha256=hEVzFsP1BnJL7fzAQV1sUYa0iFDI8GKJ1E54Oewpr5Y,1041
149
+ pygeai/_docs/source/content/api_reference/project.rst,sha256=rA-5-ihTlzCckszlrxaGMKpkhruZ-REe8kO8Yd3xX1Y,16401
138
150
  pygeai/_docs/source/content/api_reference/rag.rst,sha256=Y5azvt5V9I3jS7qySc4LaQqkjCHtgspDiJkHBHGQ9Gc,18818
151
+ pygeai/_docs/source/content/api_reference/rerank.rst,sha256=zuoqmc2yW_M-tJ5IkYtaGxF2hHf4zFqnKWrL2zMh7Ig,2436
139
152
  pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
- pygeai/admin/clients.py,sha256=2wuXSmTyg-gCbempDFCeI1yCKeOlKDBZsrFyFWxcwBg,6698
153
+ pygeai/admin/clients.py,sha256=hlfV4xcjXNwxS2raxuj_BJ43W2-bif29TnQpKiVk7ek,5153
141
154
  pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
142
155
  pygeai/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
- pygeai/assistant/clients.py,sha256=D-xrrIOtIbVYNIPSyhUUN6AuH7mOBD26LcUfZlrDqO0,11619
156
+ pygeai/assistant/clients.py,sha256=BwT-zDSf8_GFEhTlcSzMDlRunC0Tl6FtAAzBpM2PecY,9583
144
157
  pygeai/assistant/endpoints.py,sha256=7LuXWm0-sbrmHsngqW63wuk37K24wcMLinmJ6HdSimg,1026
145
158
  pygeai/assistant/managers.py,sha256=aQxJ0QtZjTfeQXdwYBDc7oJA2LwPSFUcJOeoihCe8uQ,34632
146
159
  pygeai/assistant/mappers.py,sha256=oSx_k1edknbKGlASke5ASzKEekG613TepVQRm1ecPOc,5915
147
160
  pygeai/assistant/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- pygeai/assistant/data/clients.py,sha256=BiTuzQAsyQTy-drIc4eY4Dfy_LiLL_rahuyjDd0Gq_I,598
161
+ pygeai/assistant/data/clients.py,sha256=PeSYxbHti8PIdImV4-rhcTWlOvj2nedGX21ulXZi3wQ,660
149
162
  pygeai/assistant/data_analyst/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- pygeai/assistant/data_analyst/clients.py,sha256=Gc7obQLGhW2iDOrVjd_Rm8k_5nt5ivxc2ZiQ1cpQfpA,3211
163
+ pygeai/assistant/data_analyst/clients.py,sha256=HM4ZMU0K_Nb7zrAt-e2IqRMqDrMR2d-gRCZBoxieasQ,2674
151
164
  pygeai/assistant/data_analyst/endpoints.py,sha256=2m-IXrb2-5id9tnpOjMQRYm6vqay6fw56-6kfpElPYI,296
152
165
  pygeai/assistant/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- pygeai/assistant/rag/clients.py,sha256=9a8loVLRnVkA3nHvvOpbdUEhy_TEnHm1rhdBYrBVABE,15893
166
+ pygeai/assistant/rag/clients.py,sha256=atb0zE3imS5ogL39_tG35FMpGubzjkfisjPMMQmh_K4,12600
154
167
  pygeai/assistant/rag/endpoints.py,sha256=7YlHIvAYj3-xsCWtVMDYobxXbAO0lCo9yJdOrQxwCrQ,1145
155
168
  pygeai/assistant/rag/mappers.py,sha256=n3aeNXqz_7zq_JWq5wJfeNX1kvV3arOxAoUsqRYOZsc,8645
156
169
  pygeai/assistant/rag/models.py,sha256=g5UiHuRjobgU1WgUMxeBzXykxgJ5q7eb_YY8qDciNvw,15732
157
170
  pygeai/assistant/rag/responses.py,sha256=fY97ibsCVLQ3Ssnjuvj-JeA883WqjOw7ZdxbpQp_B1E,196
158
171
  pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
- pygeai/auth/clients.py,sha256=MAiCVxYEi8EpEmZfWV0xui4WoC11Ch1iQfUuTskcOkY,2381
160
- pygeai/auth/endpoints.py,sha256=Au0w6bADAX7avQEErwfs7bpKOTuZqkkxCCa1rNN0J94,191
172
+ pygeai/auth/clients.py,sha256=3Eg9d9XJlPCIXz2N90LalchahV2gPaD0DWj8iBcw41Y,5422
173
+ pygeai/auth/endpoints.py,sha256=KOZ5gS8I8MIamlfbj4bN8w6kMmIdAKr6puKJrw0cEtw,589
161
174
  pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
- pygeai/chat/clients.py,sha256=QEyeTIPxp6xXKAEkE_XkjIxZDnaH808GKhIYr7ulrSA,10785
175
+ pygeai/chat/clients.py,sha256=iPjFYxz-QXTfdSj_6_NbVNrBQf9h5VxoKHQjRBD0Cfw,10847
163
176
  pygeai/chat/endpoints.py,sha256=tIPBK5EiQGbQlDZz96A9AfumIFs4Z6QiD_oK8PTVQFg,206
164
177
  pygeai/chat/iris.py,sha256=-9pDHQpWhR_PvbZ6rD8eMPFk46PI9sCdPQ9aAyvSexs,413
165
178
  pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
@@ -175,7 +188,7 @@ pygeai/cli/parsers.py,sha256=8kKvUbg33K4VbE7ryHwq3Uwwp42BK6ZOAKycYjEj1Io,2525
175
188
  pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
176
189
  pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
177
190
  pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
178
- pygeai/cli/commands/auth.py,sha256=xiW9GEXZy7ti3HJMUEX5fSKe6XqxTVciZiCz1Trws7E,3361
191
+ pygeai/cli/commands/auth.py,sha256=w1XIcTYh7SQ4keOhQiJiUJ2NFMY349K53P2BoGe2Rgc,8318
179
192
  pygeai/cli/commands/base.py,sha256=OKlYNpQvTCxOOLDSR-KkmoUvKs4OGYerwo_escQaDwY,7406
180
193
  pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
181
194
  pygeai/cli/commands/chat.py,sha256=Y2e3NjDXYjutdxbpGUDmewZfKnR_QHb69Jz4L-2GHY4,25170
@@ -190,7 +203,7 @@ pygeai/cli/commands/gam.py,sha256=_eRp3ryY0jFYxtZgWOAU4_ky7S9zggGvkZNZi9eokTI,96
190
203
  pygeai/cli/commands/llm.py,sha256=w7ozHlcdZ77hcXFzJaL0CM_YgXYKCaWBmg7t0WkHaOs,4115
191
204
  pygeai/cli/commands/migrate.py,sha256=ZUUjYl76bUHZgPHDyYdQiBTgxQrz2OIp4Krt9SjNUcM,16393
192
205
  pygeai/cli/commands/options.py,sha256=oVDJF-SsE80vi-W4d0n2cNo1BeeU_jqDs_TtMPkz-1I,1804
193
- pygeai/cli/commands/organization.py,sha256=PjpggDmewVmr9if5m_L5W3ykIs5F5yBvXQTGSLdaQ_w,9753
206
+ pygeai/cli/commands/organization.py,sha256=4ETIF9t3dKdlk2TBBokpmvMAUb6umryixMa9dWsMc7M,16352
194
207
  pygeai/cli/commands/rag.py,sha256=IgHsfRmnsegrGCCpwuNmd15BClQgEPc_GH2JXfG6OKo,37052
195
208
  pygeai/cli/commands/rerank.py,sha256=JO8EK6lgRUpDOGmhxmX43dS_97ssl29HxEwg__kNwCA,3010
196
209
  pygeai/cli/commands/secrets.py,sha256=d49inaFV_f0OoILH15U_SW4GuLRh37_x7VG3dxBbQbA,9411
@@ -199,7 +212,7 @@ pygeai/cli/commands/validators.py,sha256=lNtYSJvKFrEeg_h0oYURMuoQbNG5r6QdjzDL-aT
199
212
  pygeai/cli/commands/version.py,sha256=vyJcnxwL_TfpOQI0yE2a1ZyA3VRAE7ssh9APNBXpmqk,1701
200
213
  pygeai/cli/commands/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
214
  pygeai/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
- pygeai/cli/commands/lab/ai_lab.py,sha256=KJMRY_xA-B_XBM2VjgniYt5UeAbcvUCZhzb1jXUUni8,129235
215
+ pygeai/cli/commands/lab/ai_lab.py,sha256=xiR_-Ijxv3JaS3u48sBfMCu0YumwV7Dm6T9j_yAS0sY,129233
203
216
  pygeai/cli/commands/lab/common.py,sha256=YBenPCVgK01Xaxgj1429bp_Ri1SN4beBxZk3dCLp7X0,6590
204
217
  pygeai/cli/commands/lab/options.py,sha256=T13Vi97zochr0cU4yjyvvwWRPENILFDYpvqpU4uEBis,165
205
218
  pygeai/cli/commands/lab/spec.py,sha256=EjNdEnljKpYPQyT4d4ViAPrM1g7oIitv6ddnWVkWXPk,8301
@@ -208,11 +221,11 @@ pygeai/cli/texts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
208
221
  pygeai/cli/texts/help.py,sha256=cdTdEO9QRm3SVCzCEJq4vhunKHkGdpzWfmdoel8TDsw,22054
209
222
  pygeai/core/__init__.py,sha256=bbNktFp7t2dOBIvWto-uGVBW8acaKIe8EKcfuLV-HmA,189
210
223
  pygeai/core/handlers.py,sha256=la1QcQbLwfiNd-xDQ3jtWRHmeEm6E93Rfx5c-5bkLmw,934
211
- pygeai/core/models.py,sha256=uIwrmlB6yuulScUcYIBSH3Sxm5YyzaicV7Dz2bYLi2I,24229
224
+ pygeai/core/models.py,sha256=db44pgk_hJ5s2S8neZq5Y1XZY6rQDfPRN6mWDSvj-rw,27465
212
225
  pygeai/core/responses.py,sha256=wxlikhw1UAAB6Mib97xjq2eCFyZPWoosPwn9UhpKi7Y,2825
213
226
  pygeai/core/singleton.py,sha256=-U5kywQOBvbTtkWCczLZD_aoHBjDLRj07Q-UqQJpww0,242
214
227
  pygeai/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
- pygeai/core/base/clients.py,sha256=umtT6WoecCivXAxFajF-lMI5EbTNLKJBthuIHHixdNY,1608
228
+ pygeai/core/base/clients.py,sha256=8ZBAn3S7h-V7GjmnI-fPE-EyU1wp2eivVUmJjo39rIY,1670
216
229
  pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
217
230
  pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
218
231
  pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
@@ -222,38 +235,38 @@ pygeai/core/common/config.py,sha256=uEPqTTonya8IBX0KSRI927cjUJ39JvYExnkqep-5U6o,
222
235
  pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
223
236
  pygeai/core/common/exceptions.py,sha256=-eF4V0B-27zfp0aHMlZWqWRIty6P7TCOrzMRW87ZnlE,1251
224
237
  pygeai/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
- pygeai/core/embeddings/clients.py,sha256=0r-BX4ptivIBNrsOAMgw0q5nNLrIU7UxJ3SD6MkfXX4,3543
238
+ pygeai/core/embeddings/clients.py,sha256=IRYSdMlt2frv7pWBBdldd3wOR2lDYfDUvzJo1ojieuo,3378
226
239
  pygeai/core/embeddings/endpoints.py,sha256=b__cuKQjribog9PSUeDzwrQ0vBO4WyYahLhLjDiUpL0,98
227
240
  pygeai/core/embeddings/managers.py,sha256=j6sxPiQTGYXKbaV9K4_rmG6_4-16_ky2LUvfDL-24EY,3520
228
241
  pygeai/core/embeddings/mappers.py,sha256=n-ADAQiAbrfBaALuk7sp8J04GkTjIXiDdOb_VDXH48A,1375
229
242
  pygeai/core/embeddings/models.py,sha256=T9FehWk_0doiiZG7yMzSCK9_TBHibaocA4b8sJP7T4M,366
230
243
  pygeai/core/embeddings/responses.py,sha256=Lmjl0tWsbkFZcwjTf19CMNaChy4TcSh6cMIPUIKEqcc,411
231
244
  pygeai/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
- pygeai/core/feedback/clients.py,sha256=Drpwkye9wqC-eECsbVormFHSTIVP7rggbPbO1NeDn6U,2008
245
+ pygeai/core/feedback/clients.py,sha256=OWU-yKoci-FrgUlGXTSJEdKPkhVLqfB8LqqeFiq8T3I,1843
233
246
  pygeai/core/feedback/endpoints.py,sha256=GzgjLtBCYWkk51OfUCHe0YigO-F-8QM6XiH0zQuo1Qg,197
234
247
  pygeai/core/feedback/models.py,sha256=VdeVVWTQ8qc4TEPbL2XbYI4-UP2m2eh1pkBptw_do1E,336
235
248
  pygeai/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
- pygeai/core/files/clients.py,sha256=gjmm5H_BOEK_QRNb55s4CBGMA_IRV-xvkwf9YCjdEAY,6564
249
+ pygeai/core/files/clients.py,sha256=D4p_2hvDcPmIOiYE0V2gNXOXkf6BS123hr6uJBbkt8M,5814
237
250
  pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWYQ,337
238
251
  pygeai/core/files/managers.py,sha256=Hzq-XMEJnnNrh3pG5PViQqSt1WrbO-z5wHXsoGrSQxA,7158
239
252
  pygeai/core/files/mappers.py,sha256=8PXXsQJZEH45yLISn_xsOZmcRUEe_F6ELkUeR1lzc-M,1462
240
253
  pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
241
254
  pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
242
255
  pygeai/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
- pygeai/core/llm/clients.py,sha256=TjSFULqFn97wBYUnkPVinuAquGlryzawMI7v7S3ads0,3095
256
+ pygeai/core/llm/clients.py,sha256=IjNRY2-Yt6wA5I4IEOjkFQmik_k-Ygq4ZKvwEtlz65A,2005
244
257
  pygeai/core/llm/endpoints.py,sha256=EF5wNJH8Au3ZYl_hF2uCRL4hPSe2_MIy6TGpzubNVak,435
245
258
  pygeai/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
- pygeai/core/plugins/clients.py,sha256=1CJ1ZW-acPoFFvRLW25fsZnyqy62tBIHBs6ND41aflw,1209
259
+ pygeai/core/plugins/clients.py,sha256=MbyCEJRfXnhE_6NlhS7QF4K6pLlRjPvV94_8RJZCj0c,956
247
260
  pygeai/core/plugins/endpoints.py,sha256=1YUPtu0sqUKAgyBwTtEJdxhRs_ip9RL2mhz04U6KsXo,145
248
261
  pygeai/core/plugins/models.py,sha256=SzqE-NToxbqTTMerUk_ELkI6-P6KNIDJY_AOZx0-PTU,3691
249
262
  pygeai/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
- pygeai/core/rerank/clients.py,sha256=-7ztc7CAnAaQ6ay-MxehY8wxkqoT3EHtdYmJSYFQdQU,1206
263
+ pygeai/core/rerank/clients.py,sha256=FYSE4LbOP6XdyaocMGiNEm3nmKEhSed5-U4kpNtWf4A,971
251
264
  pygeai/core/rerank/endpoints.py,sha256=PZcA1i73fyGbpnbpWYr1-gHc6zy7L60b_E8sMLwsXw8,85
252
265
  pygeai/core/rerank/managers.py,sha256=MdfKTQnwWjduBa2gjXDq_OErgXH_bNZfNUjLCARpZwc,2043
253
266
  pygeai/core/rerank/mappers.py,sha256=Jx8PAymebA2TPxGssaKAj4eS0OVsKJqecntAugRO9ww,957
254
267
  pygeai/core/rerank/models.py,sha256=WLE-waHk2glKSl1xx9EpmE1k4bva7c14jjraaWuQ5Uk,430
255
268
  pygeai/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
- pygeai/core/secrets/clients.py,sha256=W87_z0syeToUemlH2RmQtM6gJsLvwRU1FEjvXO9Std4,10350
269
+ pygeai/core/secrets/clients.py,sha256=y8IoXAaOb_PqJsW1jsFmqaCK53kt59S-DcB1KifzYts,8640
257
270
  pygeai/core/secrets/endpoints.py,sha256=HN17bf7m8BSwtgLFZt0ifZf3KwR-MP3cXUSeY6P4H-8,468
258
271
  pygeai/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
272
  pygeai/core/services/response.py,sha256=L_xDAvSwnupQv6g1Ly2WQvImvITIVrMYW_TcEbXjM6c,505
@@ -263,52 +276,54 @@ pygeai/core/services/llm/model.py,sha256=dv0vH2uGQDzyXh63A_nr_bmMukr6Q9nO7LuiWgv
263
276
  pygeai/core/services/llm/providers.py,sha256=CS1v4qSiibuL51fQlgcARiyPoXxSnCeV5RXwNc1nmgA,293
264
277
  pygeai/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
278
  pygeai/core/utils/console.py,sha256=2YD0R6r5k0P1YCtYZDg1VnFih5HubdWg2vKxV4xguz0,2900
279
+ pygeai/core/utils/parsers.py,sha256=783HSQX7CDRKHU7WQQ9o_sS_ucMrYNDXvC_pKw1F-P4,1303
280
+ pygeai/core/utils/validators.py,sha256=LoDrO5z0K8_axMdoMHGZZHlxdIFQWnzC9L7RbEQFITg,328
266
281
  pygeai/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
282
  pygeai/dbg/debugger.py,sha256=c4w98n-DhusmE9vGXOJ_D_q_nDWUh4dvRREqCCKuC0E,7076
268
283
  pygeai/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
- pygeai/evaluation/clients.py,sha256=U_4TOygUIgVOPFPDMZiv1qzJjNU193tm2KqkwuzHmZw,760
284
+ pygeai/evaluation/clients.py,sha256=CkAi_KHl7-_sTfAxDAeYmfKqc3boVnBAm5z8BSubOv4,822
270
285
  pygeai/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
- pygeai/evaluation/dataset/clients.py,sha256=fPCwlNc6gKYLwf_Iech13GwAk1JCxpowp8oJPmhKVM8,18804
286
+ pygeai/evaluation/dataset/clients.py,sha256=q2sBPudCGpSKjxuXZlNzjhsOZtcIrbaf7GKmN7PAMFU,18866
272
287
  pygeai/evaluation/dataset/endpoints.py,sha256=d_llUcXNDncNrIyYgjJ_lMBnX2YPVxmeu8op3N30mLs,2922
273
288
  pygeai/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
- pygeai/evaluation/plan/clients.py,sha256=JSNICKQOXT9fnBn370RxMrjCtmUKYtx9_lHxaSDifT0,12083
289
+ pygeai/evaluation/plan/clients.py,sha256=auQd0gpJTnHlhnrMpTiv7P6RN6t9sBT5B_Q00WfczSQ,12145
275
290
  pygeai/evaluation/plan/endpoints.py,sha256=IzBRZ5lTjeEAwiQUVYr6TCgr6ddZ-LZS3jEp0o1owTQ,1976
276
291
  pygeai/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
- pygeai/evaluation/result/clients.py,sha256=egXTaDBDc8IxW7Pw3xRTxrzL5Q4So3S-L4_xl1q5J2Q,1319
292
+ pygeai/evaluation/result/clients.py,sha256=3Xoa5Im3aOfkjBso_jU_t5JVaaja-KxY1yhxhuJA0xg,1381
278
293
  pygeai/evaluation/result/endpoints.py,sha256=dyWKB8GXaVClHBnC5BCrA3lX717wFPVrKaqIgil7UqY,310
279
294
  pygeai/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
295
  pygeai/flows/endpoints.py,sha256=GK7k2XI49j6Ya6tBcq8_Y4PAN15CE3bbeA8-IlxJAq4,33668
281
296
  pygeai/flows/models.py,sha256=FqrNQo2wPU-oQsHO4kkbDcuLLVc1shQ5EnCHpOb4fL8,24472
282
297
  pygeai/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
- pygeai/gam/clients.py,sha256=YeHK-Zd_k22SFzTU1EPAzM7YEIF6BcuuH-joWmQNZeo,8592
298
+ pygeai/gam/clients.py,sha256=OPDV0pS7Y-W6LcjrX1Gn4tYn_vJ-U7mATCEe3evacgU,7542
284
299
  pygeai/gam/endpoints.py,sha256=Gf9V5PT2wI5qLW3UjG9SI0FWzTcwP8HN4lEFrFxbFPo,500
285
300
  pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
- pygeai/health/clients.py,sha256=U2eb1tkXt1Rf_KdV0ZFQS2k4wGnJTXHHd9-Er0eWQuw,1011
301
+ pygeai/health/clients.py,sha256=kfae4QlRSvTcE8LrDOb80-xFk1TGXKPS2Fie1EqMVx0,816
287
302
  pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
288
303
  pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
- pygeai/lab/clients.py,sha256=vBQHSK3nNWuXxycGlTDKGDtv140Q-0Y4GrvoHkvSeu0,949
304
+ pygeai/lab/clients.py,sha256=SCX3_qPsztvAY6IIr1NXTYk_dwI8ge7v3RILHNocHJI,1011
290
305
  pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
291
306
  pygeai/lab/managers.py,sha256=EGU2NTpZyWtPo-VBX_wSrNOjLNPBIt7cxha9lIbuXgk,70725
292
307
  pygeai/lab/models.py,sha256=1m41gSqpXZVO9AcPVxzlsC-TgxZcCsgGUbpN5zoDMjU,71451
293
308
  pygeai/lab/runners.py,sha256=-uaCPHpFyiKtVOxlEjPjAc9h-onSdGAcYJ5IAZPqlb0,4147
294
309
  pygeai/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
- pygeai/lab/agents/clients.py,sha256=VIbKSDxSNH1P-CX6hF7LUcgtvrE3jvO_gu4KCtyzyls,21213
296
- pygeai/lab/agents/endpoints.py,sha256=RpWbFwqgX_GCVn29DYM46PVon5qjD7C1SmzvcjEKMzI,696
310
+ pygeai/lab/agents/clients.py,sha256=t7_3wlqa4sySFT_XDhBmOXsOE-jhNyAykhwHOYFYXp0,18780
311
+ pygeai/lab/agents/endpoints.py,sha256=m2FwLmoaiK1_5YyEpMklAfCUwum6GpxLc7ZBXFHrdhk,827
297
312
  pygeai/lab/agents/mappers.py,sha256=K6rxsO2Nq6GglmCUmyDKUNmzTG8HRbCelap6qaVKXQw,10583
298
313
  pygeai/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- pygeai/lab/processes/clients.py,sha256=4OUf36Dhyd4hJZomeLcq9XDpLiCINwmfu6tHy69TkDE,49417
314
+ pygeai/lab/processes/clients.py,sha256=nvG64p377dPXQOcqkLv4mxyOS_gRS7aiVbcwktFdpb0,43051
300
315
  pygeai/lab/processes/endpoints.py,sha256=nFIEcNP22xe4j6URI6KcwTh7h-xgYjYYuHT6PDPiO3I,2100
301
316
  pygeai/lab/processes/mappers.py,sha256=YOWcVKdcJmLMAq-f3qevzqQ8L_hjb0_jVXBdCHutpzk,15815
302
317
  pygeai/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
318
  pygeai/lab/spec/loader.py,sha256=Dq9MhLqFwF4RPdBBaqKPGqt43-PrNlsHpe-NXe4S0qQ,709
304
319
  pygeai/lab/spec/parsers.py,sha256=oG7tY-GylweRxpvtCl3p53t0IoTX3UZFiB77x__3Qp8,646
305
320
  pygeai/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
306
- pygeai/lab/strategies/clients.py,sha256=_a1yc8kwd50Yv4g1jqfa0gRnMiROR7Dn0gx3xqFUjVE,10316
321
+ pygeai/lab/strategies/clients.py,sha256=L9vITjI4SIXd7tn4INYlN25cMihTkNFV-HlKZ7ionOA,9142
307
322
  pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
308
323
  pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
309
324
  pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
- pygeai/lab/tools/clients.py,sha256=bwOuMrkGKzNbUal8gAwkz-PNiVZ_ucw9klgP6YZB6QA,28145
311
- pygeai/lab/tools/endpoints.py,sha256=HiGoMs4OVeCgH7EAERTtifFPl53NryA1Awh7D6AO8bA,699
325
+ pygeai/lab/tools/clients.py,sha256=tsLrI_oDrs_0whd6UrRrNDO4Col2uVyQYrjLX6MWEDU,24835
326
+ pygeai/lab/tools/endpoints.py,sha256=uZwRHSYwbzzqpZE-UDv1vLWLed1YV3bgf4DX7xG0sd4,881
312
327
  pygeai/lab/tools/mappers.py,sha256=bYi5k36h0k4mCvOnV-r8YOHKz0U9P0mH21GNs20w2eM,4998
313
328
  pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
314
329
  pygeai/man/man1/__init__.py,sha256=CFvES6cP_sbhgpm-I-QSbPC1f7Bw7cFsMW2-sxm4FtM,54
@@ -318,18 +333,18 @@ pygeai/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
318
333
  pygeai/migration/strategies.py,sha256=fNTPuAPrGPxjbQN6zQn7qaVHksft_rC8doADdUw1LWQ,9785
319
334
  pygeai/migration/tools.py,sha256=DuBWwS72VxXF2b95aw89u0aLBjHP1UhD5GBlUtuG8nA,321
320
335
  pygeai/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
321
- pygeai/organization/clients.py,sha256=O9RMeFm8gm5e6OoJl2y3JTS_MUZEp2Twc8AOpsUTj4M,10073
322
- pygeai/organization/endpoints.py,sha256=LOjwCMjx7wWBIimCzWhNt7cL1WP2IoU9Jtg1tKzRElo,794
323
- pygeai/organization/managers.py,sha256=KVPgmKIUGv71HkqOiW4LvUqWnuRpCu5OcxkewKbpa68,11726
324
- pygeai/organization/mappers.py,sha256=02-xTSE-Tmlhugh2vDIJDpixKI_4UdljcSgmwJIfJp0,2564
325
- pygeai/organization/responses.py,sha256=VetphuyPHeXlB4uNn97kwI4x4XT6-0Eede-eQ_eMXtw,1220
336
+ pygeai/organization/clients.py,sha256=ZACBlRZh_wWI2E6DsqCXpoG3L0JJ1-paTgJgM5ObPrw,12879
337
+ pygeai/organization/endpoints.py,sha256=z70qIdYY2XvzZliF1Nw6ZFHraf4-sdQpF5WDaciypS0,1478
338
+ pygeai/organization/managers.py,sha256=hv6aZTCP8qcs0HSau1tkZepPupbc-82sNV2SzJq66rk,19335
339
+ pygeai/organization/mappers.py,sha256=gIBuZMorym0mLgEa2zEY1fICunuQCW_zG2WYIWnfXwU,4999
340
+ pygeai/organization/responses.py,sha256=GjYDYWrjmPg-Uj6Oa7olr5M9VdlIowPuKmJT5c2HNbk,1716
326
341
  pygeai/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
- pygeai/organization/limits/clients.py,sha256=g-2Fov4ArS_g0xDRaaJ2hFn-4JLW1tdbI1PE21dA-vc,19943
342
+ pygeai/organization/limits/clients.py,sha256=5LQF4Sk2YGtw5NnqQcLPFHAI1nMM-TU0jfRlp8Lo2JU,15015
328
343
  pygeai/organization/limits/endpoints.py,sha256=mtca6U6l47jbbbmGc8KoXCDMnyNHtaPo8dxWVuHuUE0,2578
329
344
  pygeai/organization/limits/managers.py,sha256=fba8goiRXg_yWn0SyOjjhyZcL7VdzGZg-wM5V2yZwWg,14507
330
345
  pygeai/organization/limits/mappers.py,sha256=nINHaXOnZLnpc39PG3xf_7HX6tS9_-cT-H50ARwCGvw,777
331
346
  pygeai/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
- pygeai/proxy/clients.py,sha256=YPRUS3JAbEXgIGZ_dg8VwEXLxvG_hl51o70uudqjYB0,7857
347
+ pygeai/proxy/clients.py,sha256=_DedF8aqEEfSzwBeih8OYU6IgYfnR92B4ksW6aHyXJo,7919
333
348
  pygeai/proxy/config.py,sha256=41fACnnhB21OhnohVPW4sbM8aZbAAEgGo7-dUaM_fpM,5057
334
349
  pygeai/proxy/managers.py,sha256=hXxVeWvkwfb7QrwOGcKyL9qW_wdNTxcpW84ppqwQ0SU,11132
335
350
  pygeai/proxy/servers.py,sha256=gWEceLmla_doKfEx6UJNIfrcr5USqkiYfz0LB9O80vA,11518
@@ -346,7 +361,7 @@ pygeai/tests/assistants/rag/test_clients.py,sha256=fHKi1qwBQSuMz7UPP9zPQslBX9Bsi
346
361
  pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP79jiMC-R1Vnvus,8359
347
362
  pygeai/tests/assistants/rag/test_models.py,sha256=45eAQ4vE3gMvE8qWKlXg2klulQMZ3riHx5XWurE0mVA,10790
348
363
  pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
- pygeai/tests/auth/test_clients.py,sha256=QvVr0CC4wD4lV7tnS2Sg1vc4-ucxmjiXuicyDAeTrgg,4253
364
+ pygeai/tests/auth/test_clients.py,sha256=3lGL485cbEUlVgD4XGC604XTKG6WV-1wAXj3xYCjPTc,11441
350
365
  pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
366
  pygeai/tests/chat/test_clients.py,sha256=zYV3p9F0UPUoyYZlH-c8CoSL-6abrHhbS_6bAtkHa5E,7655
352
367
  pygeai/tests/chat/test_iris.py,sha256=kWGrQ0T7E5Lg9-F9157GvF32l1sbaejbI5qbGKjWkxM,1186
@@ -488,8 +503,8 @@ pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
488
503
  pygeai/tests/migration/test_strategies.py,sha256=Mj7ICxTp35U4hKXZvhbmyfGdvueQDVIKqgLNcmwh8Pk,26246
489
504
  pygeai/tests/migration/test_tools.py,sha256=3hIgeHr-qxw9M23Xi_iqI7jrz-ISMI3IrGdZwerE8ic,1174
490
505
  pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
491
- pygeai/tests/organization/test_clients.py,sha256=nipjF1aQP3gHBF3WvgSUxgkeTMGG8_2zb0VjQrU8KW4,13695
492
- pygeai/tests/organization/test_managers.py,sha256=7-ct1iJCFrCRNO0ws_Fh5w_XKL7IN30jL0Y8e9yY5To,12730
506
+ pygeai/tests/organization/test_clients.py,sha256=_s7ZGt8vJhNETFkyLViXNNw9CV0gXPYqEkRnG8LnzyA,21268
507
+ pygeai/tests/organization/test_managers.py,sha256=Pc6tsQ3TxI_0ZLeMsEGjxPO5Z0dmk0oMy99n5xPmLDI,19872
493
508
  pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
494
509
  pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
495
510
  pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -525,6 +540,7 @@ pygeai/tests/snippets/assistants/rag/get_documents.py,sha256=I1w6R4kUF6ncayNDOvQ
525
540
  pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py,sha256=YNgx-0AuxrOrj5o1jTBmOjbt8vtcddlHdBe0Pb2vyU8,262
526
541
  pygeai/tests/snippets/assistants/rag/update_rag_assistant.py,sha256=sOMTENyjCjLmv9ZKzwL3Ub5_nTyu3frZTQx7PbSUxdg,1271
527
542
  pygeai/tests/snippets/assistants/rag/upload_document.py,sha256=ZcD6-_vexP1y7xCDzuI8qLtE2W4msf8raD-QBwbgC8s,489
543
+ pygeai/tests/snippets/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
528
544
  pygeai/tests/snippets/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
529
545
  pygeai/tests/snippets/chat/cancel_request.py,sha256=nPY2M8uF67y3slhdK2dPKsWE5wyiWEo4seTuZnnDJrs,192
530
546
  pygeai/tests/snippets/chat/chat_completion.py,sha256=NrLGpU2D5hDRfvVqMYVEq2rjM8BWbMOfUieOq10uDx0,548
@@ -612,8 +628,13 @@ pygeai/tests/snippets/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
612
628
  pygeai/tests/snippets/organization/create_project.py,sha256=XxHeV_e3o2SvFTYzbCYp9YFnd1WGYBZE5G-bhBiOw3M,578
613
629
  pygeai/tests/snippets/organization/delete_project.py,sha256=jLzHa_ra-T3XtO-eiegv4667TiKFfkuODsqKC6mIECI,201
614
630
  pygeai/tests/snippets/organization/export_request_data.py,sha256=hNHAZaUDKm7fRttEYl14m5VtZRW1HKt62BFk5wip-Gk,166
631
+ pygeai/tests/snippets/organization/get_memberships.py,sha256=PXDUf-ahEZ2gLYmRON-SqBbl5d8zhQU5T3vy_JAiSSU,320
632
+ pygeai/tests/snippets/organization/get_organization_members.py,sha256=bhgtHmOwJG9WXd7oPBm6efpKjv3cV-ezASoqjL-BwtU,226
615
633
  pygeai/tests/snippets/organization/get_project_data.py,sha256=bvoBOa-r4kiaVrXV4OeDNreAIA_mifqEU_MAnPpKqjM,228
616
634
  pygeai/tests/snippets/organization/get_project_list.py,sha256=Hq0E96BD78iAqAqIfoys5yQAEQp4gYQcJuQKZwy0bhU,219
635
+ pygeai/tests/snippets/organization/get_project_members.py,sha256=2trMrEce7YZvqJVJzsnj5EeUnJCA9Etd8awYqOnmYS8,216
636
+ pygeai/tests/snippets/organization/get_project_memberships.py,sha256=ggiO7NBrfQj6HZFu72P8ZCVXAS6fcA6zKp2w3oU_FFM,294
637
+ pygeai/tests/snippets/organization/get_project_roles.py,sha256=uM5nQbqGLh30B80POmN-ZXrep6Od9NsYOClBI-mr6_I,228
617
638
  pygeai/tests/snippets/organization/get_project_tokens.py,sha256=VUgmP-9hCHKAyDSFaru8AwKT-CmdU8dr-Ww8EXTLAJU,205
618
639
  pygeai/tests/snippets/organization/update_project.py,sha256=z4a3Etes-bpE2k-8eGTo8E5NN-F4uFQG7tXik2V5hZk,383
619
640
  pygeai/tests/snippets/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -674,9 +695,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
674
695
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
675
696
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
676
697
  pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
677
- pygeai-0.6.0b6.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
678
- pygeai-0.6.0b6.dist-info/METADATA,sha256=Kau106L0Ux370EiBA6fXG3fRQhhq_dYqnJBfzjriWRU,7977
679
- pygeai-0.6.0b6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
680
- pygeai-0.6.0b6.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
681
- pygeai-0.6.0b6.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
682
- pygeai-0.6.0b6.dist-info/RECORD,,
698
+ pygeai-0.6.0b7.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
699
+ pygeai-0.6.0b7.dist-info/METADATA,sha256=RDSvdGL-Tn7qWv6rdnAjNX2dznl8QF3Po9KrIhtmoww,7977
700
+ pygeai-0.6.0b7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
701
+ pygeai-0.6.0b7.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
702
+ pygeai-0.6.0b7.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
703
+ pygeai-0.6.0b7.dist-info/RECORD,,