pygeai 0.6.0b10__py3-none-any.whl → 0.6.0b12__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 (135) hide show
  1. pygeai/_docs/source/content/ai_lab/cli.rst +4 -4
  2. pygeai/_docs/source/content/ai_lab/models.rst +169 -35
  3. pygeai/_docs/source/content/ai_lab/runner.rst +2 -2
  4. pygeai/_docs/source/content/ai_lab/spec.rst +9 -9
  5. pygeai/_docs/source/content/ai_lab/usage.rst +34 -34
  6. pygeai/_docs/source/content/ai_lab.rst +1 -1
  7. pygeai/_docs/source/content/analytics.rst +598 -0
  8. pygeai/_docs/source/content/api_reference/chat.rst +428 -2
  9. pygeai/_docs/source/content/api_reference/embeddings.rst +1 -1
  10. pygeai/_docs/source/content/api_reference/project.rst +184 -0
  11. pygeai/_docs/source/content/api_reference/rag.rst +2 -2
  12. pygeai/_docs/source/content/authentication.rst +295 -0
  13. pygeai/_docs/source/content/cli.rst +79 -2
  14. pygeai/_docs/source/content/debugger.rst +1 -1
  15. pygeai/_docs/source/content/migration.rst +19 -2
  16. pygeai/_docs/source/index.rst +2 -0
  17. pygeai/_docs/source/pygeai.analytics.rst +53 -0
  18. pygeai/_docs/source/pygeai.cli.commands.rst +8 -0
  19. pygeai/_docs/source/pygeai.rst +1 -0
  20. pygeai/_docs/source/pygeai.tests.analytics.rst +45 -0
  21. pygeai/_docs/source/pygeai.tests.auth.rst +8 -0
  22. pygeai/_docs/source/pygeai.tests.rst +1 -1
  23. pygeai/analytics/__init__.py +0 -0
  24. pygeai/analytics/clients.py +505 -0
  25. pygeai/analytics/endpoints.py +35 -0
  26. pygeai/analytics/managers.py +606 -0
  27. pygeai/analytics/mappers.py +207 -0
  28. pygeai/analytics/responses.py +240 -0
  29. pygeai/chat/clients.py +46 -1
  30. pygeai/chat/endpoints.py +1 -0
  31. pygeai/cli/commands/analytics.py +525 -0
  32. pygeai/cli/commands/base.py +16 -0
  33. pygeai/cli/commands/chat.py +95 -0
  34. pygeai/cli/commands/common.py +28 -24
  35. pygeai/cli/commands/migrate.py +75 -6
  36. pygeai/cli/commands/organization.py +265 -0
  37. pygeai/cli/commands/validators.py +144 -1
  38. pygeai/cli/error_handler.py +41 -6
  39. pygeai/cli/geai.py +99 -16
  40. pygeai/cli/parsers.py +75 -31
  41. pygeai/cli/texts/help.py +75 -6
  42. pygeai/core/base/clients.py +18 -4
  43. pygeai/core/base/session.py +46 -7
  44. pygeai/core/common/config.py +25 -2
  45. pygeai/core/common/exceptions.py +64 -1
  46. pygeai/core/services/rest.py +20 -2
  47. pygeai/evaluation/clients.py +5 -3
  48. pygeai/lab/agents/clients.py +3 -3
  49. pygeai/lab/agents/endpoints.py +2 -2
  50. pygeai/lab/agents/mappers.py +50 -2
  51. pygeai/lab/clients.py +5 -2
  52. pygeai/lab/managers.py +7 -9
  53. pygeai/lab/models.py +70 -2
  54. pygeai/lab/tools/clients.py +1 -59
  55. pygeai/migration/__init__.py +3 -1
  56. pygeai/migration/strategies.py +72 -3
  57. pygeai/organization/clients.py +110 -1
  58. pygeai/organization/endpoints.py +11 -7
  59. pygeai/organization/managers.py +134 -2
  60. pygeai/organization/mappers.py +28 -2
  61. pygeai/organization/responses.py +11 -1
  62. pygeai/tests/analytics/__init__.py +0 -0
  63. pygeai/tests/analytics/test_clients.py +86 -0
  64. pygeai/tests/analytics/test_managers.py +94 -0
  65. pygeai/tests/analytics/test_mappers.py +84 -0
  66. pygeai/tests/analytics/test_responses.py +73 -0
  67. pygeai/tests/auth/test_oauth.py +172 -0
  68. pygeai/tests/cli/commands/test_migrate.py +14 -1
  69. pygeai/tests/cli/commands/test_organization.py +69 -1
  70. pygeai/tests/cli/test_error_handler.py +4 -4
  71. pygeai/tests/cli/test_geai_driver.py +1 -1
  72. pygeai/tests/lab/agents/test_mappers.py +128 -1
  73. pygeai/tests/lab/test_models.py +2 -0
  74. pygeai/tests/lab/tools/test_clients.py +2 -31
  75. pygeai/tests/organization/test_clients.py +180 -1
  76. pygeai/tests/organization/test_managers.py +40 -0
  77. pygeai/tests/snippets/analytics/__init__.py +0 -0
  78. pygeai/tests/snippets/analytics/get_agent_usage_per_user.py +16 -0
  79. pygeai/tests/snippets/analytics/get_agents_created_and_modified.py +11 -0
  80. pygeai/tests/snippets/analytics/get_average_cost_per_request.py +10 -0
  81. pygeai/tests/snippets/analytics/get_overall_error_rate.py +10 -0
  82. pygeai/tests/snippets/analytics/get_top_10_agents_by_requests.py +12 -0
  83. pygeai/tests/snippets/analytics/get_total_active_users.py +10 -0
  84. pygeai/tests/snippets/analytics/get_total_cost.py +10 -0
  85. pygeai/tests/snippets/analytics/get_total_requests_per_day.py +12 -0
  86. pygeai/tests/snippets/analytics/get_total_tokens.py +12 -0
  87. pygeai/tests/snippets/chat/get_response_complete_example.py +67 -0
  88. pygeai/tests/snippets/chat/get_response_with_instructions.py +19 -0
  89. pygeai/tests/snippets/chat/get_response_with_metadata.py +24 -0
  90. pygeai/tests/snippets/chat/get_response_with_parallel_tools.py +58 -0
  91. pygeai/tests/snippets/chat/get_response_with_reasoning.py +21 -0
  92. pygeai/tests/snippets/chat/get_response_with_store.py +38 -0
  93. pygeai/tests/snippets/chat/get_response_with_truncation.py +24 -0
  94. pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py +39 -0
  95. pygeai/tests/snippets/lab/agents/create_agent_with_properties.py +46 -0
  96. pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py +62 -0
  97. pygeai/tests/snippets/lab/agents/update_agent_properties.py +50 -0
  98. pygeai/tests/snippets/organization/add_project_member.py +10 -0
  99. pygeai/tests/snippets/organization/add_project_member_batch.py +44 -0
  100. {pygeai-0.6.0b10.dist-info → pygeai-0.6.0b12.dist-info}/METADATA +1 -1
  101. {pygeai-0.6.0b10.dist-info → pygeai-0.6.0b12.dist-info}/RECORD +105 -95
  102. pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst +0 -37
  103. pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst +0 -85
  104. pygeai/_docs/source/pygeai.tests.snippets.assistants.rst +0 -78
  105. pygeai/_docs/source/pygeai.tests.snippets.auth.rst +0 -10
  106. pygeai/_docs/source/pygeai.tests.snippets.chat.rst +0 -125
  107. pygeai/_docs/source/pygeai.tests.snippets.dbg.rst +0 -45
  108. pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst +0 -61
  109. pygeai/_docs/source/pygeai.tests.snippets.evaluation.dataset.rst +0 -197
  110. pygeai/_docs/source/pygeai.tests.snippets.evaluation.plan.rst +0 -133
  111. pygeai/_docs/source/pygeai.tests.snippets.evaluation.result.rst +0 -37
  112. pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst +0 -20
  113. pygeai/_docs/source/pygeai.tests.snippets.extras.rst +0 -37
  114. pygeai/_docs/source/pygeai.tests.snippets.files.rst +0 -53
  115. pygeai/_docs/source/pygeai.tests.snippets.gam.rst +0 -21
  116. pygeai/_docs/source/pygeai.tests.snippets.lab.agents.rst +0 -93
  117. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.jobs.rst +0 -21
  118. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.kbs.rst +0 -45
  119. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.rst +0 -46
  120. pygeai/_docs/source/pygeai.tests.snippets.lab.rst +0 -82
  121. pygeai/_docs/source/pygeai.tests.snippets.lab.samples.rst +0 -21
  122. pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst +0 -45
  123. pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst +0 -85
  124. pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst +0 -117
  125. pygeai/_docs/source/pygeai.tests.snippets.migrate.rst +0 -10
  126. pygeai/_docs/source/pygeai.tests.snippets.organization.rst +0 -109
  127. pygeai/_docs/source/pygeai.tests.snippets.rag.rst +0 -85
  128. pygeai/_docs/source/pygeai.tests.snippets.rerank.rst +0 -21
  129. pygeai/_docs/source/pygeai.tests.snippets.rst +0 -32
  130. pygeai/_docs/source/pygeai.tests.snippets.secrets.rst +0 -10
  131. pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst +0 -77
  132. {pygeai-0.6.0b10.dist-info → pygeai-0.6.0b12.dist-info}/WHEEL +0 -0
  133. {pygeai-0.6.0b10.dist-info → pygeai-0.6.0b12.dist-info}/entry_points.txt +0 -0
  134. {pygeai-0.6.0b10.dist-info → pygeai-0.6.0b12.dist-info}/licenses/LICENSE +0 -0
  135. {pygeai-0.6.0b10.dist-info → pygeai-0.6.0b12.dist-info}/top_level.txt +0 -0
