pygeai 0.6.0b7__py3-none-any.whl → 0.6.0b10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygeai/_docs/source/conf.py +78 -6
- pygeai/_docs/source/content/api_reference/embeddings.rst +31 -1
- pygeai/_docs/source/content/api_reference/evaluation.rst +590 -0
- pygeai/_docs/source/content/api_reference/feedback.rst +237 -0
- pygeai/_docs/source/content/api_reference/files.rst +592 -0
- pygeai/_docs/source/content/api_reference/gam.rst +401 -0
- pygeai/_docs/source/content/api_reference/proxy.rst +318 -0
- pygeai/_docs/source/content/api_reference/secrets.rst +495 -0
- pygeai/_docs/source/content/api_reference/usage_limits.rst +390 -0
- pygeai/_docs/source/content/api_reference.rst +7 -0
- pygeai/_docs/source/content/debugger.rst +376 -83
- pygeai/_docs/source/content/migration.rst +528 -0
- pygeai/_docs/source/content/modules.rst +1 -1
- pygeai/_docs/source/pygeai.cli.rst +8 -0
- pygeai/_docs/source/pygeai.tests.cli.rst +16 -0
- pygeai/_docs/source/pygeai.tests.core.embeddings.rst +16 -0
- pygeai/_docs/source/pygeai.tests.snippets.chat.rst +40 -0
- pygeai/_docs/source/pygeai.tests.snippets.dbg.rst +45 -0
- pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst +40 -0
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.dataset.rst +197 -0
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.plan.rst +133 -0
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.result.rst +37 -0
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst +10 -0
- pygeai/_docs/source/pygeai.tests.snippets.rst +1 -0
- pygeai/admin/clients.py +5 -0
- pygeai/assistant/clients.py +7 -0
- pygeai/assistant/data_analyst/clients.py +2 -0
- pygeai/assistant/rag/clients.py +11 -0
- pygeai/chat/clients.py +191 -25
- pygeai/chat/endpoints.py +2 -1
- pygeai/cli/commands/chat.py +227 -1
- pygeai/cli/commands/embeddings.py +56 -8
- pygeai/cli/commands/migrate.py +994 -434
- pygeai/cli/error_handler.py +116 -0
- pygeai/cli/geai.py +28 -10
- pygeai/cli/parsers.py +8 -2
- pygeai/core/base/clients.py +3 -1
- pygeai/core/common/exceptions.py +11 -10
- pygeai/core/embeddings/__init__.py +19 -0
- pygeai/core/embeddings/clients.py +17 -2
- pygeai/core/embeddings/mappers.py +16 -2
- pygeai/core/embeddings/responses.py +9 -2
- pygeai/core/feedback/clients.py +1 -0
- pygeai/core/files/clients.py +5 -7
- pygeai/core/files/managers.py +42 -0
- pygeai/core/llm/clients.py +4 -0
- pygeai/core/plugins/clients.py +1 -0
- pygeai/core/rerank/clients.py +1 -0
- pygeai/core/secrets/clients.py +6 -0
- pygeai/core/services/rest.py +1 -1
- pygeai/dbg/__init__.py +3 -0
- pygeai/dbg/debugger.py +565 -70
- pygeai/evaluation/clients.py +1 -1
- pygeai/evaluation/dataset/clients.py +45 -44
- pygeai/evaluation/plan/clients.py +27 -26
- pygeai/evaluation/result/clients.py +37 -5
- pygeai/gam/clients.py +4 -0
- pygeai/health/clients.py +1 -0
- pygeai/lab/agents/clients.py +8 -1
- pygeai/lab/models.py +3 -3
- pygeai/lab/processes/clients.py +21 -0
- pygeai/lab/strategies/clients.py +4 -0
- pygeai/lab/tools/clients.py +1 -0
- pygeai/migration/__init__.py +31 -0
- pygeai/migration/strategies.py +404 -155
- pygeai/migration/tools.py +170 -3
- pygeai/organization/clients.py +13 -0
- pygeai/organization/limits/clients.py +15 -0
- pygeai/proxy/clients.py +3 -1
- pygeai/tests/admin/test_clients.py +16 -11
- pygeai/tests/assistants/rag/test_clients.py +35 -23
- pygeai/tests/assistants/test_clients.py +22 -15
- pygeai/tests/auth/test_clients.py +14 -6
- pygeai/tests/chat/test_clients.py +211 -1
- pygeai/tests/cli/commands/test_embeddings.py +32 -9
- pygeai/tests/cli/commands/test_evaluation.py +7 -0
- pygeai/tests/cli/commands/test_migrate.py +112 -243
- pygeai/tests/cli/test_error_handler.py +225 -0
- pygeai/tests/cli/test_geai_driver.py +154 -0
- pygeai/tests/cli/test_parsers.py +5 -5
- pygeai/tests/core/embeddings/test_clients.py +144 -0
- pygeai/tests/core/embeddings/test_managers.py +171 -0
- pygeai/tests/core/embeddings/test_mappers.py +142 -0
- pygeai/tests/core/feedback/test_clients.py +2 -0
- pygeai/tests/core/files/test_clients.py +1 -0
- pygeai/tests/core/llm/test_clients.py +14 -9
- pygeai/tests/core/plugins/test_clients.py +5 -3
- pygeai/tests/core/rerank/test_clients.py +1 -0
- pygeai/tests/core/secrets/test_clients.py +19 -13
- pygeai/tests/dbg/test_debugger.py +453 -75
- pygeai/tests/evaluation/dataset/test_clients.py +3 -1
- pygeai/tests/evaluation/plan/test_clients.py +4 -2
- pygeai/tests/evaluation/result/test_clients.py +7 -5
- pygeai/tests/gam/test_clients.py +1 -1
- pygeai/tests/health/test_clients.py +1 -0
- pygeai/tests/lab/agents/test_clients.py +9 -0
- pygeai/tests/lab/processes/test_clients.py +36 -0
- pygeai/tests/lab/processes/test_mappers.py +3 -0
- pygeai/tests/lab/strategies/test_clients.py +14 -9
- pygeai/tests/migration/test_strategies.py +45 -218
- pygeai/tests/migration/test_tools.py +133 -9
- pygeai/tests/organization/limits/test_clients.py +17 -0
- pygeai/tests/organization/test_clients.py +22 -0
- pygeai/tests/proxy/test_clients.py +2 -0
- pygeai/tests/proxy/test_integration.py +1 -0
- pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py +18 -0
- pygeai/tests/snippets/chat/get_response.py +15 -0
- pygeai/tests/snippets/chat/get_response_streaming.py +20 -0
- pygeai/tests/snippets/chat/get_response_with_files.py +16 -0
- pygeai/tests/snippets/chat/get_response_with_tools.py +36 -0
- pygeai/tests/snippets/dbg/__init__.py +0 -0
- pygeai/tests/snippets/dbg/basic_debugging.py +32 -0
- pygeai/tests/snippets/dbg/breakpoint_management.py +48 -0
- pygeai/tests/snippets/dbg/stack_navigation.py +45 -0
- pygeai/tests/snippets/dbg/stepping_example.py +40 -0
- pygeai/tests/snippets/embeddings/cache_example.py +31 -0
- pygeai/tests/snippets/embeddings/cohere_example.py +41 -0
- pygeai/tests/snippets/embeddings/openai_base64_example.py +27 -0
- pygeai/tests/snippets/embeddings/openai_example.py +30 -0
- pygeai/tests/snippets/embeddings/similarity_example.py +42 -0
- pygeai/tests/snippets/evaluation/dataset/__init__.py +0 -0
- pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py +195 -0
- pygeai/tests/snippets/evaluation/dataset/create_dataset.py +26 -0
- pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py +11 -0
- pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py +17 -0
- pygeai/tests/snippets/evaluation/dataset/create_expected_source.py +18 -0
- pygeai/tests/snippets/evaluation/dataset/create_filter_variable.py +19 -0
- pygeai/tests/snippets/evaluation/dataset/delete_dataset.py +9 -0
- pygeai/tests/snippets/evaluation/dataset/delete_dataset_row.py +10 -0
- pygeai/tests/snippets/evaluation/dataset/delete_expected_source.py +15 -0
- pygeai/tests/snippets/evaluation/dataset/delete_filter_variable.py +15 -0
- pygeai/tests/snippets/evaluation/dataset/get_dataset.py +9 -0
- pygeai/tests/snippets/evaluation/dataset/get_dataset_row.py +10 -0
- pygeai/tests/snippets/evaluation/dataset/get_expected_source.py +15 -0
- pygeai/tests/snippets/evaluation/dataset/get_filter_variable.py +15 -0
- pygeai/tests/snippets/evaluation/dataset/list_dataset_rows.py +9 -0
- pygeai/tests/snippets/evaluation/dataset/list_datasets.py +6 -0
- pygeai/tests/snippets/evaluation/dataset/list_expected_sources.py +10 -0
- pygeai/tests/snippets/evaluation/dataset/list_filter_variables.py +10 -0
- pygeai/tests/snippets/evaluation/dataset/update_dataset.py +15 -0
- pygeai/tests/snippets/evaluation/dataset/update_dataset_row.py +20 -0
- pygeai/tests/snippets/evaluation/dataset/update_expected_source.py +18 -0
- pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py +19 -0
- pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py +10 -0
- pygeai/tests/snippets/evaluation/plan/__init__.py +0 -0
- pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py +13 -0
- pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py +136 -0
- pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py +24 -0
- pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py +22 -0
- pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py +9 -0
- pygeai/tests/snippets/evaluation/plan/delete_plan_system_metric.py +13 -0
- pygeai/tests/snippets/evaluation/plan/execute_evaluation_plan.py +11 -0
- pygeai/tests/snippets/evaluation/plan/get_evaluation_plan.py +9 -0
- pygeai/tests/snippets/evaluation/plan/get_plan_system_metric.py +13 -0
- pygeai/tests/snippets/evaluation/plan/get_system_metric.py +9 -0
- pygeai/tests/snippets/evaluation/plan/list_evaluation_plans.py +7 -0
- pygeai/tests/snippets/evaluation/plan/list_plan_system_metrics.py +9 -0
- pygeai/tests/snippets/evaluation/plan/list_system_metrics.py +7 -0
- pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py +22 -0
- pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py +14 -0
- pygeai/tests/snippets/evaluation/result/__init__.py +0 -0
- pygeai/tests/snippets/evaluation/result/complete_workflow_example.py +150 -0
- pygeai/tests/snippets/evaluation/result/get_evaluation_result.py +26 -0
- pygeai/tests/snippets/evaluation/result/list_evaluation_results.py +17 -0
- pygeai/tests/snippets/migrate/__init__.py +45 -0
- pygeai/tests/snippets/migrate/agent_migration.py +110 -0
- pygeai/tests/snippets/migrate/assistant_migration.py +64 -0
- pygeai/tests/snippets/migrate/orchestrator_examples.py +179 -0
- pygeai/tests/snippets/migrate/process_migration.py +64 -0
- pygeai/tests/snippets/migrate/project_migration.py +42 -0
- pygeai/tests/snippets/migrate/tool_migration.py +64 -0
- pygeai/tests/snippets/organization/create_project.py +2 -2
- {pygeai-0.6.0b7.dist-info → pygeai-0.6.0b10.dist-info}/METADATA +1 -1
- {pygeai-0.6.0b7.dist-info → pygeai-0.6.0b10.dist-info}/RECORD +178 -96
- {pygeai-0.6.0b7.dist-info → pygeai-0.6.0b10.dist-info}/WHEEL +0 -0
- {pygeai-0.6.0b7.dist-info → pygeai-0.6.0b10.dist-info}/entry_points.txt +0 -0
- {pygeai-0.6.0b7.dist-info → pygeai-0.6.0b10.dist-info}/licenses/LICENSE +0 -0
- {pygeai-0.6.0b7.dist-info → pygeai-0.6.0b10.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pygeai/__init__.py,sha256=VpX09d3yWymZmWS4bQbYYIWJLEQpYTWJyTKhVGHSwb0,502
|
|
2
2
|
pygeai/_docs/Makefile,sha256=4zv3TVkTACm6JBaKgTES3ZI9cETXgM6ULbZkXZP1as8,638
|
|
3
3
|
pygeai/_docs/make.bat,sha256=L4I5T7uDUIjwGyMRJ-y9FoT61sxIyCuaYuJyLt8c-nA,804
|
|
4
|
-
pygeai/_docs/source/conf.py,sha256=
|
|
4
|
+
pygeai/_docs/source/conf.py,sha256=H6XjfAFdBZ5H4aqxy88TzUQBfUYeVZSxIFbOACqLlUM,3591
|
|
5
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
|
|
@@ -14,7 +14,7 @@ pygeai/_docs/source/pygeai.chat.rst,sha256=cW35lNsOImawmYiriUwSGjJITGnx0Kxa_wYJR
|
|
|
14
14
|
pygeai/_docs/source/pygeai.cli.commands.flows.rst,sha256=_oPTa5gn3jtsYo8SSjr5LWp3hHkOcVXa-9sOXwST8Ik,198
|
|
15
15
|
pygeai/_docs/source/pygeai.cli.commands.lab.rst,sha256=48iA3vbixQBMmBmnthf_Jy7jJhHyozhXFXNki-zmOTY,1106
|
|
16
16
|
pygeai/_docs/source/pygeai.cli.commands.rst,sha256=XLmfgH8bMFtgM6hTBq-2mcp6RrXYw1MQ4K45hTCyUvE,4394
|
|
17
|
-
pygeai/_docs/source/pygeai.cli.rst,sha256=
|
|
17
|
+
pygeai/_docs/source/pygeai.cli.rst,sha256=KDv2owHUAqulKv_AEpgmXnvoTGkPUyBUnyGD90tWFcM,1026
|
|
18
18
|
pygeai/_docs/source/pygeai.cli.texts.rst,sha256=z2dfcJAwQPLkfDJxTp7iyGJ5KijBhC7LcRlbdSB3bqw,346
|
|
19
19
|
pygeai/_docs/source/pygeai.core.base.rst,sha256=IKexE5NtfxU_oot-y4dwKGPkvTjyuFD8B4LE_dPXEJw,1002
|
|
20
20
|
pygeai/_docs/source/pygeai.core.common.rst,sha256=TsSyb22e_zwO7MDwBLu8zayERe0GDp2m8xa05KWoEss,716
|
|
@@ -58,12 +58,12 @@ pygeai/_docs/source/pygeai.tests.chat.rst,sha256=xiTEjTTXU0hLeIaNx32u30HuqDDlHuB
|
|
|
58
58
|
pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst,sha256=Ph5mvvnfn7qTDtbgU3ScxVzZGcRqvguVpUzboTnEiig,871
|
|
59
59
|
pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=95znjo_v7JLK2FZcUPnE57ofrW4CHF3U8OeYeqsEkHA,4019
|
|
60
60
|
pygeai/_docs/source/pygeai.tests.cli.docker.rst,sha256=UM4B_DAlsak4hAGFH-vjNiif0U6SDXxeYg_LqG7f9N4,192
|
|
61
|
-
pygeai/_docs/source/pygeai.tests.cli.rst,sha256=
|
|
61
|
+
pygeai/_docs/source/pygeai.tests.cli.rst,sha256=z8-ucnierNSaUZtUtlfCkyHo5NQvqKW547cpSpwGFzU,874
|
|
62
62
|
pygeai/_docs/source/pygeai.tests.core.base.data.rst,sha256=SsV7Q4nT37voKqp1BDbP7Rub29jVarIPbrNZktQb5Jg,612
|
|
63
63
|
pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ndRoX3malfqip5_eZfmWPwhyI85aBNfu8gVhSBBUghY,890
|
|
64
64
|
pygeai/_docs/source/pygeai.tests.core.common.data.rst,sha256=-oOOj8QUOJRw6y9wk31e6ZyS-2kTBJC8PNbLh0GA16c,210
|
|
65
65
|
pygeai/_docs/source/pygeai.tests.core.common.rst,sha256=07o4RYKqCf757VTBfySjHkfyvHUXY1oMVD2lq2r0N0U,717
|
|
66
|
-
pygeai/_docs/source/pygeai.tests.core.embeddings.rst,sha256=
|
|
66
|
+
pygeai/_docs/source/pygeai.tests.core.embeddings.rst,sha256=UMEE4lol9mnxuU17fdOMOE1Bf2RIBUdMjEhW5Mtwfyw,875
|
|
67
67
|
pygeai/_docs/source/pygeai.tests.core.feedback.rst,sha256=9H40ALCDjSEMRz9wABan1WyEroubvsPf4rvdqpIfTCU,432
|
|
68
68
|
pygeai/_docs/source/pygeai.tests.core.files.rst,sha256=5FAxa0Jef8QOZuYqyvy5S1ISm4wcsNrs0h-6Et-vU8E,1216
|
|
69
69
|
pygeai/_docs/source/pygeai.tests.core.llm.rst,sha256=y9sVhRP7V0CfwjRrbb1NC_ui7EUGA43McfbjqmeUPMk,402
|
|
@@ -104,9 +104,13 @@ pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst,sha256=9Bh
|
|
|
104
104
|
pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst,sha256=MJjQOlUuJRHrVZGP2JXx0HqM-WfdxQN_k0fLaH4ihPo,2552
|
|
105
105
|
pygeai/_docs/source/pygeai.tests.snippets.assistants.rst,sha256=HSsTyB8Vw-m_9ZU_ukhMq-BPWoTvq8zRLqk6yTOhnLM,2140
|
|
106
106
|
pygeai/_docs/source/pygeai.tests.snippets.auth.rst,sha256=zmZRwspFVQwPFRSzetlgf5DX9ylU-zgx_b7VERjNkS0,201
|
|
107
|
-
pygeai/_docs/source/pygeai.tests.snippets.chat.rst,sha256=
|
|
108
|
-
pygeai/_docs/source/pygeai.tests.snippets.
|
|
109
|
-
pygeai/_docs/source/pygeai.tests.snippets.
|
|
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
|
|
110
114
|
pygeai/_docs/source/pygeai.tests.snippets.extras.rst,sha256=XUrOZUU24z5NrgX5h-FHQvfl1YsqFcaSNTjMRRgcwWQ,819
|
|
111
115
|
pygeai/_docs/source/pygeai.tests.snippets.files.rst,sha256=gx-f28YqxMRkuCoNexEpJEUcAbdXT1gDbouXYJZo0pI,1300
|
|
112
116
|
pygeai/_docs/source/pygeai.tests.snippets.gam.rst,sha256=0c1zqQVNLKyklJnZ9sEHsfjTDVf_v658ZX2Iyh8VFco,440
|
|
@@ -123,16 +127,17 @@ pygeai/_docs/source/pygeai.tests.snippets.migrate.rst,sha256=Z9WmOIr1MFCpDP72QD0
|
|
|
123
127
|
pygeai/_docs/source/pygeai.tests.snippets.organization.rst,sha256=sSwv9PHlUX5kNRdFnhbcRLd-y3UUXX6-y-PWeF1jl5A,3243
|
|
124
128
|
pygeai/_docs/source/pygeai.tests.snippets.rag.rst,sha256=v_FFSm6fVE4CVOW79HI8piz8MOYa8PEvm28WoPpQGRo,2222
|
|
125
129
|
pygeai/_docs/source/pygeai.tests.snippets.rerank.rst,sha256=RwkOt3kGBsoUtiqmA3rMeMDMkZ-idMm08VWnMzo3w2c,447
|
|
126
|
-
pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=
|
|
130
|
+
pygeai/_docs/source/pygeai.tests.snippets.rst,sha256=3g_Yeg7AxMB_i9fnmLT-SAtS1DVnkVXnskoKn_D4lDI,733
|
|
127
131
|
pygeai/_docs/source/pygeai.tests.snippets.secrets.rst,sha256=kWSmN3I-MuhpeabIskpz7m3YpPBlFrYA73mt5m5zk-E,210
|
|
128
132
|
pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst,sha256=S2oNQdHLRyNdfBijqJMDl_nyq094M8yy9Fu1OyeDjo8,2517
|
|
129
133
|
pygeai/_docs/source/content/ai_lab.rst,sha256=t0NSjKhjY8snu9VxgY4PE8PYz4LtumyMnhhbxmOR1oY,11519
|
|
130
|
-
pygeai/_docs/source/content/api_reference.rst,sha256
|
|
134
|
+
pygeai/_docs/source/content/api_reference.rst,sha256=S9C7RYf9m5DLVL7aGQJNJ89DjFLGiajX2TwFMWrlLg8,2767
|
|
131
135
|
pygeai/_docs/source/content/chat_gui.rst,sha256=0nnQFh_m4V-TqbeZXTKYMzU6gmPTOwRHrkqaZ16098k,6805
|
|
132
136
|
pygeai/_docs/source/content/cli.rst,sha256=roIhLfeb0XAspXLbivHGSUMi-83RZ59rTGJbSfNMmt4,3178
|
|
133
|
-
pygeai/_docs/source/content/debugger.rst,sha256=
|
|
137
|
+
pygeai/_docs/source/content/debugger.rst,sha256=hhGUElT-d91bozWMPJcXCodtBNKvb8rJPfCMC-Qznwk,15111
|
|
134
138
|
pygeai/_docs/source/content/intro.rst,sha256=nRoIXypN6xGN9kaqTJM5HrhE0LPn7bnk0CDFeRixito,4532
|
|
135
|
-
pygeai/_docs/source/content/
|
|
139
|
+
pygeai/_docs/source/content/migration.rst,sha256=DX6AaAjEUPwrXlbAg5V35AUD8R1GDMmF8-SHLbk_kHw,19304
|
|
140
|
+
pygeai/_docs/source/content/modules.rst,sha256=MufbaO6dfESPq2yqhk9xpCsfSMdhNRcTuODE6LW1HxE,78
|
|
136
141
|
pygeai/_docs/source/content/quickstart.rst,sha256=bsz8ZwTJTWlznnPNq3XJJuOXuV63-7UKqur2YHGD8No,4159
|
|
137
142
|
pygeai/_docs/source/content/samples.rst,sha256=BfRzjBDVgiegbW1OPczZvq1LvS-aHGCH-zDmbX6mNPI,12488
|
|
138
143
|
pygeai/_docs/source/content/ai_lab/cli.rst,sha256=4ZhP4XfYYREWaVpfU4jEWw4SHpJECtFC7KH1KoCSj9M,24683
|
|
@@ -144,26 +149,33 @@ pygeai/_docs/source/content/api_reference/admin.rst,sha256=v_o5I_B3ND6fu_v8gOpGK
|
|
|
144
149
|
pygeai/_docs/source/content/api_reference/assistant.rst,sha256=5-XseBnf-s-UfttcYW0SUWD8WoL6FQMfmXqw024h2EA,7326
|
|
145
150
|
pygeai/_docs/source/content/api_reference/auth.rst,sha256=to_Bjp1BnJ-iOf8Yg2UUjuOZ7FcLJleeu-Qh-lwAQrM,10057
|
|
146
151
|
pygeai/_docs/source/content/api_reference/chat.rst,sha256=vacD71YEqUGEVoWxlcyEbXqDP5ng6FUsKJdbycy3t9Y,10670
|
|
147
|
-
pygeai/_docs/source/content/api_reference/embeddings.rst,sha256=
|
|
152
|
+
pygeai/_docs/source/content/api_reference/embeddings.rst,sha256=F__81B25D7NZsYHBa1gHFWjRo8eB55CR3ZZTHgnCo08,5417
|
|
153
|
+
pygeai/_docs/source/content/api_reference/evaluation.rst,sha256=ggFOdTi-5i869-na7p_IV1A2Kk8DmfKkwtTAYTlxn6M,16247
|
|
154
|
+
pygeai/_docs/source/content/api_reference/feedback.rst,sha256=6Duc-x4Hwp2bc3KHwtJ6pHg8WxT6_zq3Mor2A1NPoTE,5963
|
|
155
|
+
pygeai/_docs/source/content/api_reference/files.rst,sha256=wWZvaVDvcGvXSkpEKhKQVYk6Fgm56D_OoaYYwjyz8tw,13659
|
|
156
|
+
pygeai/_docs/source/content/api_reference/gam.rst,sha256=U__bhQkho3NDllHBQd9cSIn-LyVExy0zZi4RxaDoZxY,10553
|
|
148
157
|
pygeai/_docs/source/content/api_reference/health.rst,sha256=hEVzFsP1BnJL7fzAQV1sUYa0iFDI8GKJ1E54Oewpr5Y,1041
|
|
149
158
|
pygeai/_docs/source/content/api_reference/project.rst,sha256=rA-5-ihTlzCckszlrxaGMKpkhruZ-REe8kO8Yd3xX1Y,16401
|
|
159
|
+
pygeai/_docs/source/content/api_reference/proxy.rst,sha256=kXcanBNP53t3eegGe7khVYOKOSjqlM6hHyrH8O0g7J0,7434
|
|
150
160
|
pygeai/_docs/source/content/api_reference/rag.rst,sha256=Y5azvt5V9I3jS7qySc4LaQqkjCHtgspDiJkHBHGQ9Gc,18818
|
|
151
161
|
pygeai/_docs/source/content/api_reference/rerank.rst,sha256=zuoqmc2yW_M-tJ5IkYtaGxF2hHf4zFqnKWrL2zMh7Ig,2436
|
|
162
|
+
pygeai/_docs/source/content/api_reference/secrets.rst,sha256=HYxpExPhYIxdqff3u1REP0xYfodBkTB1kr5sHQavu00,12284
|
|
163
|
+
pygeai/_docs/source/content/api_reference/usage_limits.rst,sha256=XiOWcogv-AC6FrjmH_3re165RUi-eTq7IKzU9uvIjsw,9051
|
|
152
164
|
pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
pygeai/admin/clients.py,sha256=
|
|
165
|
+
pygeai/admin/clients.py,sha256=X7Ps_VqSD6NAMdWO6wm7Gbis5-67OJQkOa5lqHCmWi8,5348
|
|
154
166
|
pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
|
|
155
167
|
pygeai/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
|
-
pygeai/assistant/clients.py,sha256=
|
|
168
|
+
pygeai/assistant/clients.py,sha256=gGhALWddo30SM7mvoDe2TM9cVQrJ8RzoI4LVQ8ov9VQ,9856
|
|
157
169
|
pygeai/assistant/endpoints.py,sha256=7LuXWm0-sbrmHsngqW63wuk37K24wcMLinmJ6HdSimg,1026
|
|
158
170
|
pygeai/assistant/managers.py,sha256=aQxJ0QtZjTfeQXdwYBDc7oJA2LwPSFUcJOeoihCe8uQ,34632
|
|
159
171
|
pygeai/assistant/mappers.py,sha256=oSx_k1edknbKGlASke5ASzKEekG613TepVQRm1ecPOc,5915
|
|
160
172
|
pygeai/assistant/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
173
|
pygeai/assistant/data/clients.py,sha256=PeSYxbHti8PIdImV4-rhcTWlOvj2nedGX21ulXZi3wQ,660
|
|
162
174
|
pygeai/assistant/data_analyst/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
|
-
pygeai/assistant/data_analyst/clients.py,sha256=
|
|
175
|
+
pygeai/assistant/data_analyst/clients.py,sha256=Wx4M4LgVgsycLl_PHUjZkSvDlR1nGcdt1r5FLRIJb08,2756
|
|
164
176
|
pygeai/assistant/data_analyst/endpoints.py,sha256=2m-IXrb2-5id9tnpOjMQRYm6vqay6fw56-6kfpElPYI,296
|
|
165
177
|
pygeai/assistant/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
|
-
pygeai/assistant/rag/clients.py,sha256=
|
|
178
|
+
pygeai/assistant/rag/clients.py,sha256=Pl9fBijln_d6YsQ0uIMTPM9X6sMcwR5wEfEspAKMMHM,13029
|
|
167
179
|
pygeai/assistant/rag/endpoints.py,sha256=7YlHIvAYj3-xsCWtVMDYobxXbAO0lCo9yJdOrQxwCrQ,1145
|
|
168
180
|
pygeai/assistant/rag/mappers.py,sha256=n3aeNXqz_7zq_JWq5wJfeNX1kvV3arOxAoUsqRYOZsc,8645
|
|
169
181
|
pygeai/assistant/rag/models.py,sha256=g5UiHuRjobgU1WgUMxeBzXykxgJ5q7eb_YY8qDciNvw,15732
|
|
@@ -172,8 +184,8 @@ pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
172
184
|
pygeai/auth/clients.py,sha256=3Eg9d9XJlPCIXz2N90LalchahV2gPaD0DWj8iBcw41Y,5422
|
|
173
185
|
pygeai/auth/endpoints.py,sha256=KOZ5gS8I8MIamlfbj4bN8w6kMmIdAKr6puKJrw0cEtw,589
|
|
174
186
|
pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
-
pygeai/chat/clients.py,sha256=
|
|
176
|
-
pygeai/chat/endpoints.py,sha256=
|
|
187
|
+
pygeai/chat/clients.py,sha256=ANxYMn6vslPW-J4vjVl09CM4TOdSferrDIEcsE_7Fg0,18129
|
|
188
|
+
pygeai/chat/endpoints.py,sha256=4X00h4RPyCo-KNuNca51K78dBtRzp75kDYTzAR1QpNI,281
|
|
177
189
|
pygeai/chat/iris.py,sha256=-9pDHQpWhR_PvbZ6rD8eMPFk46PI9sCdPQ9aAyvSexs,413
|
|
178
190
|
pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
|
|
179
191
|
pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
|
|
@@ -181,27 +193,28 @@ pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
|
|
|
181
193
|
pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
|
|
182
194
|
pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
|
|
183
195
|
pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
|
|
184
|
-
pygeai/cli/
|
|
196
|
+
pygeai/cli/error_handler.py,sha256=xJ3eHuYmGMDq58CxIlFhgCE0e8zLEWZPbU1kK2YXk6Q,4576
|
|
197
|
+
pygeai/cli/geai.py,sha256=CFb5ssC_98VuvdqiTUjFatjPWWDhv1zI9MUYYGYv9ck,5376
|
|
185
198
|
pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
|
|
186
199
|
pygeai/cli/install_man.py,sha256=DjZ3k05sKSzpLFqsU4LHz1b37NHLVdOvS6oZihdBSis,3794
|
|
187
|
-
pygeai/cli/parsers.py,sha256=
|
|
200
|
+
pygeai/cli/parsers.py,sha256=tN9OhmFdAHmRcljwN5_NhqFoU14dUGggZQ81ErgYVTk,2699
|
|
188
201
|
pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
|
|
189
202
|
pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
|
|
190
203
|
pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
|
|
191
204
|
pygeai/cli/commands/auth.py,sha256=w1XIcTYh7SQ4keOhQiJiUJ2NFMY349K53P2BoGe2Rgc,8318
|
|
192
205
|
pygeai/cli/commands/base.py,sha256=OKlYNpQvTCxOOLDSR-KkmoUvKs4OGYerwo_escQaDwY,7406
|
|
193
206
|
pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
|
|
194
|
-
pygeai/cli/commands/chat.py,sha256=
|
|
207
|
+
pygeai/cli/commands/chat.py,sha256=A2wGOE7fmqNjOdOVcs_jrSHhma6cqDzY_O3xVwpiPoY,32557
|
|
195
208
|
pygeai/cli/commands/common.py,sha256=zL1cWKMTqzqMsHBDFfVzbZe0i2l0hgJNpzjSRgvloY8,16568
|
|
196
209
|
pygeai/cli/commands/configuration.py,sha256=J1Y8AH1xYWvcY4bzqKvF-_ggEDJ22Dv4iEcCBi2pq_8,4140
|
|
197
210
|
pygeai/cli/commands/docs.py,sha256=8JEgKAHFL19g1rmgQzFwdzqLBP8ySvnpQogXwJPWfS4,3444
|
|
198
|
-
pygeai/cli/commands/embeddings.py,sha256=
|
|
211
|
+
pygeai/cli/commands/embeddings.py,sha256=LtJROVI2gD3oq0-YZRyeud_YlfhK3R4d5Y6iHhIuAHQ,6055
|
|
199
212
|
pygeai/cli/commands/evaluation.py,sha256=7fgqihWtJ1h7dGXdTR3AbanNAIjeAI5qY7TAaTSi6WI,63828
|
|
200
213
|
pygeai/cli/commands/feedback.py,sha256=nJdrI974N_3IsloJMqe7GRay5_ijOSkeZ9MIdGeQZa0,2442
|
|
201
214
|
pygeai/cli/commands/files.py,sha256=IOnNlqhpnOytPns0GVZLT-BCcLlr_fOCdHH0HKC38Ik,7888
|
|
202
215
|
pygeai/cli/commands/gam.py,sha256=_eRp3ryY0jFYxtZgWOAU4_ky7S9zggGvkZNZi9eokTI,9664
|
|
203
216
|
pygeai/cli/commands/llm.py,sha256=w7ozHlcdZ77hcXFzJaL0CM_YgXYKCaWBmg7t0WkHaOs,4115
|
|
204
|
-
pygeai/cli/commands/migrate.py,sha256=
|
|
217
|
+
pygeai/cli/commands/migrate.py,sha256=J1sroFpETWv40Wsro6vyGbpjwkJijBJoVR38kod9wLw,45463
|
|
205
218
|
pygeai/cli/commands/options.py,sha256=oVDJF-SsE80vi-W4d0n2cNo1BeeU_jqDs_TtMPkz-1I,1804
|
|
206
219
|
pygeai/cli/commands/organization.py,sha256=4ETIF9t3dKdlk2TBBokpmvMAUb6umryixMa9dWsMc7M,16352
|
|
207
220
|
pygeai/cli/commands/rag.py,sha256=IgHsfRmnsegrGCCpwuNmd15BClQgEPc_GH2JXfG6OKo,37052
|
|
@@ -225,7 +238,7 @@ pygeai/core/models.py,sha256=db44pgk_hJ5s2S8neZq5Y1XZY6rQDfPRN6mWDSvj-rw,27465
|
|
|
225
238
|
pygeai/core/responses.py,sha256=wxlikhw1UAAB6Mib97xjq2eCFyZPWoosPwn9UhpKi7Y,2825
|
|
226
239
|
pygeai/core/singleton.py,sha256=-U5kywQOBvbTtkWCczLZD_aoHBjDLRj07Q-UqQJpww0,242
|
|
227
240
|
pygeai/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
-
pygeai/core/base/clients.py,sha256=
|
|
241
|
+
pygeai/core/base/clients.py,sha256=RZyPPlzuA6XbxJusRCFlAOt-r4Ho7kAXoR45ZcW0-X4,1732
|
|
229
242
|
pygeai/core/base/mappers.py,sha256=u5_UkRPPQ9vUQQANgmOHBbaaxtK77RNTTI2KoQafEDw,17793
|
|
230
243
|
pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
|
|
231
244
|
pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
|
|
@@ -233,44 +246,44 @@ pygeai/core/base/session.py,sha256=XxHpTPeBfBogRUnqpIc-Rqx2drA4blFqtAyLPcoACb4,2
|
|
|
233
246
|
pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
247
|
pygeai/core/common/config.py,sha256=uEPqTTonya8IBX0KSRI927cjUJ39JvYExnkqep-5U6o,4395
|
|
235
248
|
pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
|
|
236
|
-
pygeai/core/common/exceptions.py,sha256
|
|
237
|
-
pygeai/core/embeddings/__init__.py,sha256=
|
|
238
|
-
pygeai/core/embeddings/clients.py,sha256=
|
|
249
|
+
pygeai/core/common/exceptions.py,sha256=ANzWJIixnl_P7D3ZPYVm1G53D8lgGYkZZ_-F1DNtErg,1410
|
|
250
|
+
pygeai/core/embeddings/__init__.py,sha256=sn0wz0qNJeJy-1AQW4on62LX7bqhlVs7xcS0MaPQcW4,486
|
|
251
|
+
pygeai/core/embeddings/clients.py,sha256=s-yHs99puVw4H1ShQ_jU-7c8S9BUs7WqwUavTKVpcMc,4146
|
|
239
252
|
pygeai/core/embeddings/endpoints.py,sha256=b__cuKQjribog9PSUeDzwrQ0vBO4WyYahLhLjDiUpL0,98
|
|
240
253
|
pygeai/core/embeddings/managers.py,sha256=j6sxPiQTGYXKbaV9K4_rmG6_4-16_ky2LUvfDL-24EY,3520
|
|
241
|
-
pygeai/core/embeddings/mappers.py,sha256=
|
|
254
|
+
pygeai/core/embeddings/mappers.py,sha256=9K5AB5FA9KWYd-MOHpZu6MkqfZxVq9ESQLf76MQdDj0,2019
|
|
242
255
|
pygeai/core/embeddings/models.py,sha256=T9FehWk_0doiiZG7yMzSCK9_TBHibaocA4b8sJP7T4M,366
|
|
243
|
-
pygeai/core/embeddings/responses.py,sha256=
|
|
256
|
+
pygeai/core/embeddings/responses.py,sha256=ny7iE4p-1yADcRC7U2TdhxtXI3wZ87QXrDfGGbiEvpE,674
|
|
244
257
|
pygeai/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
|
-
pygeai/core/feedback/clients.py,sha256=
|
|
258
|
+
pygeai/core/feedback/clients.py,sha256=eFxgmIPLosomoDaBt7kC-nuVMsm0yGT-vDubTaCBqQM,1882
|
|
246
259
|
pygeai/core/feedback/endpoints.py,sha256=GzgjLtBCYWkk51OfUCHe0YigO-F-8QM6XiH0zQuo1Qg,197
|
|
247
260
|
pygeai/core/feedback/models.py,sha256=VdeVVWTQ8qc4TEPbL2XbYI4-UP2m2eh1pkBptw_do1E,336
|
|
248
261
|
pygeai/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
-
pygeai/core/files/clients.py,sha256=
|
|
262
|
+
pygeai/core/files/clients.py,sha256=1wxpKaq2nDjEDm7wWXAK9xFV2vXZGKlJropMEjLV1Ng,5663
|
|
250
263
|
pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWYQ,337
|
|
251
|
-
pygeai/core/files/managers.py,sha256=
|
|
264
|
+
pygeai/core/files/managers.py,sha256=kvl5Du_N95Rm8Z-EKSXmi5puNwHjtgp5rVEtZWVPEas,8773
|
|
252
265
|
pygeai/core/files/mappers.py,sha256=8PXXsQJZEH45yLISn_xsOZmcRUEe_F6ELkUeR1lzc-M,1462
|
|
253
266
|
pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
|
|
254
267
|
pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
|
|
255
268
|
pygeai/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
256
|
-
pygeai/core/llm/clients.py,sha256=
|
|
269
|
+
pygeai/core/llm/clients.py,sha256=y9WqIsdWGdwjiXJ7b5ONIdLikAab3sdU0yfcadojJ7k,2161
|
|
257
270
|
pygeai/core/llm/endpoints.py,sha256=EF5wNJH8Au3ZYl_hF2uCRL4hPSe2_MIy6TGpzubNVak,435
|
|
258
271
|
pygeai/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
|
-
pygeai/core/plugins/clients.py,sha256=
|
|
272
|
+
pygeai/core/plugins/clients.py,sha256=Zw6G26Jq2TCLSgfRDQfoMhaY_qzA5YpdTRXpS0YZ_Fo,995
|
|
260
273
|
pygeai/core/plugins/endpoints.py,sha256=1YUPtu0sqUKAgyBwTtEJdxhRs_ip9RL2mhz04U6KsXo,145
|
|
261
274
|
pygeai/core/plugins/models.py,sha256=SzqE-NToxbqTTMerUk_ELkI6-P6KNIDJY_AOZx0-PTU,3691
|
|
262
275
|
pygeai/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
-
pygeai/core/rerank/clients.py,sha256=
|
|
276
|
+
pygeai/core/rerank/clients.py,sha256=gmUxcQFplByLadLafrq31dEBp8lqzXTktW3niHBN134,1010
|
|
264
277
|
pygeai/core/rerank/endpoints.py,sha256=PZcA1i73fyGbpnbpWYr1-gHc6zy7L60b_E8sMLwsXw8,85
|
|
265
278
|
pygeai/core/rerank/managers.py,sha256=MdfKTQnwWjduBa2gjXDq_OErgXH_bNZfNUjLCARpZwc,2043
|
|
266
279
|
pygeai/core/rerank/mappers.py,sha256=Jx8PAymebA2TPxGssaKAj4eS0OVsKJqecntAugRO9ww,957
|
|
267
280
|
pygeai/core/rerank/models.py,sha256=WLE-waHk2glKSl1xx9EpmE1k4bva7c14jjraaWuQ5Uk,430
|
|
268
281
|
pygeai/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
|
-
pygeai/core/secrets/clients.py,sha256=
|
|
282
|
+
pygeai/core/secrets/clients.py,sha256=9u28Gr-hXn0-kC4_xhgvl1a8n0PNV088KsI39X0QZeI,8874
|
|
270
283
|
pygeai/core/secrets/endpoints.py,sha256=HN17bf7m8BSwtgLFZt0ifZf3KwR-MP3cXUSeY6P4H-8,468
|
|
271
284
|
pygeai/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
285
|
pygeai/core/services/response.py,sha256=L_xDAvSwnupQv6g1Ly2WQvImvITIVrMYW_TcEbXjM6c,505
|
|
273
|
-
pygeai/core/services/rest.py,sha256=
|
|
286
|
+
pygeai/core/services/rest.py,sha256=82zIAx8aXr6OLCcFk5UjPTSmOnK_Mm4sTCL_NNsGeVY,16566
|
|
274
287
|
pygeai/core/services/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
288
|
pygeai/core/services/llm/model.py,sha256=dv0vH2uGQDzyXh63A_nr_bmMukr6Q9nO7LuiWgvclnY,9065
|
|
276
289
|
pygeai/core/services/llm/providers.py,sha256=CS1v4qSiibuL51fQlgcARiyPoXxSnCeV5RXwNc1nmgA,293
|
|
@@ -278,108 +291,110 @@ pygeai/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
278
291
|
pygeai/core/utils/console.py,sha256=2YD0R6r5k0P1YCtYZDg1VnFih5HubdWg2vKxV4xguz0,2900
|
|
279
292
|
pygeai/core/utils/parsers.py,sha256=783HSQX7CDRKHU7WQQ9o_sS_ucMrYNDXvC_pKw1F-P4,1303
|
|
280
293
|
pygeai/core/utils/validators.py,sha256=LoDrO5z0K8_axMdoMHGZZHlxdIFQWnzC9L7RbEQFITg,328
|
|
281
|
-
pygeai/dbg/__init__.py,sha256=
|
|
282
|
-
pygeai/dbg/debugger.py,sha256=
|
|
294
|
+
pygeai/dbg/__init__.py,sha256=97HEKO5JdnaZi2qcJEXT1C-MUk0plqpSF_yQ0tUAPrw,91
|
|
295
|
+
pygeai/dbg/debugger.py,sha256=juoNZplNYGdcLeYjU6Mbe5N6kj7OeZJtvHF-0byJdXg,26471
|
|
283
296
|
pygeai/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
|
-
pygeai/evaluation/clients.py,sha256=
|
|
297
|
+
pygeai/evaluation/clients.py,sha256=JASfhRbEHp_sKBmkW3AHMhsZ7iIpIV028CM1jQpoKxM,826
|
|
285
298
|
pygeai/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
286
|
-
pygeai/evaluation/dataset/clients.py,sha256=
|
|
299
|
+
pygeai/evaluation/dataset/clients.py,sha256=mzinQp-bZ2h6GdNJ6N2TQ9ceCkCzZINwBMyAPp6hbss,20033
|
|
287
300
|
pygeai/evaluation/dataset/endpoints.py,sha256=d_llUcXNDncNrIyYgjJ_lMBnX2YPVxmeu8op3N30mLs,2922
|
|
288
301
|
pygeai/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
|
-
pygeai/evaluation/plan/clients.py,sha256=
|
|
302
|
+
pygeai/evaluation/plan/clients.py,sha256=iNXS23JS9rH66xIFZvH7gpHv_kNRKQRHy_hNvO8nm1c,12788
|
|
290
303
|
pygeai/evaluation/plan/endpoints.py,sha256=IzBRZ5lTjeEAwiQUVYr6TCgr6ddZ-LZS3jEp0o1owTQ,1976
|
|
291
304
|
pygeai/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
292
|
-
pygeai/evaluation/result/clients.py,sha256=
|
|
305
|
+
pygeai/evaluation/result/clients.py,sha256=a9RcmfLJ4uShSh0y0mLSRVS6EbmC9eD4q-ngXh99Sj4,3042
|
|
293
306
|
pygeai/evaluation/result/endpoints.py,sha256=dyWKB8GXaVClHBnC5BCrA3lX717wFPVrKaqIgil7UqY,310
|
|
294
307
|
pygeai/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
295
308
|
pygeai/flows/endpoints.py,sha256=GK7k2XI49j6Ya6tBcq8_Y4PAN15CE3bbeA8-IlxJAq4,33668
|
|
296
309
|
pygeai/flows/models.py,sha256=FqrNQo2wPU-oQsHO4kkbDcuLLVc1shQ5EnCHpOb4fL8,24472
|
|
297
310
|
pygeai/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
298
|
-
pygeai/gam/clients.py,sha256=
|
|
311
|
+
pygeai/gam/clients.py,sha256=8egiv_7Na6ypYx6ZYcFhKm4GG1ilPXsuI9_xj4lRG7o,7698
|
|
299
312
|
pygeai/gam/endpoints.py,sha256=Gf9V5PT2wI5qLW3UjG9SI0FWzTcwP8HN4lEFrFxbFPo,500
|
|
300
313
|
pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
|
-
pygeai/health/clients.py,sha256=
|
|
314
|
+
pygeai/health/clients.py,sha256=LQdluFxnPmzTbuQJl0XQIFJBIQ3j2VL3okTtaFxmQDo,855
|
|
302
315
|
pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
|
|
303
316
|
pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
304
317
|
pygeai/lab/clients.py,sha256=SCX3_qPsztvAY6IIr1NXTYk_dwI8ge7v3RILHNocHJI,1011
|
|
305
318
|
pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
|
|
306
319
|
pygeai/lab/managers.py,sha256=EGU2NTpZyWtPo-VBX_wSrNOjLNPBIt7cxha9lIbuXgk,70725
|
|
307
|
-
pygeai/lab/models.py,sha256=
|
|
320
|
+
pygeai/lab/models.py,sha256=GC2F8qmNH_185XDfcsOU4VxNCuJfBFIJGK8jYQXrRLQ,71455
|
|
308
321
|
pygeai/lab/runners.py,sha256=-uaCPHpFyiKtVOxlEjPjAc9h-onSdGAcYJ5IAZPqlb0,4147
|
|
309
322
|
pygeai/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
310
|
-
pygeai/lab/agents/clients.py,sha256=
|
|
323
|
+
pygeai/lab/agents/clients.py,sha256=7jrBjFpShHUZ5Bf__TA0yikQqvpsrIRf4O2uH4iygwA,19091
|
|
311
324
|
pygeai/lab/agents/endpoints.py,sha256=m2FwLmoaiK1_5YyEpMklAfCUwum6GpxLc7ZBXFHrdhk,827
|
|
312
325
|
pygeai/lab/agents/mappers.py,sha256=K6rxsO2Nq6GglmCUmyDKUNmzTG8HRbCelap6qaVKXQw,10583
|
|
313
326
|
pygeai/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
|
-
pygeai/lab/processes/clients.py,sha256=
|
|
327
|
+
pygeai/lab/processes/clients.py,sha256=7CSFCzeymFG1eJUM69wGt2LjSyTG66IxiTCzAUsc_bw,43870
|
|
315
328
|
pygeai/lab/processes/endpoints.py,sha256=nFIEcNP22xe4j6URI6KcwTh7h-xgYjYYuHT6PDPiO3I,2100
|
|
316
329
|
pygeai/lab/processes/mappers.py,sha256=YOWcVKdcJmLMAq-f3qevzqQ8L_hjb0_jVXBdCHutpzk,15815
|
|
317
330
|
pygeai/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
331
|
pygeai/lab/spec/loader.py,sha256=Dq9MhLqFwF4RPdBBaqKPGqt43-PrNlsHpe-NXe4S0qQ,709
|
|
319
332
|
pygeai/lab/spec/parsers.py,sha256=oG7tY-GylweRxpvtCl3p53t0IoTX3UZFiB77x__3Qp8,646
|
|
320
333
|
pygeai/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
|
-
pygeai/lab/strategies/clients.py,sha256=
|
|
334
|
+
pygeai/lab/strategies/clients.py,sha256=FuLpxobqXiPeDL7b2a719pq6-gZ_g5n0NWKIGchizSY,9298
|
|
322
335
|
pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
|
|
323
336
|
pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
|
|
324
337
|
pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
|
-
pygeai/lab/tools/clients.py,sha256=
|
|
338
|
+
pygeai/lab/tools/clients.py,sha256=l4KbH7iuezbuiN1PXM9D1V9CDcvkarNmR_YFfwhPA9A,24874
|
|
326
339
|
pygeai/lab/tools/endpoints.py,sha256=uZwRHSYwbzzqpZE-UDv1vLWLed1YV3bgf4DX7xG0sd4,881
|
|
327
340
|
pygeai/lab/tools/mappers.py,sha256=bYi5k36h0k4mCvOnV-r8YOHKz0U9P0mH21GNs20w2eM,4998
|
|
328
341
|
pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
|
|
329
342
|
pygeai/man/man1/__init__.py,sha256=CFvES6cP_sbhgpm-I-QSbPC1f7Bw7cFsMW2-sxm4FtM,54
|
|
330
343
|
pygeai/man/man1/geai-proxy.1,sha256=N5jtjzS5dB3JjAkG0Rw8EBzhC6Jgoy6zbS7XDgcE4EA,6735
|
|
331
344
|
pygeai/man/man1/geai.1,sha256=dRJjqXLu4PRr5tELX-TveOrvp-J085rTV0NbqL5I30Q,51162
|
|
332
|
-
pygeai/migration/__init__.py,sha256=
|
|
333
|
-
pygeai/migration/strategies.py,sha256=
|
|
334
|
-
pygeai/migration/tools.py,sha256=
|
|
345
|
+
pygeai/migration/__init__.py,sha256=CaL3TTPQwOGd0p8TOv1rUot5vYAhhj3FLtEawkoroAk,783
|
|
346
|
+
pygeai/migration/strategies.py,sha256=Cq6XWmEyG14nCfc5-lPp0vi5XbSvKO4I3rzjbOth68Y,20261
|
|
347
|
+
pygeai/migration/tools.py,sha256=d6YtJ2xPdEAxMBiDgOXaMiXSgbUcErzN0wj0kmA9skU,6201
|
|
335
348
|
pygeai/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
|
-
pygeai/organization/clients.py,sha256=
|
|
349
|
+
pygeai/organization/clients.py,sha256=9i2EzaPvoNas84zPL6oOXg6VIe4t3LSRdxxc168eM1c,13386
|
|
337
350
|
pygeai/organization/endpoints.py,sha256=z70qIdYY2XvzZliF1Nw6ZFHraf4-sdQpF5WDaciypS0,1478
|
|
338
351
|
pygeai/organization/managers.py,sha256=hv6aZTCP8qcs0HSau1tkZepPupbc-82sNV2SzJq66rk,19335
|
|
339
352
|
pygeai/organization/mappers.py,sha256=gIBuZMorym0mLgEa2zEY1fICunuQCW_zG2WYIWnfXwU,4999
|
|
340
353
|
pygeai/organization/responses.py,sha256=GjYDYWrjmPg-Uj6Oa7olr5M9VdlIowPuKmJT5c2HNbk,1716
|
|
341
354
|
pygeai/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
|
-
pygeai/organization/limits/clients.py,sha256=
|
|
355
|
+
pygeai/organization/limits/clients.py,sha256=hoj31n_Lxt40sCV9umxXt3Q3BzFaKSTTtdhMc-4dAZ4,15600
|
|
343
356
|
pygeai/organization/limits/endpoints.py,sha256=mtca6U6l47jbbbmGc8KoXCDMnyNHtaPo8dxWVuHuUE0,2578
|
|
344
357
|
pygeai/organization/limits/managers.py,sha256=fba8goiRXg_yWn0SyOjjhyZcL7VdzGZg-wM5V2yZwWg,14507
|
|
345
358
|
pygeai/organization/limits/mappers.py,sha256=nINHaXOnZLnpc39PG3xf_7HX6tS9_-cT-H50ARwCGvw,777
|
|
346
359
|
pygeai/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
|
-
pygeai/proxy/clients.py,sha256=
|
|
360
|
+
pygeai/proxy/clients.py,sha256=7g0SJbYjBp02rX6WH-HdGOevclGNJLsELIgf68fR14w,8059
|
|
348
361
|
pygeai/proxy/config.py,sha256=41fACnnhB21OhnohVPW4sbM8aZbAAEgGo7-dUaM_fpM,5057
|
|
349
362
|
pygeai/proxy/managers.py,sha256=hXxVeWvkwfb7QrwOGcKyL9qW_wdNTxcpW84ppqwQ0SU,11132
|
|
350
363
|
pygeai/proxy/servers.py,sha256=gWEceLmla_doKfEx6UJNIfrcr5USqkiYfz0LB9O80vA,11518
|
|
351
364
|
pygeai/proxy/tool.py,sha256=gxDd_jABg68vB_WOAGsosd0dQc3AbRKnFqY6qpXsBDk,2338
|
|
352
365
|
pygeai/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
366
|
pygeai/tests/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
-
pygeai/tests/admin/test_clients.py,sha256=
|
|
367
|
+
pygeai/tests/admin/test_clients.py,sha256=WqVlZttfh_gSwM9kVcBvuKGoroXb40pjnBwvNZEvO_A,6964
|
|
355
368
|
pygeai/tests/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
|
-
pygeai/tests/assistants/test_clients.py,sha256=
|
|
369
|
+
pygeai/tests/assistants/test_clients.py,sha256=L6dklqyJmle-aBPKC7sgL9k9D_-WptT6m_C2W0hkVaE,9013
|
|
357
370
|
pygeai/tests/assistants/test_managers.py,sha256=EbwGVabdCBqgMryjRMoWVFWa5kR9HqzsckB-DR3EuSA,11196
|
|
358
371
|
pygeai/tests/assistants/test_mappers.py,sha256=zIYdt4zqTG82L1t-GAyr-udRipxRvXnRerPUueOmkQY,4089
|
|
359
372
|
pygeai/tests/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
|
-
pygeai/tests/assistants/rag/test_clients.py,sha256=
|
|
373
|
+
pygeai/tests/assistants/rag/test_clients.py,sha256=AMqOmpYTISAm-vvJm22YVsKdvqoDLBMnxWklK-OfZa8,15740
|
|
361
374
|
pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP79jiMC-R1Vnvus,8359
|
|
362
375
|
pygeai/tests/assistants/rag/test_models.py,sha256=45eAQ4vE3gMvE8qWKlXg2klulQMZ3riHx5XWurE0mVA,10790
|
|
363
376
|
pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
pygeai/tests/auth/test_clients.py,sha256=
|
|
377
|
+
pygeai/tests/auth/test_clients.py,sha256=PmCletRHQRiy_D15VaGILUCq9T-acDUHCk6t7tqnmAQ,12113
|
|
365
378
|
pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
|
-
pygeai/tests/chat/test_clients.py,sha256=
|
|
379
|
+
pygeai/tests/chat/test_clients.py,sha256=E_0XMe0kFrNHZY_xRxNKjHq71y2ifzj51Pm10xqKqAw,15901
|
|
367
380
|
pygeai/tests/chat/test_iris.py,sha256=kWGrQ0T7E5Lg9-F9157GvF32l1sbaejbI5qbGKjWkxM,1186
|
|
368
381
|
pygeai/tests/chat/test_session.py,sha256=yIxUJJGRXWPjwxvsosIE7AygzKoJ45GIx5DCUYgTRqY,2906
|
|
369
382
|
pygeai/tests/chat/test_ui.py,sha256=vWUdyC8mmZ7P-Ej4ssrCcSxMBNAyXY0rwuI_H840XaU,8938
|
|
370
383
|
pygeai/tests/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
|
-
pygeai/tests/cli/
|
|
384
|
+
pygeai/tests/cli/test_error_handler.py,sha256=1HqdtRImsAwW0GtWi74WHtv1SUbF_1a9SwhrQ39_Ybg,9300
|
|
385
|
+
pygeai/tests/cli/test_geai_driver.py,sha256=W4eNeXfOdEas0VsNKd9qm6rwAR5bBMQTA69iLAFm1A0,6247
|
|
386
|
+
pygeai/tests/cli/test_parsers.py,sha256=QhNf46ijgwQVzzXhsoJ4Vbg948wXM2-5FSWa-yorm08,7267
|
|
372
387
|
pygeai/tests/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
373
388
|
pygeai/tests/cli/commands/test_assistant.py,sha256=IT1ORQZRFoNvGXn67SweI8DU3d0G8fJbnLAFfEJCV0k,10547
|
|
374
389
|
pygeai/tests/cli/commands/test_chat.py,sha256=4TK_sRqEQlgpCribkMjKqzAONVxAP7oSkfYw5bIRYb8,6120
|
|
375
390
|
pygeai/tests/cli/commands/test_common.py,sha256=gv1GOEAXq5IqiXu5xjANq4pxyjClcu2taCHIaG38Gjc,13514
|
|
376
|
-
pygeai/tests/cli/commands/test_embeddings.py,sha256=
|
|
377
|
-
pygeai/tests/cli/commands/test_evaluation.py,sha256=
|
|
391
|
+
pygeai/tests/cli/commands/test_embeddings.py,sha256=vFsA83cZECy7Tcg0FTDmtFdgT3OfM2dI9X64MniS8oI,5232
|
|
392
|
+
pygeai/tests/cli/commands/test_evaluation.py,sha256=rjIzAQxPXwoUgbbKvTy-Tgmid879M4Jipa-jBYRZPRg,30900
|
|
378
393
|
pygeai/tests/cli/commands/test_feedback.py,sha256=gHJ8Jt8kEemTvlpWLCyZCo73i0iBPlKhONRj4bJfhWU,3192
|
|
379
394
|
pygeai/tests/cli/commands/test_files.py,sha256=cJ0W4f8eg1T2TBZCah1k93nrk7R8ZL6_1HwCOhJOacI,7583
|
|
380
395
|
pygeai/tests/cli/commands/test_gam.py,sha256=oIFj4HJV6z1fQkIU2BmgP1VJ2zJ65UWDM6a3G8AenHM,8318
|
|
381
396
|
pygeai/tests/cli/commands/test_llm.py,sha256=SzQg9-Okix61JNWDWwaJIWuxxyji6n1PzaICleaonIM,5272
|
|
382
|
-
pygeai/tests/cli/commands/test_migrate.py,sha256=
|
|
397
|
+
pygeai/tests/cli/commands/test_migrate.py,sha256=LicCAMtR8ADytypF-ihTaus-EFc17McC008HbqFYT0o,7381
|
|
383
398
|
pygeai/tests/cli/commands/test_organization.py,sha256=ret6Aboh4ew34VSo_dZcfBOrtce1dDNQO7DvyGUbFx4,9227
|
|
384
399
|
pygeai/tests/cli/commands/test_rag.py,sha256=7SdTbCgdPDoLca4Y7LECkL6AVPpgIYXiXyTRubBNe1Y,11761
|
|
385
400
|
pygeai/tests/cli/commands/test_rerank.py,sha256=G9Kc-VnLJgx_fYy1qgoL0swYp9-VV6OSL9eNnU0Xkpw,5305
|
|
@@ -407,42 +422,44 @@ pygeai/tests/core/common/test_config.py,sha256=wmh9mb3KN7LU_EkeYl1NiiARdZKYwultA
|
|
|
407
422
|
pygeai/tests/core/common/test_decorators.py,sha256=HK3I46fTRZ8AQjVd_Fme_Wvoy2-SIl5GOGhldmd6xRc,2405
|
|
408
423
|
pygeai/tests/core/common/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
424
|
pygeai/tests/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
|
-
pygeai/tests/core/embeddings/test_clients.py,sha256=
|
|
425
|
+
pygeai/tests/core/embeddings/test_clients.py,sha256=dTivcz5E3E1X9ld3GRD9p_-gopYEfAYXqM6d1tAKS8E,10391
|
|
426
|
+
pygeai/tests/core/embeddings/test_managers.py,sha256=KZmtbXxncWatszhkNb9Z8mOWqvQW0mIolJqvBYw8Htg,6001
|
|
427
|
+
pygeai/tests/core/embeddings/test_mappers.py,sha256=3X0jV9bgidE_Nl_iLYrB5rUKDijLimF3Es_HN33er40,4955
|
|
411
428
|
pygeai/tests/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
412
|
-
pygeai/tests/core/feedback/test_clients.py,sha256=
|
|
429
|
+
pygeai/tests/core/feedback/test_clients.py,sha256=tF_jkxe-1E0Mm8bNdI7hTDjJj1_MJHrshNFOj7wyLZA,2076
|
|
413
430
|
pygeai/tests/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
|
-
pygeai/tests/core/files/test_clients.py,sha256=
|
|
431
|
+
pygeai/tests/core/files/test_clients.py,sha256=bTgJwQPU-ucoLEsGy0N5CI_VCRynyQhCFzvea-sUH-4,4637
|
|
415
432
|
pygeai/tests/core/files/test_managers.py,sha256=hGRTJoC4hVTVryz2042Ue2PIJ_BEoSwU9IVpqbgwfx0,10811
|
|
416
433
|
pygeai/tests/core/files/test_mappers.py,sha256=FGLsUCCagV8oJOJxg77QPHtWGClJreAn2beBHX6BF3g,4680
|
|
417
434
|
pygeai/tests/core/files/test_models.py,sha256=H54GUf3OWBF1OL0ewwKlavFaKO80OzzfN31lDylsvzw,4297
|
|
418
435
|
pygeai/tests/core/files/test_responses.py,sha256=ppb3P4ME_SowDHZiKSriAZAT0vbI-zbiO9pW9vxNfTU,5222
|
|
419
436
|
pygeai/tests/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
|
-
pygeai/tests/core/llm/test_clients.py,sha256=
|
|
437
|
+
pygeai/tests/core/llm/test_clients.py,sha256=KJPMGzNlLPvxbqFGs3g5cQ6Dnr-VrJ6JGWco5LoVGgM,6519
|
|
421
438
|
pygeai/tests/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
422
|
-
pygeai/tests/core/plugins/test_clients.py,sha256=
|
|
439
|
+
pygeai/tests/core/plugins/test_clients.py,sha256=bGW3e18mEm4qlFuFpiFJ8FcbYU15KYVvOM4XZ9hO5cI,2527
|
|
423
440
|
pygeai/tests/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
pygeai/tests/core/rerank/test_clients.py,sha256=
|
|
441
|
+
pygeai/tests/core/rerank/test_clients.py,sha256=vUpgoMgcjxbuCNst-6TX1TbwodfBUOeliMMEnLTSGEA,2704
|
|
425
442
|
pygeai/tests/core/rerank/test_managers.py,sha256=qWu_tOXghsPJ8ENbMlcVpPFfxtRQteHmAnhESDRxZUU,4834
|
|
426
443
|
pygeai/tests/core/rerank/test_mappers.py,sha256=yik-bhIViRL06x6VYXRvEoUl5gINhJCXJyDjBgv-g60,2114
|
|
427
444
|
pygeai/tests/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
|
-
pygeai/tests/core/secrets/test_clients.py,sha256=
|
|
445
|
+
pygeai/tests/core/secrets/test_clients.py,sha256=T-gXfBRGHdXjy-YrGrmFQd_K8_SAQ-nLOyymjnVrlLo,12466
|
|
429
446
|
pygeai/tests/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
447
|
pygeai/tests/core/services/test_rest.py,sha256=Gp-P9Eb1vherG1ZeJa_rXtArLNR5oMN4pUWJcyRvRFY,10804
|
|
431
448
|
pygeai/tests/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
432
449
|
pygeai/tests/core/utils/test_console.py,sha256=EvP0HpvD4bpq2WouH53UYovgh4Gq29xMudiLt-UNyA0,3266
|
|
433
450
|
pygeai/tests/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
434
|
-
pygeai/tests/dbg/test_debugger.py,sha256=
|
|
451
|
+
pygeai/tests/dbg/test_debugger.py,sha256=8eh14Ci6wDGsWm1eFZmpype4deMgPa77sHfNNmgM1sk,20506
|
|
435
452
|
pygeai/tests/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
436
453
|
pygeai/tests/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
|
-
pygeai/tests/evaluation/dataset/test_clients.py,sha256=
|
|
454
|
+
pygeai/tests/evaluation/dataset/test_clients.py,sha256=Z1HzG_XXhNz-mDw6uAsWLBBFw4f2tYDXA9FtPVmW_cM,11448
|
|
438
455
|
pygeai/tests/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
439
|
-
pygeai/tests/evaluation/plan/test_clients.py,sha256=
|
|
456
|
+
pygeai/tests/evaluation/plan/test_clients.py,sha256=JrLvXJbjhv62sG0ANzsiujBbuhxCjh_QAEJ4yBHLRGc,8887
|
|
440
457
|
pygeai/tests/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
|
-
pygeai/tests/evaluation/result/test_clients.py,sha256=
|
|
458
|
+
pygeai/tests/evaluation/result/test_clients.py,sha256=IHbqqmif3bHV66NzRgl4obTi5PNXMorsI2TNYmMz7wo,2679
|
|
442
459
|
pygeai/tests/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
|
-
pygeai/tests/gam/test_clients.py,sha256=
|
|
460
|
+
pygeai/tests/gam/test_clients.py,sha256=ghrhwIZymDOWhYHw-upTLa1eNQY6wvHMO0VaFyvi_n8,8906
|
|
444
461
|
pygeai/tests/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
pygeai/tests/health/test_clients.py,sha256=
|
|
462
|
+
pygeai/tests/health/test_clients.py,sha256=6G084xSln0r43HZSGQYBjHLHlfFAPmUx3ESkyJy-FHU,1565
|
|
446
463
|
pygeai/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
464
|
pygeai/tests/integration/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
448
465
|
pygeai/tests/integration/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -485,35 +502,35 @@ pygeai/tests/lab/test_managers.py,sha256=ZjUGS9rk9NiGwamacaSRgEWmMIfJ8BecgAfXZts
|
|
|
485
502
|
pygeai/tests/lab/test_mappers.py,sha256=2cLSggf168XWFpeZeBR7uJ-8C32TKb7qA91i_9fr_b0,11409
|
|
486
503
|
pygeai/tests/lab/test_models.py,sha256=yozezeaJ6g4GDFPZoI5ixiSqENvJ7zdAM8tuu3xq1_s,54340
|
|
487
504
|
pygeai/tests/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
|
-
pygeai/tests/lab/agents/test_clients.py,sha256=
|
|
505
|
+
pygeai/tests/lab/agents/test_clients.py,sha256=cXUl5tNR5UWVujmpY6yvkckUqAXDwmm9nQJ-CyjnJTk,21697
|
|
489
506
|
pygeai/tests/lab/agents/test_mappers.py,sha256=Ilkgc6w-VzFb_Hs6_K7HUf5IJ0NZ2-eutrHeDdbHVLk,13560
|
|
490
507
|
pygeai/tests/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
491
|
-
pygeai/tests/lab/processes/test_clients.py,sha256=
|
|
492
|
-
pygeai/tests/lab/processes/test_mappers.py,sha256=
|
|
508
|
+
pygeai/tests/lab/processes/test_clients.py,sha256=B3FBeOl1x08bMtUa271_57odASdv7YvRE-4HE6rlSUs,59825
|
|
509
|
+
pygeai/tests/lab/processes/test_mappers.py,sha256=WuBqfS_jUCEMoQdo-uXPo0K5ct4957M7yGXLyCCz1CM,39959
|
|
493
510
|
pygeai/tests/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
494
511
|
pygeai/tests/lab/spec/test_loader.py,sha256=Yhyy0zHxH6F1TeFSbop6YgRFwKjRkjFRdzM8aSaAkKk,2414
|
|
495
512
|
pygeai/tests/lab/spec/test_parsers.py,sha256=C0sAqgpVu1CqivQ2VWdqusIaeg8f25Vb9uBbFZO1Sfg,7744
|
|
496
513
|
pygeai/tests/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
|
-
pygeai/tests/lab/strategies/test_clients.py,sha256
|
|
514
|
+
pygeai/tests/lab/strategies/test_clients.py,sha256=lb3gsWHwkZV2BKxrnbvFmkh3frdIJ0tOt1rL6AQpfl8,10557
|
|
498
515
|
pygeai/tests/lab/strategies/test_mappers.py,sha256=gm0G2W-YAuvjn6qFa1O0nkkgTLSA1eIJAt9qE_I7BFU,5783
|
|
499
516
|
pygeai/tests/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
500
517
|
pygeai/tests/lab/tools/test_clients.py,sha256=dYhT4wbz-IVYZ5BNj5qSUmtnJ-gKfL6UdYkdxtYcIWE,22672
|
|
501
518
|
pygeai/tests/lab/tools/test_mappers.py,sha256=_wA40iFvSze5-ddJ8WhjF0-IKNE5lwIFTTviVRxy-Wc,7803
|
|
502
519
|
pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
503
|
-
pygeai/tests/migration/test_strategies.py,sha256=
|
|
504
|
-
pygeai/tests/migration/test_tools.py,sha256=
|
|
520
|
+
pygeai/tests/migration/test_strategies.py,sha256=Ql9Nd9Hx_YZkahENC-JKWtUlsm6Gma_F3-ToAtDRAaI,17233
|
|
521
|
+
pygeai/tests/migration/test_tools.py,sha256=PY7NFqvW71R1xKCICmdHNFca_8gTob0QM4yRe-ILvnw,5698
|
|
505
522
|
pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
506
|
-
pygeai/tests/organization/test_clients.py,sha256=
|
|
523
|
+
pygeai/tests/organization/test_clients.py,sha256=INB3ndU0n5aMnkRPt_6AR8tRxLtVvrXV5O9u0DiRgbw,21993
|
|
507
524
|
pygeai/tests/organization/test_managers.py,sha256=Pc6tsQ3TxI_0ZLeMsEGjxPO5Z0dmk0oMy99n5xPmLDI,19872
|
|
508
525
|
pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
|
|
509
526
|
pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
|
|
510
527
|
pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
|
-
pygeai/tests/organization/limits/test_clients.py,sha256=
|
|
528
|
+
pygeai/tests/organization/limits/test_clients.py,sha256=D5w5VJK5bke3GEK6NZW9KNDk24tT1aBSWY2YzBBOuCs,28234
|
|
512
529
|
pygeai/tests/organization/limits/test_managers.py,sha256=XPwWxT3l7x--_F9CwZhKsoVQe4Y6a7lDBU494HQc0IY,20445
|
|
513
530
|
pygeai/tests/proxy/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
514
|
-
pygeai/tests/proxy/test_clients.py,sha256=
|
|
531
|
+
pygeai/tests/proxy/test_clients.py,sha256=BVudijLP1TvsSpJW5_0tMVHdeMbOgAEQXgQdhE5qS4k,14054
|
|
515
532
|
pygeai/tests/proxy/test_config.py,sha256=5ZMyW7N-QrlDLG_qSwDGRIPOSOH5iZoe7Ts1GTuJqps,7541
|
|
516
|
-
pygeai/tests/proxy/test_integration.py,sha256=
|
|
533
|
+
pygeai/tests/proxy/test_integration.py,sha256=DSKgWrUgjAuEpyDyDaTW4oYpTRqwjEoFWmjbI_mkW7w,11481
|
|
517
534
|
pygeai/tests/proxy/test_managers.py,sha256=KHd45UezpMTq972TR9B7LPHV44ZIsNxA5-uMBR2pETM,12787
|
|
518
535
|
pygeai/tests/proxy/test_servers.py,sha256=U159ZNihpKawXXp1iCydvKuI6R_x0ePsEgFZDQYKBbU,16124
|
|
519
536
|
pygeai/tests/proxy/test_tool.py,sha256=a0BfjOEv6BBHD3BW-E2anIkQM68TuRmDRighKMpTrgc,6142
|
|
@@ -549,11 +566,70 @@ pygeai/tests/snippets/chat/chat_completion_2.py,sha256=0TigXTiD0bXuB-qff79rRb_r2
|
|
|
549
566
|
pygeai/tests/snippets/chat/chat_completion_3.py,sha256=UGY0At4HGDCiGT9rAOwwWLWYGo3v6ZVeYgbjWeT5xd8,581
|
|
550
567
|
pygeai/tests/snippets/chat/chat_completion_4.py,sha256=nBOlnCMNUGpJaXvP_2XStR-qHSQIaK6GRLzoKyrOvIg,1726
|
|
551
568
|
pygeai/tests/snippets/chat/chat_completion_streaming.py,sha256=2bb5fVrYknoaRVdH8-DHYuz4NtYgCFf3JyyQBa2F-pQ,1395
|
|
569
|
+
pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py,sha256=VDx5Cgy2smWt1MdRz3BJx290_bv2KaCz8NUsNlC41Fg,314
|
|
552
570
|
pygeai/tests/snippets/chat/get_request_status.py,sha256=5_a7DxotYkE-2_PRIT6iDTRct9KNduQHt4X7DmU_kVo,256
|
|
571
|
+
pygeai/tests/snippets/chat/get_response.py,sha256=H7neNsbmykGv7urk-NP-WjZuTT930qu3aPbXUGTerYA,286
|
|
572
|
+
pygeai/tests/snippets/chat/get_response_streaming.py,sha256=nF9difHdFTCbrLy73XGIUt5W-FBixg-D6HvhkqjsnIQ,404
|
|
573
|
+
pygeai/tests/snippets/chat/get_response_with_files.py,sha256=ulGwnT5NN2uyQh9tzmw6-iUoYShs2QmTSSxYsBcY8M4,336
|
|
574
|
+
pygeai/tests/snippets/chat/get_response_with_tools.py,sha256=kTC0N07jWxrLzK_LuK-Gvpc5bzftoiDoTrCfhPT-uMI,837
|
|
553
575
|
pygeai/tests/snippets/chat/send_chat_request.py,sha256=t9tdSE6YozLvc6o6rMPNbZvXcYTfFCjeS5Fn0qGWPRQ,863
|
|
576
|
+
pygeai/tests/snippets/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
|
+
pygeai/tests/snippets/dbg/basic_debugging.py,sha256=XlT7ooQuaCR7W5O4OXL7VLD8vrcmirR-eKRzwGF-q9g,737
|
|
578
|
+
pygeai/tests/snippets/dbg/breakpoint_management.py,sha256=h21WfZJ3fTSPfWLrw9vln0gW92e6yLFmjEWifvIbZpg,1215
|
|
579
|
+
pygeai/tests/snippets/dbg/stack_navigation.py,sha256=A2qcsw4-Zccf84ELd3o6yryhqbfZXMH5V0RWsOnfUXE,1042
|
|
580
|
+
pygeai/tests/snippets/dbg/stepping_example.py,sha256=M4uZI3xMOGQh95Ojgg9zWAX2sZ9AUH91wQm4mRoJ8X0,996
|
|
554
581
|
pygeai/tests/snippets/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
582
|
+
pygeai/tests/snippets/embeddings/cache_example.py,sha256=ie7JGfsz_tTBY4eBr8f8HQeJ4J5R2Uv9lpStYHM-bEU,1071
|
|
583
|
+
pygeai/tests/snippets/embeddings/cohere_example.py,sha256=Zx3qbblIA3z7_dlKJGAJ_VnmyB35WiOi4IcqMAKwYFg,1420
|
|
555
584
|
pygeai/tests/snippets/embeddings/generate_embeddings.py,sha256=IyIlO6UDGMjT-E9uK91NdYsuWI4fCRGwqlaFr0iUzSc,785
|
|
585
|
+
pygeai/tests/snippets/embeddings/openai_base64_example.py,sha256=OXEnou8tCc8DgrLnsBJBQDv_GROTsh-UpCLzmvqgM-g,938
|
|
586
|
+
pygeai/tests/snippets/embeddings/openai_example.py,sha256=DFnarCeNVaq4Jn1oJSRIRr7ZCn-m1JQe1EbgSEl1DgA,1007
|
|
587
|
+
pygeai/tests/snippets/embeddings/similarity_example.py,sha256=CMuG54YV2s-UwCVHYPle9EoFFv-GsWN9RsQx9sahD6o,1388
|
|
556
588
|
pygeai/tests/snippets/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
589
|
+
pygeai/tests/snippets/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
590
|
+
pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py,sha256=OQMO_30VN98PX18qR5yLm693k7VPbX-kumjSRY_0sf8,7034
|
|
591
|
+
pygeai/tests/snippets/evaluation/dataset/create_dataset.py,sha256=aJcH6HMyIG6O0hvsNzLEyLRWywgSkBf2RmjBI-wD6Qg,779
|
|
592
|
+
pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py,sha256=BjjL97sEZ6mhkpStPG-GplPyBVm40wA8IGGDuJqspv4,330
|
|
593
|
+
pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py,sha256=8OSID-i1UZLctmB6hiv0UbUuzCujJ8mYWlbPWw_O34A,590
|
|
594
|
+
pygeai/tests/snippets/evaluation/dataset/create_expected_source.py,sha256=MDh1oyP9k3l0XV7x91c_2xEZA1fDTBp5PfbBaCDZpsw,570
|
|
595
|
+
pygeai/tests/snippets/evaluation/dataset/create_filter_variable.py,sha256=vFhGS7IGGliFs-9ULfaoOhxU-cUqGwBxKundUlEkMjM,546
|
|
596
|
+
pygeai/tests/snippets/evaluation/dataset/delete_dataset.py,sha256=_cz9lOI5y0dF8Ano-nBm9ONE1VAtOExRrUXUMuBACgw,239
|
|
597
|
+
pygeai/tests/snippets/evaluation/dataset/delete_dataset_row.py,sha256=JYsmo9qzz3T-dQ0ymtsGU4BGL9mUFHLjvMUOX2btDvo,290
|
|
598
|
+
pygeai/tests/snippets/evaluation/dataset/delete_expected_source.py,sha256=RmnNvgnQRxpv-hdVH2GXvYrswjkzsXeA3BGS-Dx8AYM,393
|
|
599
|
+
pygeai/tests/snippets/evaluation/dataset/delete_filter_variable.py,sha256=9ubYfg3aOAmeMY_LtrKble9MSd7SWynQfmQWmwtKo50,401
|
|
600
|
+
pygeai/tests/snippets/evaluation/dataset/get_dataset.py,sha256=Pfifj1CK9Z89sUZjuXpfurJpHUqDu67Ss0HoePDwDm8,236
|
|
601
|
+
pygeai/tests/snippets/evaluation/dataset/get_dataset_row.py,sha256=ek33YLcOra30FTc69dQi0rXnrB6KrlzctqiqfIHrKWI,287
|
|
602
|
+
pygeai/tests/snippets/evaluation/dataset/get_expected_source.py,sha256=8r8lq_pOUq-suhuwupkZ1YjTNlnwFzIztKXJQFu2agY,390
|
|
603
|
+
pygeai/tests/snippets/evaluation/dataset/get_filter_variable.py,sha256=u8cihENl0_TqbfHzKjd_J2jSMtBcYg_Tp2LlRJTwpEA,398
|
|
604
|
+
pygeai/tests/snippets/evaluation/dataset/list_dataset_rows.py,sha256=NpJtey25sqIgvP5wXeJF13KdrC0FbjfxSzOCLm2ToY8,239
|
|
605
|
+
pygeai/tests/snippets/evaluation/dataset/list_datasets.py,sha256=WkSjDvlR9lPSwYrJDMWCMzdaMrDbLh4PA3VzDogwP_8,172
|
|
606
|
+
pygeai/tests/snippets/evaluation/dataset/list_expected_sources.py,sha256=yzK9YaQIEIgCIc5Nyv_9zk1x7VZxWy0pKKrP0b2ZUFg,298
|
|
607
|
+
pygeai/tests/snippets/evaluation/dataset/list_filter_variables.py,sha256=RDEbI35qRXe7X-LfikKTUiQdV9fxeH4hvF8mz0Gfato,298
|
|
608
|
+
pygeai/tests/snippets/evaluation/dataset/update_dataset.py,sha256=9ANttq_N_gdrDvnnkTPSapao6X_a_QAC-a1y-7j7hno,381
|
|
609
|
+
pygeai/tests/snippets/evaluation/dataset/update_dataset_row.py,sha256=QlJEM6pmufdDvajx5A502qLTsWx4V8yjJzMJrbYs6UM,542
|
|
610
|
+
pygeai/tests/snippets/evaluation/dataset/update_expected_source.py,sha256=g4znWaQPOUVN1XjX6BpdQs3lSzm2PZ3usmEVq0gTcrs,544
|
|
611
|
+
pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py,sha256=GE4xFDUdQLgofmHh6kHjxDwFwUq_jvdMb10A0E8xZ0I,534
|
|
612
|
+
pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py,sha256=t8HL8MdwaDFSemy-2tZKD2pHhaKNrPr3H7mXH_XtOB4,310
|
|
613
|
+
pygeai/tests/snippets/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
614
|
+
pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py,sha256=ADcMckwO6mHOjPR5jzQa3xtix2-JS-bKESjg0hIxLwE,350
|
|
615
|
+
pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py,sha256=I7dE8Klp--yv6ek0M8O7XyZOaQbnP0nUxfvYrjV45xM,4529
|
|
616
|
+
pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py,sha256=_J19BpWeYVmHG0hjdq-L9b6ozjko7IfT3pu6UN0eFaI,617
|
|
617
|
+
pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py,sha256=scrXCfLAxrlk8sipfV1K4FPD63frJjLU_tiJeth44LU,552
|
|
618
|
+
pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py,sha256=Wr68Kjk_buOql786DhWjips2vWmvhOkuRslAfUiAhuc,273
|
|
619
|
+
pygeai/tests/snippets/evaluation/plan/delete_plan_system_metric.py,sha256=szgcmVXJqRs8LPuLLnZuVxc5lUxT8s8EU63_mlOwwO0,366
|
|
620
|
+
pygeai/tests/snippets/evaluation/plan/execute_evaluation_plan.py,sha256=fpyQDTV1MK8g_cD48HTL7Zx-DnOG55HI-F71b9fKRSQ,365
|
|
621
|
+
pygeai/tests/snippets/evaluation/plan/get_evaluation_plan.py,sha256=pPLk0BvTSrDHE8gg2GuJRDBZxKA_6EUPpXYqdOo4LP0,262
|
|
622
|
+
pygeai/tests/snippets/evaluation/plan/get_plan_system_metric.py,sha256=Lp42WODU_iZMWrhnHotsgYmOhjuKd0hhZFL8x7dwQ1I,360
|
|
623
|
+
pygeai/tests/snippets/evaluation/plan/get_system_metric.py,sha256=Wz0uNDTboJnvjjVxyr--Gr99ilsUR4HaKI2fiGx2mj8,243
|
|
624
|
+
pygeai/tests/snippets/evaluation/plan/list_evaluation_plans.py,sha256=iFjSAEIXIxqgNckovXgJjyAMjQZGiyZbS_fNgaIg2Ag,180
|
|
625
|
+
pygeai/tests/snippets/evaluation/plan/list_plan_system_metrics.py,sha256=xuzp_U1LrzW7n__GQeJrULoC8BXY0cGMer_kEBCGV3o,282
|
|
626
|
+
pygeai/tests/snippets/evaluation/plan/list_system_metrics.py,sha256=dXSKaEZcbJYMY3GMy7LdnPZ6g5SvHnQn5gxi1XVQZH8,186
|
|
627
|
+
pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py,sha256=HR3WVKHuPd8jZofy-LB3LvOkOcAqcmDc3rzVmGo7iU0,538
|
|
628
|
+
pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py,sha256=3TlDFPi2leLnW5MzB97ubrJNelPBmus_KnxNTINRolY,396
|
|
629
|
+
pygeai/tests/snippets/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
630
|
+
pygeai/tests/snippets/evaluation/result/complete_workflow_example.py,sha256=FGO6P8KDtc8AtWso1TVEd3KkJelMw_av--Z6ARbfr9M,5471
|
|
631
|
+
pygeai/tests/snippets/evaluation/result/get_evaluation_result.py,sha256=itet30dV9xV_NVYbxTnkL4FPb6heIyGJEsyzVrZ83M0,1070
|
|
632
|
+
pygeai/tests/snippets/evaluation/result/list_evaluation_results.py,sha256=e31Hd0iELVtDsMvK847f3yvMgePO7xqT2MLP62zo-Wc,764
|
|
557
633
|
pygeai/tests/snippets/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
558
634
|
pygeai/tests/snippets/files/delete_file.py,sha256=ORpPkrL9FllDonCHfoqf6LJUGyPHBoTdm1zpopzqbqU,249
|
|
559
635
|
pygeai/tests/snippets/files/get_file_content.py,sha256=LM8DEmtE4MebEptcR_SUrbMfKuR9zfKfxsY9JspLVvc,255
|
|
@@ -623,9 +699,15 @@ pygeai/tests/snippets/lab/use_cases/update_lab_expert.py,sha256=-YLKCxoIXV9RNTh5
|
|
|
623
699
|
pygeai/tests/snippets/lab/use_cases/update_web_designer.py,sha256=MRKwJmnh_O_YF7i1zQl--yN7Ib5P7D7y2Keey02pK0A,10620
|
|
624
700
|
pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=BgHpf4kiLVQEc-YrapaiuomqIfzbRzr6kniInAhgO94,11620
|
|
625
701
|
pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py,sha256=a3oj9i2RMnGj-BpDjSthDZVvAzcEyXo9cqygJ1jaVqA,14459
|
|
626
|
-
pygeai/tests/snippets/migrate/__init__.py,sha256=
|
|
702
|
+
pygeai/tests/snippets/migrate/__init__.py,sha256=NPFth7aeZ8GMDzRABuEUpm83psblNy6NLdk4ECEaPs0,1326
|
|
703
|
+
pygeai/tests/snippets/migrate/agent_migration.py,sha256=xBADIh9ebuZKaXgzRedO2E-DdsyL6aWdXodDnwfMPTg,3720
|
|
704
|
+
pygeai/tests/snippets/migrate/assistant_migration.py,sha256=2HYvMvFbQxZ1VxcHUQFpmx-DuHC-3eLQj8zTU8DbFSM,2137
|
|
705
|
+
pygeai/tests/snippets/migrate/orchestrator_examples.py,sha256=hNymnQeXQ5dhuO_5rz6eEbCwKHb0S4GPJd3EIUOs15E,6836
|
|
706
|
+
pygeai/tests/snippets/migrate/process_migration.py,sha256=To0n6q1NN0sEr7anUv0U1f2aZeW0fBdqYqwVdCEZurw,2146
|
|
707
|
+
pygeai/tests/snippets/migrate/project_migration.py,sha256=N62oRMAc_lAhgmx8Y_gyTMGj-esSJ-ThyEzn3wZI7XE,1356
|
|
708
|
+
pygeai/tests/snippets/migrate/tool_migration.py,sha256=zUSlkO2LtyNQhE782lYvxbTX7NVg9xiwEaH4mSd-Tys,1998
|
|
627
709
|
pygeai/tests/snippets/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
628
|
-
pygeai/tests/snippets/organization/create_project.py,sha256=
|
|
710
|
+
pygeai/tests/snippets/organization/create_project.py,sha256=dS_b0BaevxqVZsnQcOurxwnwPcdPy2oBFFFu2f8z_-o,596
|
|
629
711
|
pygeai/tests/snippets/organization/delete_project.py,sha256=jLzHa_ra-T3XtO-eiegv4667TiKFfkuODsqKC6mIECI,201
|
|
630
712
|
pygeai/tests/snippets/organization/export_request_data.py,sha256=hNHAZaUDKm7fRttEYl14m5VtZRW1HKt62BFk5wip-Gk,166
|
|
631
713
|
pygeai/tests/snippets/organization/get_memberships.py,sha256=PXDUf-ahEZ2gLYmRON-SqBbl5d8zhQU5T3vy_JAiSSU,320
|
|
@@ -695,9 +777,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
|
|
|
695
777
|
pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
|
|
696
778
|
pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
|
|
697
779
|
pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
|
|
698
|
-
pygeai-0.6.
|
|
699
|
-
pygeai-0.6.
|
|
700
|
-
pygeai-0.6.
|
|
701
|
-
pygeai-0.6.
|
|
702
|
-
pygeai-0.6.
|
|
703
|
-
pygeai-0.6.
|
|
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,,
|
|
File without changes
|