@@ -2,9 +2,10 @@ 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=H6XjfAFdBZ5H4aqxy88TzUQBfUYeVZSxIFbOACqLlUM,3591
5
- pygeai/_docs/source/index.rst,sha256=A930R3a3mBzMUrRP6EjTxFMS-rrC40nO3SNG9xw4q9A,1630
5
+ pygeai/_docs/source/index.rst,sha256=CKivWclumgTupSLURmhgtjvD1CMoCc2AHo_3XGVlrkY,1677
6
6
  pygeai/_docs/source/modules.rst,sha256=LrEcy3DTRTHFjGk0PcMgSVdy4cKmEDQW_GnwvPvtSic,55
7
7
  pygeai/_docs/source/pygeai.admin.rst,sha256=BErqezo4qPNthV4QTQl9sNpPJrBfQ904R93xTky4bEI,486
8
+ pygeai/_docs/source/pygeai.analytics.rst,sha256=ojlWMqI-3-mJXUKD2OnfdV0e8X3x1Usan-lXKSEXAOQ,1014
8
9
  pygeai/_docs/source/pygeai.assistant.data.rst,sha256=CObeMQ4LO1NCIfg_FBkbdJAYwMfxkKLgMz1iXIonAf4,385
9
10
  pygeai/_docs/source/pygeai.assistant.data_analyst.rst,sha256=r5q_HYl5dlb0_z2Yh8_dTmkgZIWo2Al0IJ1i-ZSEDcA,645
10
11
  pygeai/_docs/source/pygeai.assistant.rag.rst,sha256=Y-JNIBd2sGwX_qclqmDKMSQHbniZhiFe_1FeG5NkCIk,1080
@@ -13,7 +14,7 @@ pygeai/_docs/source/pygeai.auth.rst,sha256=99Dbf-hng18guWy1Bi8_6jvCZtVQ6xFWrHz6L
13
14
  pygeai/_docs/source/pygeai.chat.rst,sha256=cW35lNsOImawmYiriUwSGjJITGnx0Kxa_wYJRnACwvw,1189
14
15
  pygeai/_docs/source/pygeai.cli.commands.flows.rst,sha256=_oPTa5gn3jtsYo8SSjr5LWp3hHkOcVXa-9sOXwST8Ik,198
15
16
  pygeai/_docs/source/pygeai.cli.commands.lab.rst,sha256=48iA3vbixQBMmBmnthf_Jy7jJhHyozhXFXNki-zmOTY,1106
16
- pygeai/_docs/source/pygeai.cli.commands.rst,sha256=XLmfgH8bMFtgM6hTBq-2mcp6RrXYw1MQ4K45hTCyUvE,4394
17
+ pygeai/_docs/source/pygeai.cli.commands.rst,sha256=naVP0RQe8KdetRfXjdUPNG9ZGXeUIFOHffi02JiEeus,4570
17
18
  pygeai/_docs/source/pygeai.cli.rst,sha256=KDv2owHUAqulKv_AEpgmXnvoTGkPUyBUnyGD90tWFcM,1026
18
19
  pygeai/_docs/source/pygeai.cli.texts.rst,sha256=z2dfcJAwQPLkfDJxTp7iyGJ5KijBhC7LcRlbdSB3bqw,346
19
20
  pygeai/_docs/source/pygeai.core.base.rst,sha256=IKexE5NtfxU_oot-y4dwKGPkvTjyuFD8B4LE_dPXEJw,1002
@@ -49,11 +50,12 @@ pygeai/_docs/source/pygeai.migration.rst,sha256=LmccQTJ1idwY37lg8-29pTm6szsgaSbY
49
50
  pygeai/_docs/source/pygeai.organization.limits.rst,sha256=5rjKRtaXl_FUQss_UuQjws-kej97IbMqvS9hks_3fxg,997
50
51
  pygeai/_docs/source/pygeai.organization.rst,sha256=91Fby-1S78q0VJ8Yt5iGJ2M2brqtXqH3vlNKJj63dk4,1154
51
52
  pygeai/_docs/source/pygeai.proxy.rst,sha256=XgZwF0OmOUJa_AasledYKAIH3JPIubOUEnO4SIf0LKk,918
52
- pygeai/_docs/source/pygeai.rst,sha256=yaUcMIMQP246VTVdGu_9KKKNxChVbffx3OUy4wUcAeY,477
53
+ pygeai/_docs/source/pygeai.rst,sha256=cG7q_r3eWOb46QEmMgmkWB7C5k7ZAC7OPzODrp_Thlk,497
53
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
54
56
  pygeai/_docs/source/pygeai.tests.assistants.rag.rst,sha256=aTM3TccZgohUBwVqJx7lbVQsH_p_d5LvUCKMBV4UjeE,857
55
57
  pygeai/_docs/source/pygeai.tests.assistants.rst,sha256=JlPdf3soviMwSH6HAXjdgI7qFsqN5GL_NQLJjnQ8bYI,902
56
- pygeai/_docs/source/pygeai.tests.auth.rst,sha256=OEQtek7xgptYQpZfetx2xX7ZrMaf3CKWIJUHiqUb9-w,378
58
+ pygeai/_docs/source/pygeai.tests.auth.rst,sha256=rIN_G0taG6n1QCN0FUv5--aUltIRsXRKkNtxZF4K29Q,553
57
59
  pygeai/_docs/source/pygeai.tests.chat.rst,sha256=xiTEjTTXU0hLeIaNx32u30HuqDDlHuBN8oOD2GaY-yA,897
58
60
  pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst,sha256=Ph5mvvnfn7qTDtbgU3ScxVzZGcRqvguVpUzboTnEiig,871
59
61
  pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=95znjo_v7JLK2FZcUPnE57ofrW4CHF3U8OeYeqsEkHA,4019
@@ -99,71 +101,49 @@ pygeai/_docs/source/pygeai.tests.migration.rst,sha256=RrOUG2jhf9ZPmhrj8sRbzoV8f3
99
101
  pygeai/_docs/source/pygeai.tests.organization.limits.rst,sha256=TQGsWAEkfgblivHoYUZ7VBgNDEo7B1SbocYPdX_LWqI,697
100
102
  pygeai/_docs/source/pygeai.tests.organization.rst,sha256=81b5GWMVbJ0vGwM0I2lA1frwxReEEdv3cHiFCrZ3yhY,1142
101
103
  pygeai/_docs/source/pygeai.tests.proxy.rst,sha256=k3_wXvaRaXGEo77ETI-TD0n7f9hCgAVmEGP_Osw35vs,1307
102
- pygeai/_docs/source/pygeai.tests.rst,sha256=Vr0Trtak7qWb3o-cbUofIewUin-wu2WwPCsvb8BTTJQ,587
103
- pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst,sha256=9BhQEuja2fubrvK96gwfC1kP9bpHIS4KyWm9Pww8wKc,1098
104
- pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst,sha256=MJjQOlUuJRHrVZGP2JXx0HqM-WfdxQN_k0fLaH4ihPo,2552
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
107
- pygeai/_docs/source/pygeai.tests.snippets.chat.rst,sha256=NbcsP4amd1XlkKs5NpCtCnsCX1IGQRI8GyrlfpeE9fc,3484
108
- pygeai/_docs/source/pygeai.tests.snippets.dbg.rst,sha256=e-ulTTAz6q3HqWB7_rNS0cUYTJ5xUT6M5DWAmWuyChw,1101
109
- pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst,sha256=5ZbUpABPIIubh_lrB7BFMQHlygeJSf8wmlcLo6AHfdg,1681
110
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.dataset.rst,sha256=JyDjU5J_i-C40T1LtgCH5yYlePvqWB5tIn5rtlDxkQo,6539
111
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.plan.rst,sha256=WCFRqVASkb1LXSomboRI9oyuDP_IwgrOPy9eah8IfxE,4376
112
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.result.rst,sha256=HljXbQugGrdcgk5GyDoIh4d9SY_OGDihP0OpeZ0g2pk,1109
113
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst,sha256=THfX5Ole6p24ITLZQKc4p2Grdk8jYstvBAGrjlLABFE,403
114
- pygeai/_docs/source/pygeai.tests.snippets.extras.rst,sha256=XUrOZUU24z5NrgX5h-FHQvfl1YsqFcaSNTjMRRgcwWQ,819
115
- pygeai/_docs/source/pygeai.tests.snippets.files.rst,sha256=gx-f28YqxMRkuCoNexEpJEUcAbdXT1gDbouXYJZo0pI,1300
116
- pygeai/_docs/source/pygeai.tests.snippets.gam.rst,sha256=0c1zqQVNLKyklJnZ9sEHsfjTDVf_v658ZX2Iyh8VFco,440
117
- pygeai/_docs/source/pygeai.tests.snippets.lab.agents.rst,sha256=hP-NzSfM0NtyXMJmhiZ7wGQuR2KLLNrT8NwcVF--dRI,2645
118
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.jobs.rst,sha256=12peXKT3abH8_L8h7HNEfab5h8uX60bRjpdVd9Qws9g,507
119
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.kbs.rst,sha256=pt-fr9vO-zOGdM1Bx20oY_4f85262Uq6fy_JlEhcJNA,1197
120
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.rst,sha256=U5ReDbjjWP22zKPYIZlAl6W3rk9TQHyOA_9cyqWL8aQ,1108
121
- pygeai/_docs/source/pygeai.tests.snippets.lab.rst,sha256=a73MGdOmnecAcOWX_SDy-tRbApLBot-GvwNQw1APvuY,2067
122
- pygeai/_docs/source/pygeai.tests.snippets.lab.samples.rst,sha256=I7es8UpNuPQB_E08IxoSuT7GFG-mxpQdfRVtcpUHzZU,483
123
- pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst,sha256=hSZDlOoBFX9CIjIZdTcQWYytobOUyLA9Iy3JZ6sQQQo,1361
124
- pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst,sha256=Z5sN-ocA04__NI_UHJZ8Cy-LbAMj7fcHiac49Gg9P-k,2288
125
- pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst,sha256=56o_i5rP3eLyrFmiJjnJ80nSC5awhoZ4G-1-MEhjn2M,3716
126
- pygeai/_docs/source/pygeai.tests.snippets.migrate.rst,sha256=Z9WmOIr1MFCpDP72QD02yI7M4Z7a6QBF949ONYQDJ4E,210
127
- pygeai/_docs/source/pygeai.tests.snippets.organization.rst,sha256=sSwv9PHlUX5kNRdFnhbcRLd-y3UUXX6-y-PWeF1jl5A,3243
128
- pygeai/_docs/source/pygeai.tests.snippets.rag.rst,sha256=v_FFSm6fVE4CVOW79HI8piz8MOYa8PEvm28WoPpQGRo,2222
129
- pygeai/_docs/source/pygeai.tests.snippets.rerank.rst,sha256=RwkOt3kGBsoUtiqmA3rMeMDMkZ-idMm08VWnMzo3w2c,447
130
- pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=3g_Yeg7AxMB_i9fnmLT-SAtS1DVnkVXnskoKn_D4lDI,733
131
- pygeai/_docs/source/pygeai.tests.snippets.secrets.rst,sha256=kWSmN3I-MuhpeabIskpz7m3YpPBlFrYA73mt5m5zk-E,210
132
- pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst,sha256=S2oNQdHLRyNdfBijqJMDl_nyq094M8yy9Fu1OyeDjo8,2517
133
- pygeai/_docs/source/content/ai_lab.rst,sha256=t0NSjKhjY8snu9VxgY4PE8PYz4LtumyMnhhbxmOR1oY,11519
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
134
107
  pygeai/_docs/source/content/api_reference.rst,sha256=S9C7RYf9m5DLVL7aGQJNJ89DjFLGiajX2TwFMWrlLg8,2767
108
+ pygeai/_docs/source/content/authentication.rst,sha256=VCX67tZeqU3TVAvLJ4t1XSRDoiePEublyRPRoqhs3z0,7842
135
109
  pygeai/_docs/source/content/chat_gui.rst,sha256=0nnQFh_m4V-TqbeZXTKYMzU6gmPTOwRHrkqaZ16098k,6805
136
- pygeai/_docs/source/content/cli.rst,sha256=roIhLfeb0XAspXLbivHGSUMi-83RZ59rTGJbSfNMmt4,3178
137
- pygeai/_docs/source/content/debugger.rst,sha256=hhGUElT-d91bozWMPJcXCodtBNKvb8rJPfCMC-Qznwk,15111
110
+ pygeai/_docs/source/content/cli.rst,sha256=WZFfxzmvFTmoi88uZO6VA96b5bUVApJ8QkXmCBPRrnI,5501
111
+ pygeai/_docs/source/content/debugger.rst,sha256=dc3mj6YxmBlyiOKk67AmFzfLkj7P4VWzU_j2R83zTCw,15112
138
112
  pygeai/_docs/source/content/intro.rst,sha256=nRoIXypN6xGN9kaqTJM5HrhE0LPn7bnk0CDFeRixito,4532
139
- pygeai/_docs/source/content/migration.rst,sha256=DX6AaAjEUPwrXlbAg5V35AUD8R1GDMmF8-SHLbk_kHw,19304
113
+ pygeai/_docs/source/content/migration.rst,sha256=L19u9CanjcAt5ZVcpombvjt7I8ABcisVIKIUQtsYCGM,19898
140
114
  pygeai/_docs/source/content/modules.rst,sha256=MufbaO6dfESPq2yqhk9xpCsfSMdhNRcTuODE6LW1HxE,78
141
115
  pygeai/_docs/source/content/quickstart.rst,sha256=bsz8ZwTJTWlznnPNq3XJJuOXuV63-7UKqur2YHGD8No,4159
142
116
  pygeai/_docs/source/content/samples.rst,sha256=BfRzjBDVgiegbW1OPczZvq1LvS-aHGCH-zDmbX6mNPI,12488
143
- pygeai/_docs/source/content/ai_lab/cli.rst,sha256=4ZhP4XfYYREWaVpfU4jEWw4SHpJECtFC7KH1KoCSj9M,24683
144
- pygeai/_docs/source/content/ai_lab/models.rst,sha256=7sN2LjrP6MGMA6ebDmXiJNeN64aveE1a-9C8eiN7J0g,36360
145
- pygeai/_docs/source/content/ai_lab/runner.rst,sha256=_g2VW8Pqyl4EpK5UMU6Sgbmf5Y6zV6qcS3pfRj9I0Qc,13887
146
- pygeai/_docs/source/content/ai_lab/spec.rst,sha256=8BFIJxzLp3Vdar2kaqGEsw4NO5jiIsgysSDtvBBKZ44,16487
147
- pygeai/_docs/source/content/ai_lab/usage.rst,sha256=bTlyiAhWckTdkcWyLntJmJOzcYseYf4D4EqexQNu_s8,28564
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
148
122
  pygeai/_docs/source/content/api_reference/admin.rst,sha256=v_o5I_B3ND6fu_v8gOpGKvR_ekI6EPU4EEIZLdDnPT0,3401
149
123
  pygeai/_docs/source/content/api_reference/assistant.rst,sha256=5-XseBnf-s-UfttcYW0SUWD8WoL6FQMfmXqw024h2EA,7326
150
124
  pygeai/_docs/source/content/api_reference/auth.rst,sha256=to_Bjp1BnJ-iOf8Yg2UUjuOZ7FcLJleeu-Qh-lwAQrM,10057
151
- pygeai/_docs/source/content/api_reference/chat.rst,sha256=vacD71YEqUGEVoWxlcyEbXqDP5ng6FUsKJdbycy3t9Y,10670
152
- pygeai/_docs/source/content/api_reference/embeddings.rst,sha256=F__81B25D7NZsYHBa1gHFWjRo8eB55CR3ZZTHgnCo08,5417
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
153
127
  pygeai/_docs/source/content/api_reference/evaluation.rst,sha256=ggFOdTi-5i869-na7p_IV1A2Kk8DmfKkwtTAYTlxn6M,16247
154
128
  pygeai/_docs/source/content/api_reference/feedback.rst,sha256=6Duc-x4Hwp2bc3KHwtJ6pHg8WxT6_zq3Mor2A1NPoTE,5963
155
129
  pygeai/_docs/source/content/api_reference/files.rst,sha256=wWZvaVDvcGvXSkpEKhKQVYk6Fgm56D_OoaYYwjyz8tw,13659
156
130
  pygeai/_docs/source/content/api_reference/gam.rst,sha256=U__bhQkho3NDllHBQd9cSIn-LyVExy0zZi4RxaDoZxY,10553
157
131
  pygeai/_docs/source/content/api_reference/health.rst,sha256=hEVzFsP1BnJL7fzAQV1sUYa0iFDI8GKJ1E54Oewpr5Y,1041
158
- pygeai/_docs/source/content/api_reference/project.rst,sha256=rA-5-ihTlzCckszlrxaGMKpkhruZ-REe8kO8Yd3xX1Y,16401
132
+ pygeai/_docs/source/content/api_reference/project.rst,sha256=wqWJKgXcbLf9Ttl_l20TmcJ-JfklJB9nbSYLtMCh8wY,21835
159
133
  pygeai/_docs/source/content/api_reference/proxy.rst,sha256=kXcanBNP53t3eegGe7khVYOKOSjqlM6hHyrH8O0g7J0,7434
160
- pygeai/_docs/source/content/api_reference/rag.rst,sha256=Y5azvt5V9I3jS7qySc4LaQqkjCHtgspDiJkHBHGQ9Gc,18818
134
+ pygeai/_docs/source/content/api_reference/rag.rst,sha256=cB_GTuDK1RPFjK0tIISsPPViGZGLaFGUmWpm_ltAVjI,18820
161
135
  pygeai/_docs/source/content/api_reference/rerank.rst,sha256=zuoqmc2yW_M-tJ5IkYtaGxF2hHf4zFqnKWrL2zMh7Ig,2436
162
136
  pygeai/_docs/source/content/api_reference/secrets.rst,sha256=HYxpExPhYIxdqff3u1REP0xYfodBkTB1kr5sHQavu00,12284
163
137
  pygeai/_docs/source/content/api_reference/usage_limits.rst,sha256=XiOWcogv-AC6FrjmH_3re165RUi-eTq7IKzU9uvIjsw,9051
164
138
  pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
139
  pygeai/admin/clients.py,sha256=X7Ps_VqSD6NAMdWO6wm7Gbis5-67OJQkOa5lqHCmWi8,5348
166
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=nt9ZYUh9lbnhRmz_PZwYxsWXUxWCIRVGrqsviHofBF4,26218
145
+ pygeai/analytics/mappers.py,sha256=enenIBwJHHqPAyAvo2juro4TjXAtSAA885EnbzWDlIE,10893
146
+ pygeai/analytics/responses.py,sha256=OWb_kkwxwa--dJQo8W3_2PtZhdFJAPpwrbvb2qdEajU,4813
167
147
  pygeai/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
148
  pygeai/assistant/clients.py,sha256=gGhALWddo30SM7mvoDe2TM9cVQrJ8RzoI4LVQ8ov9VQ,9856
169
149
  pygeai/assistant/endpoints.py,sha256=7LuXWm0-sbrmHsngqW63wuk37K24wcMLinmJ6HdSimg,1026
@@ -184,8 +164,8 @@ pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
164
  pygeai/auth/clients.py,sha256=3Eg9d9XJlPCIXz2N90LalchahV2gPaD0DWj8iBcw41Y,5422
185
165
  pygeai/auth/endpoints.py,sha256=KOZ5gS8I8MIamlfbj4bN8w6kMmIdAKr6puKJrw0cEtw,589
186
166
  pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
- pygeai/chat/clients.py,sha256=ANxYMn6vslPW-J4vjVl09CM4TOdSferrDIEcsE_7Fg0,18129
188
- pygeai/chat/endpoints.py,sha256=4X00h4RPyCo-KNuNca51K78dBtRzp75kDYTzAR1QpNI,281
167
+ pygeai/chat/clients.py,sha256=-PovdRQnwpsHtqoH0UNyAvx8XhDm8xLcZyvTBmsqhNc,19829
168
+ pygeai/chat/endpoints.py,sha256=r_zvsL5UIqnqhz9I0CG0eQSKV-egwx6EKdaZXj-HndA,343
189
169
  pygeai/chat/iris.py,sha256=-9pDHQpWhR_PvbZ6rD8eMPFk46PI9sCdPQ9aAyvSexs,413
190
170
  pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
191
171
  pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
@@ -193,19 +173,20 @@ pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
193
173
  pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
194
174
  pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
195
175
  pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
196
- pygeai/cli/error_handler.py,sha256=xJ3eHuYmGMDq58CxIlFhgCE0e8zLEWZPbU1kK2YXk6Q,4576
197
- pygeai/cli/geai.py,sha256=CFb5ssC_98VuvdqiTUjFatjPWWDhv1zI9MUYYGYv9ck,5376
176
+ pygeai/cli/error_handler.py,sha256=Lw28yRk0mBvwMpuYrfbYV87g_AHoiidZo9SakoOZva4,5745
177
+ pygeai/cli/geai.py,sha256=JosBT-BjcbRNStFfz4K2uJgbHCZW9aPOj15KBTGjPlY,9090
198
178
  pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
199
179
  pygeai/cli/install_man.py,sha256=DjZ3k05sKSzpLFqsU4LHz1b37NHLVdOvS6oZihdBSis,3794
200
- pygeai/cli/parsers.py,sha256=tN9OhmFdAHmRcljwN5_NhqFoU14dUGggZQ81ErgYVTk,2699
180
+ pygeai/cli/parsers.py,sha256=0Y38zQ9tG9rqVspr-ksV6LrC0Ynt8uBWbvae89HAWe8,4716
201
181
  pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
202
182
  pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
183
+ pygeai/cli/commands/analytics.py,sha256=IvGQ9eBaXKyp3f1rJyZBkINmXHcITSwmU_SNaptrl3g,19710
203
184
  pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
204
185
  pygeai/cli/commands/auth.py,sha256=w1XIcTYh7SQ4keOhQiJiUJ2NFMY349K53P2BoGe2Rgc,8318
205
- pygeai/cli/commands/base.py,sha256=OKlYNpQvTCxOOLDSR-KkmoUvKs4OGYerwo_escQaDwY,7406
186
+ pygeai/cli/commands/base.py,sha256=J48IjpFr5oiRpxndiSI3vtNG1pfHBlDeRDOm7QQxk_U,7836
206
187
  pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
207
- pygeai/cli/commands/chat.py,sha256=A2wGOE7fmqNjOdOVcs_jrSHhma6cqDzY_O3xVwpiPoY,32557
208
- pygeai/cli/commands/common.py,sha256=zL1cWKMTqzqMsHBDFfVzbZe0i2l0hgJNpzjSRgvloY8,16568
188
+ pygeai/cli/commands/chat.py,sha256=i70GQA21RVMjMf5dsWXthUvLFjjXPb8G54AYGB_pz-s,35202
189
+ pygeai/cli/commands/common.py,sha256=GWbZvHCWlEMofsrgrRZflzgYgQV8GYyiZE5Dro1eDSI,16571
209
190
  pygeai/cli/commands/configuration.py,sha256=J1Y8AH1xYWvcY4bzqKvF-_ggEDJ22Dv4iEcCBi2pq_8,4140
210
191
  pygeai/cli/commands/docs.py,sha256=8JEgKAHFL19g1rmgQzFwdzqLBP8ySvnpQogXwJPWfS4,3444
211
192
  pygeai/cli/commands/embeddings.py,sha256=LtJROVI2gD3oq0-YZRyeud_YlfhK3R4d5Y6iHhIuAHQ,6055
@@ -214,14 +195,14 @@ pygeai/cli/commands/feedback.py,sha256=nJdrI974N_3IsloJMqe7GRay5_ijOSkeZ9MIdGeQZ
214
195
  pygeai/cli/commands/files.py,sha256=IOnNlqhpnOytPns0GVZLT-BCcLlr_fOCdHH0HKC38Ik,7888
215
196
  pygeai/cli/commands/gam.py,sha256=_eRp3ryY0jFYxtZgWOAU4_ky7S9zggGvkZNZi9eokTI,9664
216
197
  pygeai/cli/commands/llm.py,sha256=w7ozHlcdZ77hcXFzJaL0CM_YgXYKCaWBmg7t0WkHaOs,4115
217
- pygeai/cli/commands/migrate.py,sha256=J1sroFpETWv40Wsro6vyGbpjwkJijBJoVR38kod9wLw,45463
198
+ pygeai/cli/commands/migrate.py,sha256=fABSfcJHAxSs1egPLD-JLiQQXVKV8ruZYF1dW0_P0vU,48403
218
199
  pygeai/cli/commands/options.py,sha256=oVDJF-SsE80vi-W4d0n2cNo1BeeU_jqDs_TtMPkz-1I,1804
219
- pygeai/cli/commands/organization.py,sha256=4ETIF9t3dKdlk2TBBokpmvMAUb6umryixMa9dWsMc7M,16352
200
+ pygeai/cli/commands/organization.py,sha256=lz1MckOWiY92oBY80zT1eL6g3WtajqB_zURvbewZeo0,24139
220
201
  pygeai/cli/commands/rag.py,sha256=IgHsfRmnsegrGCCpwuNmd15BClQgEPc_GH2JXfG6OKo,37052
221
202
  pygeai/cli/commands/rerank.py,sha256=JO8EK6lgRUpDOGmhxmX43dS_97ssl29HxEwg__kNwCA,3010
222
203
  pygeai/cli/commands/secrets.py,sha256=d49inaFV_f0OoILH15U_SW4GuLRh37_x7VG3dxBbQbA,9411
223
204
  pygeai/cli/commands/usage_limits.py,sha256=4nlLd5ec2LwEEDgNWgWg0vCBOm8dXkKntHZOIFxA9sY,18514
224
- pygeai/cli/commands/validators.py,sha256=lNtYSJvKFrEeg_h0oYURMuoQbNG5r6QdjzDL-aT7R3o,3235
205
+ pygeai/cli/commands/validators.py,sha256=Ciicmad7vRQg06alLjZ4-Zg3nmKReu5cDQ70RVtawJ0,8012
225
206
  pygeai/cli/commands/version.py,sha256=vyJcnxwL_TfpOQI0yE2a1ZyA3VRAE7ssh9APNBXpmqk,1701
226
207
  pygeai/cli/commands/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
208
  pygeai/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -231,22 +212,22 @@ pygeai/cli/commands/lab/options.py,sha256=T13Vi97zochr0cU4yjyvvwWRPENILFDYpvqpU4
231
212
  pygeai/cli/commands/lab/spec.py,sha256=EjNdEnljKpYPQyT4d4ViAPrM1g7oIitv6ddnWVkWXPk,8301
232
213
  pygeai/cli/commands/lab/utils.py,sha256=uxhgHvCRrV6WYRxR2qd3nED_hhXcxJ1tAU8MlzoshEg,456
233
214
  pygeai/cli/texts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
- pygeai/cli/texts/help.py,sha256=cdTdEO9QRm3SVCzCEJq4vhunKHkGdpzWfmdoel8TDsw,22054
215
+ pygeai/cli/texts/help.py,sha256=QyLH1g4dK-AJ1X1GtYLDulWWReuECPsK8mJkeqDb3Vo,24627
235
216
  pygeai/core/__init__.py,sha256=bbNktFp7t2dOBIvWto-uGVBW8acaKIe8EKcfuLV-HmA,189
236
217
  pygeai/core/handlers.py,sha256=la1QcQbLwfiNd-xDQ3jtWRHmeEm6E93Rfx5c-5bkLmw,934
237
218
  pygeai/core/models.py,sha256=db44pgk_hJ5s2S8neZq5Y1XZY6rQDfPRN6mWDSvj-rw,27465
238
219
  pygeai/core/responses.py,sha256=wxlikhw1UAAB6Mib97xjq2eCFyZPWoosPwn9UhpKi7Y,2825
239
220
  pygeai/core/singleton.py,sha256=-U5kywQOBvbTtkWCczLZD_aoHBjDLRj07Q-UqQJpww0,242
240
221
  pygeai/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
- pygeai/core/base/clients.py,sha256=RZyPPlzuA6XbxJusRCFlAOt-r4Ho7kAXoR45ZcW0-X4,1732
222
+ pygeai/core/base/clients.py,sha256=sIO5TExfeSMmRp06q1cF9iuP3YywGgzZczu7xSgyFFY,2465
242
223
  pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
243
224
  pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
244
225
  pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
245
- pygeai/core/base/session.py,sha256=XxHpTPeBfBogRUnqpIc-Rqx2drA4blFqtAyLPcoACb4,2971
226
+ pygeai/core/base/session.py,sha256=9ViCCzD4pltfK0XQKgComT-0dotnpyTtHHHc9BVN-S8,4269
246
227
  pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
- pygeai/core/common/config.py,sha256=uEPqTTonya8IBX0KSRI927cjUJ39JvYExnkqep-5U6o,4395
228
+ pygeai/core/common/config.py,sha256=_MFT5xxQ1ae8d6l-ksC8ziQOu7WvW3fWPv6uFxrMmhU,5506
248
229
  pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
249
- pygeai/core/common/exceptions.py,sha256=ANzWJIixnl_P7D3ZPYVm1G53D8lgGYkZZ_-F1DNtErg,1410
230
+ pygeai/core/common/exceptions.py,sha256=J_5g1jumvkSlg64peMFXfivbQv4vymUBRldxwYo7Qpg,3605
250
231
  pygeai/core/embeddings/__init__.py,sha256=sn0wz0qNJeJy-1AQW4on62LX7bqhlVs7xcS0MaPQcW4,486
251
232
  pygeai/core/embeddings/clients.py,sha256=s-yHs99puVw4H1ShQ_jU-7c8S9BUs7WqwUavTKVpcMc,4146
252
233
  pygeai/core/embeddings/endpoints.py,sha256=b__cuKQjribog9PSUeDzwrQ0vBO4WyYahLhLjDiUpL0,98
@@ -283,7 +264,7 @@ pygeai/core/secrets/clients.py,sha256=9u28Gr-hXn0-kC4_xhgvl1a8n0PNV088KsI39X0QZe
283
264
  pygeai/core/secrets/endpoints.py,sha256=HN17bf7m8BSwtgLFZt0ifZf3KwR-MP3cXUSeY6P4H-8,468
284
265
  pygeai/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
266
  pygeai/core/services/response.py,sha256=L_xDAvSwnupQv6g1Ly2WQvImvITIVrMYW_TcEbXjM6c,505
286
- pygeai/core/services/rest.py,sha256=82zIAx8aXr6OLCcFk5UjPTSmOnK_Mm4sTCL_NNsGeVY,16566
267
+ pygeai/core/services/rest.py,sha256=-0q-NLxJZuP7c-qIiJWn13Euti-fT6j2Eydi86Y5gfw,17105
287
268
  pygeai/core/services/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
269
  pygeai/core/services/llm/model.py,sha256=dv0vH2uGQDzyXh63A_nr_bmMukr6Q9nO7LuiWgvclnY,9065
289
270
  pygeai/core/services/llm/providers.py,sha256=CS1v4qSiibuL51fQlgcARiyPoXxSnCeV5RXwNc1nmgA,293
@@ -294,7 +275,7 @@ pygeai/core/utils/validators.py,sha256=LoDrO5z0K8_axMdoMHGZZHlxdIFQWnzC9L7RbEQFI
294
275
  pygeai/dbg/__init__.py,sha256=97HEKO5JdnaZi2qcJEXT1C-MUk0plqpSF_yQ0tUAPrw,91
295
276
  pygeai/dbg/debugger.py,sha256=juoNZplNYGdcLeYjU6Mbe5N6kj7OeZJtvHF-0byJdXg,26471
296
277
  pygeai/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
- pygeai/evaluation/clients.py,sha256=JASfhRbEHp_sKBmkW3AHMhsZ7iIpIV028CM1jQpoKxM,826
278
+ pygeai/evaluation/clients.py,sha256=muJ7nhCTClilXc66C2f7ampM2oARttcrYQu8UN8RVaI,1064
298
279
  pygeai/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
280
  pygeai/evaluation/dataset/clients.py,sha256=mzinQp-bZ2h6GdNJ6N2TQ9ceCkCzZINwBMyAPp6hbss,20033
300
281
  pygeai/evaluation/dataset/endpoints.py,sha256=d_llUcXNDncNrIyYgjJ_lMBnX2YPVxmeu8op3N30mLs,2922
@@ -314,15 +295,15 @@ pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
295
  pygeai/health/clients.py,sha256=LQdluFxnPmzTbuQJl0XQIFJBIQ3j2VL3okTtaFxmQDo,855
315
296
  pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
316
297
  pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
- pygeai/lab/clients.py,sha256=SCX3_qPsztvAY6IIr1NXTYk_dwI8ge7v3RILHNocHJI,1011
298
+ pygeai/lab/clients.py,sha256=9-eHdXtjDJ9OoNAR07aGQ9yaL2MXmg3J6T8aODWkJQ0,1229
318
299
  pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
319
- pygeai/lab/managers.py,sha256=EGU2NTpZyWtPo-VBX_wSrNOjLNPBIt7cxha9lIbuXgk,70725
320
- pygeai/lab/models.py,sha256=GC2F8qmNH_185XDfcsOU4VxNCuJfBFIJGK8jYQXrRLQ,71455
300
+ pygeai/lab/managers.py,sha256=XpMgWUkdcUr-pOfHToJUzLsF9m5SBNyRU1D3KzDfHEI,70756
301
+ pygeai/lab/models.py,sha256=sHMFXWmr_y7qrdA1MWr3zNH5V72tectz-RDxVeiaTwE,74913
321
302
  pygeai/lab/runners.py,sha256=-uaCPHpFyiKtVOxlEjPjAc9h-onSdGAcYJ5IAZPqlb0,4147
322
303
  pygeai/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
323
- pygeai/lab/agents/clients.py,sha256=7jrBjFpShHUZ5Bf__TA0yikQqvpsrIRf4O2uH4iygwA,19091
324
- pygeai/lab/agents/endpoints.py,sha256=m2FwLmoaiK1_5YyEpMklAfCUwum6GpxLc7ZBXFHrdhk,827
325
- pygeai/lab/agents/mappers.py,sha256=K6rxsO2Nq6GglmCUmyDKUNmzTG8HRbCelap6qaVKXQw,10583
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
326
307
  pygeai/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
308
  pygeai/lab/processes/clients.py,sha256=7CSFCzeymFG1eJUM69wGt2LjSyTG66IxiTCzAUsc_bw,43870
328
309
  pygeai/lab/processes/endpoints.py,sha256=nFIEcNP22xe4j6URI6KcwTh7h-xgYjYYuHT6PDPiO3I,2100
@@ -335,22 +316,22 @@ pygeai/lab/strategies/clients.py,sha256=FuLpxobqXiPeDL7b2a719pq6-gZ_g5n0NWKIGchi
335
316
  pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
336
317
  pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
337
318
  pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
- pygeai/lab/tools/clients.py,sha256=l4KbH7iuezbuiN1PXM9D1V9CDcvkarNmR_YFfwhPA9A,24874
319
+ pygeai/lab/tools/clients.py,sha256=nbyY5zeD7ZWvxAn9GKiYeIF9jdop82LQwGi7DgXWpAY,23293
339
320
  pygeai/lab/tools/endpoints.py,sha256=uZwRHSYwbzzqpZE-UDv1vLWLed1YV3bgf4DX7xG0sd4,881
340
321
  pygeai/lab/tools/mappers.py,sha256=bYi5k36h0k4mCvOnV-r8YOHKz0U9P0mH21GNs20w2eM,4998
341
322
  pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
342
323
  pygeai/man/man1/__init__.py,sha256=CFvES6cP_sbhgpm-I-QSbPC1f7Bw7cFsMW2-sxm4FtM,54
343
324
  pygeai/man/man1/geai-proxy.1,sha256=N5jtjzS5dB3JjAkG0Rw8EBzhC6Jgoy6zbS7XDgcE4EA,6735
344
325
  pygeai/man/man1/geai.1,sha256=dRJjqXLu4PRr5tELX-TveOrvp-J085rTV0NbqL5I30Q,51162
345
- pygeai/migration/__init__.py,sha256=CaL3TTPQwOGd0p8TOv1rUot5vYAhhj3FLtEawkoroAk,783
346
- pygeai/migration/strategies.py,sha256=Cq6XWmEyG14nCfc5-lPp0vi5XbSvKO4I3rzjbOth68Y,20261
326
+ pygeai/migration/__init__.py,sha256=sZb6bHOjiOhjHTvU1fYbD8ubSwaitn4jyQrj59Cf8ao,843
327
+ pygeai/migration/strategies.py,sha256=q26PDE1Nl9o6J9_ZVWth0hsXUCL2nNQ5k2GPVL9NqAE,22810
347
328
  pygeai/migration/tools.py,sha256=d6YtJ2xPdEAxMBiDgOXaMiXSgbUcErzN0wj0kmA9skU,6201
348
329
  pygeai/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
- pygeai/organization/clients.py,sha256=9i2EzaPvoNas84zPL6oOXg6VIe4t3LSRdxxc168eM1c,13386
350
- pygeai/organization/endpoints.py,sha256=z70qIdYY2XvzZliF1Nw6ZFHraf4-sdQpF5WDaciypS0,1478
351
- pygeai/organization/managers.py,sha256=hv6aZTCP8qcs0HSau1tkZepPupbc-82sNV2SzJq66rk,19335
352
- pygeai/organization/mappers.py,sha256=gIBuZMorym0mLgEa2zEY1fICunuQCW_zG2WYIWnfXwU,4999
353
- pygeai/organization/responses.py,sha256=GjYDYWrjmPg-Uj6Oa7olr5M9VdlIowPuKmJT5c2HNbk,1716
330
+ pygeai/organization/clients.py,sha256=fCOHkklrdkdjUdV6dPq0RZ9D-EpC_pXzmhsMo4R4ruE,17964
331
+ pygeai/organization/endpoints.py,sha256=BWdpYPMJCoROoSZnXfX9ROcQRgbcDiuhopxLSZVERQg,1993
332
+ pygeai/organization/managers.py,sha256=f1rJEZekmkKTOpAUGYwnm-3o_fUjzjYEfpFoCj1fk1Y,25464
333
+ pygeai/organization/mappers.py,sha256=10JxUTdt9jBgcHfW7ViY2HdtY-UfI9t_qhX8KvuMPn0,5897
334
+ pygeai/organization/responses.py,sha256=rVQo5N3aUE2tpJiflkFO1eG36imqJqVF3m4rRjKv7-s,1919
354
335
  pygeai/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
336
  pygeai/organization/limits/clients.py,sha256=hoj31n_Lxt40sCV9umxXt3Q3BzFaKSTTtdhMc-4dAZ4,15600
356
337
  pygeai/organization/limits/endpoints.py,sha256=mtca6U6l47jbbbmGc8KoXCDMnyNHtaPo8dxWVuHuUE0,2578
@@ -365,6 +346,11 @@ pygeai/proxy/tool.py,sha256=gxDd_jABg68vB_WOAGsosd0dQc3AbRKnFqY6qpXsBDk,2338
365
346
  pygeai/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
366
347
  pygeai/tests/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
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
368
354
  pygeai/tests/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
355
  pygeai/tests/assistants/test_clients.py,sha256=L6dklqyJmle-aBPKC7sgL9k9D_-WptT6m_C2W0hkVaE,9013
370
356
  pygeai/tests/assistants/test_managers.py,sha256=EbwGVabdCBqgMryjRMoWVFWa5kR9HqzsckB-DR3EuSA,11196
@@ -375,14 +361,15 @@ pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP
375
361
  pygeai/tests/assistants/rag/test_models.py,sha256=45eAQ4vE3gMvE8qWKlXg2klulQMZ3riHx5XWurE0mVA,10790
376
362
  pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
363
  pygeai/tests/auth/test_clients.py,sha256=PmCletRHQRiy_D15VaGILUCq9T-acDUHCk6t7tqnmAQ,12113
364
+ pygeai/tests/auth/test_oauth.py,sha256=_dSed8FjxfHU0LItT9X1NYGM2fWoxFVW6zNyEuV_hSI,6836
378
365
  pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
379
366
  pygeai/tests/chat/test_clients.py,sha256=E_0XMe0kFrNHZY_xRxNKjHq71y2ifzj51Pm10xqKqAw,15901
380
367
  pygeai/tests/chat/test_iris.py,sha256=kWGrQ0T7E5Lg9-F9157GvF32l1sbaejbI5qbGKjWkxM,1186
381
368
  pygeai/tests/chat/test_session.py,sha256=yIxUJJGRXWPjwxvsosIE7AygzKoJ45GIx5DCUYgTRqY,2906
382
369
  pygeai/tests/chat/test_ui.py,sha256=vWUdyC8mmZ7P-Ej4ssrCcSxMBNAyXY0rwuI_H840XaU,8938
383
370
  pygeai/tests/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
- pygeai/tests/cli/test_error_handler.py,sha256=1HqdtRImsAwW0GtWi74WHtv1SUbF_1a9SwhrQ39_Ybg,9300
385
- pygeai/tests/cli/test_geai_driver.py,sha256=W4eNeXfOdEas0VsNKd9qm6rwAR5bBMQTA69iLAFm1A0,6247
371
+ pygeai/tests/cli/test_error_handler.py,sha256=SElvo48_BTtJq6KWwkMWEM8EG0ErM5A0riHBRevn_TY,9340
372
+ pygeai/tests/cli/test_geai_driver.py,sha256=jhNt9jmqu3DVA0oWxNw6yQ0KiVGLyMrO6y4vJKO_ss4,6248
386
373
  pygeai/tests/cli/test_parsers.py,sha256=QhNf46ijgwQVzzXhsoJ4Vbg948wXM2-5FSWa-yorm08,7267
387
374
  pygeai/tests/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
388
375
  pygeai/tests/cli/commands/test_assistant.py,sha256=IT1ORQZRFoNvGXn67SweI8DU3d0G8fJbnLAFfEJCV0k,10547
@@ -394,8 +381,8 @@ pygeai/tests/cli/commands/test_feedback.py,sha256=gHJ8Jt8kEemTvlpWLCyZCo73i0iBPl
394
381
  pygeai/tests/cli/commands/test_files.py,sha256=cJ0W4f8eg1T2TBZCah1k93nrk7R8ZL6_1HwCOhJOacI,7583
395
382
  pygeai/tests/cli/commands/test_gam.py,sha256=oIFj4HJV6z1fQkIU2BmgP1VJ2zJ65UWDM6a3G8AenHM,8318
396
383
  pygeai/tests/cli/commands/test_llm.py,sha256=SzQg9-Okix61JNWDWwaJIWuxxyji6n1PzaICleaonIM,5272
397
- pygeai/tests/cli/commands/test_migrate.py,sha256=LicCAMtR8ADytypF-ihTaus-EFc17McC008HbqFYT0o,7381
398
- pygeai/tests/cli/commands/test_organization.py,sha256=ret6Aboh4ew34VSo_dZcfBOrtce1dDNQO7DvyGUbFx4,9227
384
+ pygeai/tests/cli/commands/test_migrate.py,sha256=TGLxZHp-WVd28E7i2Bu3Bz62EN6kxZ6xsVvWg4VLYwI,7852
385
+ pygeai/tests/cli/commands/test_organization.py,sha256=hHmw5sSgL1tWxf5pBuNtnLO-O4CACEv-eV-lQeO3TBs,12728
399
386
  pygeai/tests/cli/commands/test_rag.py,sha256=7SdTbCgdPDoLca4Y7LECkL6AVPpgIYXiXyTRubBNe1Y,11761
400
387
  pygeai/tests/cli/commands/test_rerank.py,sha256=G9Kc-VnLJgx_fYy1qgoL0swYp9-VV6OSL9eNnU0Xkpw,5305
401
388
  pygeai/tests/cli/commands/test_secrets.py,sha256=CXd2ZTpuUGK4SgfPuSGo9p_C2TiILj4HJUi_O4n0XK0,7562
@@ -500,10 +487,10 @@ pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=rEKd06kDVYW_JJeNT0
500
487
  pygeai/tests/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
501
488
  pygeai/tests/lab/test_managers.py,sha256=ZjUGS9rk9NiGwamacaSRgEWmMIfJ8BecgAfXZtszm_g,29514
502
489
  pygeai/tests/lab/test_mappers.py,sha256=2cLSggf168XWFpeZeBR7uJ-8C32TKb7qA91i_9fr_b0,11409
503
- pygeai/tests/lab/test_models.py,sha256=yozezeaJ6g4GDFPZoI5ixiSqENvJ7zdAM8tuu3xq1_s,54340
490
+ pygeai/tests/lab/test_models.py,sha256=o6YcKQb_p4CTBGwN0q4JnF1YmC0ZVc2dkfwuN6WZbDw,54442
504
491
  pygeai/tests/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
505
492
  pygeai/tests/lab/agents/test_clients.py,sha256=cXUl5tNR5UWVujmpY6yvkckUqAXDwmm9nQJ-CyjnJTk,21697
506
- pygeai/tests/lab/agents/test_mappers.py,sha256=Ilkgc6w-VzFb_Hs6_K7HUf5IJ0NZ2-eutrHeDdbHVLk,13560
493
+ pygeai/tests/lab/agents/test_mappers.py,sha256=6Q8tPh0S5x1oI8Vl298aaMtJkvKMEx7U0wO4nPwah4s,19117
507
494
  pygeai/tests/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
508
495
  pygeai/tests/lab/processes/test_clients.py,sha256=B3FBeOl1x08bMtUa271_57odASdv7YvRE-4HE6rlSUs,59825
509
496
  pygeai/tests/lab/processes/test_mappers.py,sha256=WuBqfS_jUCEMoQdo-uXPo0K5ct4957M7yGXLyCCz1CM,39959
@@ -514,14 +501,14 @@ pygeai/tests/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
514
501
  pygeai/tests/lab/strategies/test_clients.py,sha256=lb3gsWHwkZV2BKxrnbvFmkh3frdIJ0tOt1rL6AQpfl8,10557
515
502
  pygeai/tests/lab/strategies/test_mappers.py,sha256=gm0G2W-YAuvjn6qFa1O0nkkgTLSA1eIJAt9qE_I7BFU,5783
516
503
  pygeai/tests/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
517
- pygeai/tests/lab/tools/test_clients.py,sha256=dYhT4wbz-IVYZ5BNj5qSUmtnJ-gKfL6UdYkdxtYcIWE,22672
504
+ pygeai/tests/lab/tools/test_clients.py,sha256=8zQ5I1uWawsmnLbiPdbSUaA2Cbe9rxaHqXU7f80O_uo,21044
518
505
  pygeai/tests/lab/tools/test_mappers.py,sha256=_wA40iFvSze5-ddJ8WhjF0-IKNE5lwIFTTviVRxy-Wc,7803
519
506
  pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
520
507
  pygeai/tests/migration/test_strategies.py,sha256=Ql9Nd9Hx_YZkahENC-JKWtUlsm6Gma_F3-ToAtDRAaI,17233
521
508
  pygeai/tests/migration/test_tools.py,sha256=PY7NFqvW71R1xKCICmdHNFca_8gTob0QM4yRe-ILvnw,5698
522
509
  pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
523
- pygeai/tests/organization/test_clients.py,sha256=INB3ndU0n5aMnkRPt_6AR8tRxLtVvrXV5O9u0DiRgbw,21993
524
- pygeai/tests/organization/test_managers.py,sha256=Pc6tsQ3TxI_0ZLeMsEGjxPO5Z0dmk0oMy99n5xPmLDI,19872
510
+ pygeai/tests/organization/test_clients.py,sha256=oQfTMTD-Mh3DTH2gcEv8sPynFR-1f3AtpDGxbjzRKzs,29449
511
+ pygeai/tests/organization/test_managers.py,sha256=ybize5OkTp_DFntbyCiNEavClQYt-vzjoqEegjhQJaw,21706
525
512
  pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
526
513
  pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
527
514
  pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -535,6 +522,16 @@ pygeai/tests/proxy/test_managers.py,sha256=KHd45UezpMTq972TR9B7LPHV44ZIsNxA5-uMB
535
522
  pygeai/tests/proxy/test_servers.py,sha256=U159ZNihpKawXXp1iCydvKuI6R_x0ePsEgFZDQYKBbU,16124
536
523
  pygeai/tests/proxy/test_tool.py,sha256=a0BfjOEv6BBHD3BW-E2anIkQM68TuRmDRighKMpTrgc,6142
537
524
  pygeai/tests/snippets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
525
+ pygeai/tests/snippets/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
+ pygeai/tests/snippets/analytics/get_agent_usage_per_user.py,sha256=2DGYVVDIVHeFLOROBM3CQJPkVcbnLARHd4BB1dI-DWc,457
527
+ pygeai/tests/snippets/analytics/get_agents_created_and_modified.py,sha256=EFc-dDnsTXwLxq7jA22V-31uuXBad40UoR5qCsj6i7c,300
528
+ pygeai/tests/snippets/analytics/get_average_cost_per_request.py,sha256=NCI6_LOXiIc-VqXQsiyh0FeR3INXvuOaRmWn6m2I6nY,257
529
+ pygeai/tests/snippets/analytics/get_overall_error_rate.py,sha256=KodeXdmHrUqs1CIJgf7oLCByERKAc_Mxzq-hXBlE1V4,242
530
+ pygeai/tests/snippets/analytics/get_top_10_agents_by_requests.py,sha256=jqBQ3g_99hmM_oapo4OmjMJU5znxFN3swFQSQyJvEDM,353
531
+ pygeai/tests/snippets/analytics/get_total_active_users.py,sha256=tVmasKp-TwXQazUJwX3afEre5ExBDGbwS3sZl8dmWFA,245
532
+ pygeai/tests/snippets/analytics/get_total_cost.py,sha256=68RjVs08cKK-XyWOx9obnJHobtotI6S_QGpFbj31IY4,227
533
+ pygeai/tests/snippets/analytics/get_total_requests_per_day.py,sha256=bFEtzKTr4DbBUzwT9JM6oM5FqhLvJZOd0jTahJ9h77w,357
534
+ pygeai/tests/snippets/analytics/get_total_tokens.py,sha256=r7Z-mNgXiokbCcuC0J3TSNf2AfxPTeVjDuQ0IU7TO48,346
538
535
  pygeai/tests/snippets/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
539
536
  pygeai/tests/snippets/assistants/create_chat_assistant.py,sha256=wlYrrjz0KqF3IphnngRq2N2cxqUbhi_REucRy9hgNbg,1593
540
537
  pygeai/tests/snippets/assistants/create_text_assistant.py,sha256=ZhD9TevxkpVY-DqTaYbgc7k6ZqnmZkCOIyFnAbVRiRQ,1613
@@ -569,9 +566,16 @@ pygeai/tests/snippets/chat/chat_completion_streaming.py,sha256=2bb5fVrYknoaRVdH8
569
566
  pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py,sha256=VDx5Cgy2smWt1MdRz3BJx290_bv2KaCz8NUsNlC41Fg,314
570
567
  pygeai/tests/snippets/chat/get_request_status.py,sha256=5_a7DxotYkE-2_PRIT6iDTRct9KNduQHt4X7DmU_kVo,256
571
568
  pygeai/tests/snippets/chat/get_response.py,sha256=H7neNsbmykGv7urk-NP-WjZuTT930qu3aPbXUGTerYA,286
569
+ pygeai/tests/snippets/chat/get_response_complete_example.py,sha256=38WkWgNupzQl6Capo48CHwxZuPlR2DVpPufiYva4PIU,2044
572
570
  pygeai/tests/snippets/chat/get_response_streaming.py,sha256=nF9difHdFTCbrLy73XGIUt5W-FBixg-D6HvhkqjsnIQ,404
573
571
  pygeai/tests/snippets/chat/get_response_with_files.py,sha256=ulGwnT5NN2uyQh9tzmw6-iUoYShs2QmTSSxYsBcY8M4,336
572
+ pygeai/tests/snippets/chat/get_response_with_instructions.py,sha256=J3jeXN0b4OkwlHEtUrqKzkI_WeahxSi9lZ4X1MvPYxI,593
573
+ pygeai/tests/snippets/chat/get_response_with_metadata.py,sha256=XUPh9tmnxivvWxEwuK12UC6ngfcqmyWPYuh6k_ZE2lo,630
574
+ pygeai/tests/snippets/chat/get_response_with_parallel_tools.py,sha256=xX4gHLtSOWP81yGMcgX0CDkwrtHPlqxePa2nmX6PO2U,1581
575
+ pygeai/tests/snippets/chat/get_response_with_reasoning.py,sha256=t-2l8vl_fzxhXQVJGIDbX-vQ5wfb4W3j__lFHOMXQcA,555
576
+ pygeai/tests/snippets/chat/get_response_with_store.py,sha256=Qxt7Uus3qCr5eJK3ZBovsQFcbFo3mtsXcz9U0ZX_d1U,1008
574
577
  pygeai/tests/snippets/chat/get_response_with_tools.py,sha256=kTC0N07jWxrLzK_LuK-Gvpc5bzftoiDoTrCfhPT-uMI,837
578
+ pygeai/tests/snippets/chat/get_response_with_truncation.py,sha256=5yKxA14gsGgX0I7jZdcQ1FOchjtydn-4-bfioXxjGiU,789
575
579
  pygeai/tests/snippets/chat/send_chat_request.py,sha256=t9tdSE6YozLvc6o6rMPNbZvXcYTfFCjeS5Fn0qGWPRQ,863
576
580
  pygeai/tests/snippets/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
577
581
  pygeai/tests/snippets/dbg/basic_debugging.py,sha256=XlT7ooQuaCR7W5O4OXL7VLD8vrcmirR-eKRzwGF-q9g,737
@@ -650,13 +654,17 @@ pygeai/tests/snippets/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
650
654
  pygeai/tests/snippets/lab/agents/create_agent.py,sha256=EVyfQzDST9A9KaM0ToZJKlJ7yCbfhpSVkVK_MaUVQPw,1875
651
655
  pygeai/tests/snippets/lab/agents/create_agent_2.py,sha256=jd7HKhle_c0S0vI80AejOyLaNqBWkILlRF_znzyCGcQ,1879
652
656
  pygeai/tests/snippets/lab/agents/create_agent_edge_case.py,sha256=8dA9giNdsHjFZsIWTlBFk8e1QS3YtbZxklsVu0ZrDrk,1877
657
+ pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py,sha256=FUeBAu_mXA6WSv2RKCJLMg5zVsWcGBrMBmYr0M0uBgc,1522
658
+ pygeai/tests/snippets/lab/agents/create_agent_with_properties.py,sha256=kM64wHZxHdfBCNBV2RQv-4uveHzE61tF3QEi1fAPZcw,1548
653
659
  pygeai/tests/snippets/lab/agents/create_agent_without_instructions.py,sha256=jd7HKhle_c0S0vI80AejOyLaNqBWkILlRF_znzyCGcQ,1879
654
660
  pygeai/tests/snippets/lab/agents/delete_agent.py,sha256=GfDX667_V3tZMz3vjsbrxoFZggzpwjZYH_PVO2Qjw5s,269
655
661
  pygeai/tests/snippets/lab/agents/get_agent.py,sha256=bcqloJHwmNsFjEfri6QIRaTuHzwLtfEqIQPIC5pdkWQ,516
662
+ pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py,sha256=GcL_GAGaVu4AqrGOnrRwXUf_lnNLEx4uvQtTJ5ozLfA,1978
656
663
  pygeai/tests/snippets/lab/agents/get_sharing_link.py,sha256=FSXuzbX8Folh1h_6liHeZyA8T21_Y-2Ws9B6-uXatDU,316
657
664
  pygeai/tests/snippets/lab/agents/list_agents.py,sha256=gY5RBFUozhkk1uJO6opjkLmKmYpF9Ws-B7Oibhs99qQ,457
658
665
  pygeai/tests/snippets/lab/agents/publish_agent_revision.py,sha256=ATbFnnSLYRmFTC4GJJUyBwxKosoTWx661Q9FpuktREM,344
659
666
  pygeai/tests/snippets/lab/agents/update_agent.py,sha256=6qCnqkowCCygEl3tv_nvdlwXG8k0-LEloKYQUdIfkrs,1943
667
+ pygeai/tests/snippets/lab/agents/update_agent_properties.py,sha256=Mg_JBH0u4OdxarkTER1ymbHCxO-5qIXS6Fg4GjxyI3g,1435
660
668
  pygeai/tests/snippets/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
661
669
  pygeai/tests/snippets/lab/processes/create_process.py,sha256=gUZap3dF8Nhw3e9d_yZ9n8PZ2wBsTmJ7sRxgKfsIb80,1322
662
670
  pygeai/tests/snippets/lab/processes/create_task.py,sha256=dbkp1lSIL9bmhW3YpwLxZymWHJpd3WW_N0W8z85rA4k,326
@@ -707,6 +715,8 @@ pygeai/tests/snippets/migrate/process_migration.py,sha256=To0n6q1NN0sEr7anUv0U1f
707
715
  pygeai/tests/snippets/migrate/project_migration.py,sha256=N62oRMAc_lAhgmx8Y_gyTMGj-esSJ-ThyEzn3wZI7XE,1356
708
716
  pygeai/tests/snippets/migrate/tool_migration.py,sha256=zUSlkO2LtyNQhE782lYvxbTX7NVg9xiwEaH4mSd-Tys,1998
709
717
  pygeai/tests/snippets/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
718
+ pygeai/tests/snippets/organization/add_project_member.py,sha256=TBLKPYAuBO0JyLN9Nqjj1IRMpwYmQ3GqSsOUoQ12gDg,314
719
+ pygeai/tests/snippets/organization/add_project_member_batch.py,sha256=cwQ2N6ev6YbcdiXUX6BitXA_sQUXE9Lw_xb-wTDFSko,1402
710
720
  pygeai/tests/snippets/organization/create_project.py,sha256=dS_b0BaevxqVZsnQcOurxwnwPcdPy2oBFFFu2f8z_-o,596
711
721
  pygeai/tests/snippets/organization/delete_project.py,sha256=jLzHa_ra-T3XtO-eiegv4667TiKFfkuODsqKC6mIECI,201
712
722
  pygeai/tests/snippets/organization/export_request_data.py,sha256=hNHAZaUDKm7fRttEYl14m5VtZRW1HKt62BFk5wip-Gk,166
@@ -777,9 +787,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
777
787
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
778
788
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
779
789
  pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
780
- pygeai-0.6.0b10.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
781
- pygeai-0.6.0b10.dist-info/METADATA,sha256=qJnwOAK8YfAZS4xF4Po-PbUzcziLyOrIx2VP2ODfTU8,7978
782
- pygeai-0.6.0b10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
783
- pygeai-0.6.0b10.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
784
- pygeai-0.6.0b10.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
785
- pygeai-0.6.0b10.dist-info/RECORD,,
790
+ pygeai-0.6.0b12.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
791
+ pygeai-0.6.0b12.dist-info/METADATA,sha256=CJPgIEAlXo5XCxDkNT5wHDXWQ8fppnZvoB-lL9_R4Ic,7978
792
+ pygeai-0.6.0b12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
793
+ pygeai-0.6.0b12.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
794
+ pygeai-0.6.0b12.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
795
+ pygeai-0.6.0b12.dist-info/RECORD,,
@@ -1,37 +0,0 @@
1
- pygeai.tests.snippets.assistants.data\_analyst package
2
- ======================================================
3
-
4
- Submodules
5
- ----------
6
-
7
- pygeai.tests.snippets.assistants.data\_analyst.extend\_and\_check module
8
- ------------------------------------------------------------------------
9
-
10
- .. automodule:: pygeai.tests.snippets.assistants.data_analyst.extend_and_check
11
- :members:
12
- :show-inheritance:
13
- :undoc-members:
14
-
15
- pygeai.tests.snippets.assistants.data\_analyst.extend\_dataset module
16
- ---------------------------------------------------------------------
17
-
18
- .. automodule:: pygeai.tests.snippets.assistants.data_analyst.extend_dataset
19
- :members:
20
- :show-inheritance:
21
- :undoc-members:
22
-
23
- pygeai.tests.snippets.assistants.data\_analyst.get\_status module
24
- -----------------------------------------------------------------
25
-
26
- .. automodule:: pygeai.tests.snippets.assistants.data_analyst.get_status
27
- :members:
28
- :show-inheritance:
29
- :undoc-members:
30
-
31
- Module contents
32
- ---------------
33
-
34
- .. automodule:: pygeai.tests.snippets.assistants.data_analyst
35
- :members:
36
- :show-inheritance:
37
- :undoc-members:
@@ -1,85 +0,0 @@
1
- pygeai.tests.snippets.assistants.rag package
2
- ============================================
3
-
4
- Submodules
5
- ----------
6
-
7
- pygeai.tests.snippets.assistants.rag.create\_rag\_assistant module
8
- ------------------------------------------------------------------
9
-
10
- .. automodule:: pygeai.tests.snippets.assistants.rag.create_rag_assistant
11
- :members:
12
- :show-inheritance:
13
- :undoc-members:
14
-
15
- pygeai.tests.snippets.assistants.rag.delete\_al\_documents module
16
- -----------------------------------------------------------------
17
-
18
- .. automodule:: pygeai.tests.snippets.assistants.rag.delete_al_documents
19
- :members:
20
- :show-inheritance:
21
- :undoc-members:
22
-
23
- pygeai.tests.snippets.assistants.rag.delete\_document module
24
- ------------------------------------------------------------
25
-
26
- .. automodule:: pygeai.tests.snippets.assistants.rag.delete_document
27
- :members:
28
- :show-inheritance:
29
- :undoc-members:
30
-
31
- pygeai.tests.snippets.assistants.rag.delete\_rag\_assistant module
32
- ------------------------------------------------------------------
33
-
34
- .. automodule:: pygeai.tests.snippets.assistants.rag.delete_rag_assistant
35
- :members:
36
- :show-inheritance:
37
- :undoc-members:
38
-
39
- pygeai.tests.snippets.assistants.rag.get\_document module
40
- ---------------------------------------------------------
41
-
42
- .. automodule:: pygeai.tests.snippets.assistants.rag.get_document
43
- :members:
44
- :show-inheritance:
45
- :undoc-members:
46
-
47
- pygeai.tests.snippets.assistants.rag.get\_documents module
48
- ----------------------------------------------------------
49
-
50
- .. automodule:: pygeai.tests.snippets.assistants.rag.get_documents
51
- :members:
52
- :show-inheritance:
53
- :undoc-members:
54
-
55
- pygeai.tests.snippets.assistants.rag.get\_rag\_assistant\_data module
56
- ---------------------------------------------------------------------
57
-
58
- .. automodule:: pygeai.tests.snippets.assistants.rag.get_rag_assistant_data
59
- :members:
60
- :show-inheritance:
61
- :undoc-members:
62
-
63
- pygeai.tests.snippets.assistants.rag.update\_rag\_assistant module
64
- ------------------------------------------------------------------
65
-
66
- .. automodule:: pygeai.tests.snippets.assistants.rag.update_rag_assistant
67
- :members:
68
- :show-inheritance:
69
- :undoc-members:
70
-
71
- pygeai.tests.snippets.assistants.rag.upload\_document module
72
- ------------------------------------------------------------
73
-
74
- .. automodule:: pygeai.tests.snippets.assistants.rag.upload_document
75
- :members:
76
- :show-inheritance:
77
- :undoc-members:
78
-
79
- Module contents
80
- ---------------
81
-
82
- .. automodule:: pygeai.tests.snippets.assistants.rag
83
- :members:
84
- :show-inheritance:
85
- :undoc-members: