pygeai 0.6.0b13__py3-none-any.whl → 0.6.1__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/__init__.py +1 -2
- pygeai/_docs/source/content/api_reference/project.rst +392 -0
- pygeai/_docs/source/content/authentication.rst +130 -1
- pygeai/_docs/source/content/debugger.rst +327 -157
- pygeai/_docs/source/content/migration.rst +391 -7
- pygeai/_docs/source/pygeai.core.common.rst +8 -0
- pygeai/_docs/source/pygeai.tests.auth.rst +56 -0
- pygeai/_docs/source/pygeai.tests.cli.rst +8 -0
- pygeai/admin/clients.py +1 -3
- pygeai/analytics/clients.py +1 -1
- pygeai/assistant/clients.py +2 -7
- pygeai/assistant/data/clients.py +0 -8
- pygeai/assistant/data_analyst/clients.py +0 -2
- pygeai/assistant/managers.py +1 -1
- pygeai/assistant/rag/clients.py +0 -2
- pygeai/assistant/rag/mappers.py +9 -11
- pygeai/auth/clients.py +26 -7
- pygeai/auth/endpoints.py +2 -1
- pygeai/chat/clients.py +2 -2
- pygeai/chat/managers.py +1 -1
- pygeai/cli/commands/admin.py +13 -25
- pygeai/cli/commands/analytics.py +56 -88
- pygeai/cli/commands/assistant.py +84 -138
- pygeai/cli/commands/auth.py +23 -46
- pygeai/cli/commands/base.py +0 -1
- pygeai/cli/commands/chat.py +218 -209
- pygeai/cli/commands/common.py +5 -5
- pygeai/cli/commands/configuration.py +79 -29
- pygeai/cli/commands/docs.py +3 -4
- pygeai/cli/commands/embeddings.py +13 -19
- pygeai/cli/commands/evaluation.py +133 -344
- pygeai/cli/commands/feedback.py +7 -15
- pygeai/cli/commands/files.py +26 -53
- pygeai/cli/commands/gam.py +28 -69
- pygeai/cli/commands/lab/ai_lab.py +96 -142
- pygeai/cli/commands/lab/common.py +1 -1
- pygeai/cli/commands/lab/spec.py +12 -32
- pygeai/cli/commands/llm.py +9 -18
- pygeai/cli/commands/migrate.py +43 -99
- pygeai/cli/commands/organization.py +223 -196
- pygeai/cli/commands/rag.py +35 -58
- pygeai/cli/commands/rerank.py +21 -25
- pygeai/cli/commands/secrets.py +39 -67
- pygeai/cli/commands/usage_limits.py +50 -136
- pygeai/cli/commands/validators.py +1 -1
- pygeai/cli/geai.py +32 -3
- pygeai/cli/geai_proxy.py +6 -2
- pygeai/cli/install_man.py +1 -1
- pygeai/cli/parsers.py +1 -1
- pygeai/core/base/clients.py +90 -21
- pygeai/core/base/mappers.py +39 -55
- pygeai/core/base/session.py +134 -22
- pygeai/core/common/config.py +50 -13
- pygeai/core/common/constants.py +8 -0
- pygeai/core/common/exceptions.py +6 -0
- pygeai/core/embeddings/clients.py +0 -1
- pygeai/core/embeddings/managers.py +0 -1
- pygeai/core/feedback/clients.py +0 -2
- pygeai/core/feedback/models.py +1 -1
- pygeai/core/files/clients.py +0 -3
- pygeai/core/files/managers.py +1 -1
- pygeai/core/files/mappers.py +4 -5
- pygeai/core/llm/clients.py +0 -1
- pygeai/core/models.py +4 -4
- pygeai/core/plugins/clients.py +0 -3
- pygeai/core/plugins/models.py +2 -2
- pygeai/core/rerank/clients.py +0 -2
- pygeai/core/secrets/clients.py +0 -2
- pygeai/core/services/rest.py +80 -14
- pygeai/core/singleton.py +24 -0
- pygeai/dbg/__init__.py +2 -2
- pygeai/dbg/debugger.py +276 -38
- pygeai/evaluation/clients.py +2 -4
- pygeai/evaluation/dataset/clients.py +0 -1
- pygeai/evaluation/plan/clients.py +0 -2
- pygeai/evaluation/result/clients.py +0 -2
- pygeai/gam/clients.py +1 -3
- pygeai/health/clients.py +1 -3
- pygeai/lab/clients.py +0 -1
- pygeai/lab/managers.py +0 -1
- pygeai/lab/models.py +0 -1
- pygeai/lab/strategies/clients.py +1 -2
- pygeai/lab/tools/clients.py +2 -2
- pygeai/lab/tools/mappers.py +1 -1
- pygeai/migration/strategies.py +5 -6
- pygeai/migration/tools.py +1 -1
- pygeai/organization/clients.py +118 -12
- pygeai/organization/endpoints.py +1 -0
- pygeai/organization/limits/clients.py +4 -6
- pygeai/organization/limits/managers.py +1 -4
- pygeai/organization/managers.py +2 -2
- pygeai/proxy/config.py +1 -0
- pygeai/proxy/managers.py +6 -5
- pygeai/tests/admin/test_clients.py +11 -11
- pygeai/tests/assistants/rag/test_clients.py +1 -1
- pygeai/tests/assistants/rag/test_models.py +1 -2
- pygeai/tests/assistants/test_clients.py +1 -1
- pygeai/tests/assistants/test_managers.py +1 -3
- pygeai/tests/auth/test_cli_configuration.py +252 -0
- pygeai/tests/auth/test_client_initialization.py +411 -0
- pygeai/tests/auth/test_clients.py +29 -27
- pygeai/tests/auth/test_config_manager.py +305 -0
- pygeai/tests/auth/test_header_injection.py +294 -0
- pygeai/tests/auth/test_oauth.py +3 -1
- pygeai/tests/auth/test_session_logging.py +119 -0
- pygeai/tests/auth/test_session_validation.py +408 -0
- pygeai/tests/auth/test_singleton_reset.py +201 -0
- pygeai/tests/chat/test_clients.py +1 -1
- pygeai/tests/chat/test_iris.py +1 -1
- pygeai/tests/chat/test_ui.py +0 -2
- pygeai/tests/cli/commands/lab/test_ai_lab.py +1 -3
- pygeai/tests/cli/commands/lab/test_common.py +0 -1
- pygeai/tests/cli/commands/test_chat.py +1 -1
- pygeai/tests/cli/commands/test_common.py +0 -1
- pygeai/tests/cli/commands/test_embeddings.py +2 -2
- pygeai/tests/cli/commands/test_evaluation.py +1 -9
- pygeai/tests/cli/commands/test_llm.py +1 -1
- pygeai/tests/cli/commands/test_migrate.py +1 -1
- pygeai/tests/cli/commands/test_rerank.py +0 -1
- pygeai/tests/cli/commands/test_secrets.py +1 -1
- pygeai/tests/cli/commands/test_show_help.py +0 -1
- pygeai/tests/cli/commands/test_validators.py +0 -1
- pygeai/tests/cli/test_credentials_flag.py +312 -0
- pygeai/tests/cli/test_error_handler.py +0 -1
- pygeai/tests/core/base/test_mappers.py +2 -2
- pygeai/tests/core/base/test_models.py +4 -4
- pygeai/tests/core/common/test_config.py +2 -7
- pygeai/tests/core/common/test_decorators.py +0 -1
- pygeai/tests/core/embeddings/test_managers.py +1 -1
- pygeai/tests/core/feedback/test_clients.py +2 -2
- pygeai/tests/core/files/test_clients.py +6 -6
- pygeai/tests/core/files/test_models.py +0 -1
- pygeai/tests/core/files/test_responses.py +0 -1
- pygeai/tests/core/llm/test_clients.py +1 -1
- pygeai/tests/core/plugins/test_clients.py +4 -4
- pygeai/tests/core/rerank/test_mappers.py +1 -3
- pygeai/tests/core/secrets/test_clients.py +2 -3
- pygeai/tests/core/services/test_rest.py +10 -10
- pygeai/tests/core/utils/test_console.py +0 -1
- pygeai/tests/dbg/test_debugger.py +95 -8
- pygeai/tests/evaluation/dataset/test_clients.py +24 -27
- pygeai/tests/evaluation/plan/test_clients.py +16 -18
- pygeai/tests/evaluation/result/test_clients.py +4 -5
- pygeai/tests/health/test_clients.py +2 -2
- pygeai/tests/integration/lab/agents/test_create_agent.py +1 -3
- pygeai/tests/integration/lab/agents/test_get_agent.py +1 -1
- pygeai/tests/integration/lab/processes/test_create_process.py +2 -2
- pygeai/tests/integration/lab/processes/test_create_task.py +2 -3
- pygeai/tests/integration/lab/processes/test_delete_process.py +0 -1
- pygeai/tests/integration/lab/processes/test_get_process.py +2 -4
- pygeai/tests/integration/lab/processes/test_list_process_instances.py +1 -3
- pygeai/tests/integration/lab/processes/test_update_process.py +3 -9
- pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py +1 -2
- pygeai/tests/integration/lab/tools/test_delete_tool.py +1 -1
- pygeai/tests/integration/lab/tools/test_list_tools.py +1 -1
- pygeai/tests/integration/lab/tools/test_update_tool.py +1 -1
- pygeai/tests/lab/agents/test_clients.py +17 -17
- pygeai/tests/lab/processes/test_clients.py +67 -67
- pygeai/tests/lab/processes/test_mappers.py +23 -23
- pygeai/tests/lab/spec/test_loader.py +0 -2
- pygeai/tests/lab/spec/test_parsers.py +1 -2
- pygeai/tests/lab/strategies/test_clients.py +10 -10
- pygeai/tests/lab/test_managers.py +3 -5
- pygeai/tests/lab/test_mappers.py +1 -4
- pygeai/tests/lab/tools/test_clients.py +21 -21
- pygeai/tests/lab/tools/test_mappers.py +0 -1
- pygeai/tests/organization/limits/test_clients.py +33 -33
- pygeai/tests/organization/limits/test_managers.py +7 -7
- pygeai/tests/organization/test_clients.py +78 -60
- pygeai/tests/proxy/test_clients.py +1 -1
- pygeai/tests/proxy/test_integration.py +1 -4
- pygeai/tests/proxy/test_managers.py +1 -2
- pygeai/tests/proxy/test_servers.py +1 -2
- pygeai/tests/snippets/assistants/rag/delete_rag_assistant.py +0 -1
- pygeai/tests/snippets/assistants/rag/get_documents.py +0 -1
- pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py +0 -1
- pygeai/tests/snippets/chat/get_request_status.py +0 -1
- pygeai/tests/snippets/dbg/file_debugging.py +72 -0
- pygeai/tests/snippets/dbg/module_debugging.py +60 -0
- pygeai/tests/snippets/embeddings/cohere_example.py +2 -2
- pygeai/tests/snippets/embeddings/openai_base64_example.py +1 -1
- pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py +8 -8
- pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py +5 -5
- pygeai/tests/snippets/evaluation/result/complete_workflow_example.py +3 -3
- pygeai/tests/snippets/lab/agentic_flow_example_1.py +1 -1
- pygeai/tests/snippets/lab/agentic_flow_example_2.py +3 -4
- pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py +2 -2
- pygeai/tests/snippets/lab/agents/delete_agent.py +1 -2
- pygeai/tests/snippets/lab/agents/get_agent.py +1 -1
- pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py +10 -10
- pygeai/tests/snippets/lab/agents/get_sharing_link.py +0 -1
- pygeai/tests/snippets/lab/agents/list_agents.py +1 -1
- pygeai/tests/snippets/lab/agents/publish_agent_revision.py +0 -1
- pygeai/tests/snippets/lab/agents/update_agent_properties.py +1 -1
- pygeai/tests/snippets/lab/crud_ui.py +3 -5
- pygeai/tests/snippets/lab/processes/kbs/get_kb.py +0 -1
- pygeai/tests/snippets/lab/processes/kbs/list_kbs.py +0 -1
- pygeai/tests/snippets/lab/processes/list_processes.py +1 -1
- pygeai/tests/snippets/lab/samples/summarize_files.py +0 -3
- pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py +0 -1
- pygeai/tests/snippets/lab/strategies/list_reasoning_strategies.py +1 -1
- pygeai/tests/snippets/lab/tools/get_tool.py +1 -1
- pygeai/tests/snippets/lab/tools/publish_tool_revision.py +0 -1
- pygeai/tests/snippets/lab/tools/set_parameters.py +1 -2
- pygeai/tests/snippets/lab/use_cases/c_code_fixer_agent_flow.py +2 -3
- pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py +1 -1
- pygeai/tests/snippets/lab/use_cases/update_cli_expert.py +0 -1
- pygeai/tests/snippets/lab/use_cases/update_lab_expert.py +0 -1
- pygeai/tests/snippets/lab/use_cases/update_web_designer.py +0 -1
- pygeai/tests/snippets/lab/use_cases/update_web_reader.py +0 -1
- pygeai/tests/snippets/migrate/orchestrator_examples.py +1 -1
- {pygeai-0.6.0b13.dist-info → pygeai-0.6.1.dist-info}/METADATA +32 -7
- {pygeai-0.6.0b13.dist-info → pygeai-0.6.1.dist-info}/RECORD +217 -206
- {pygeai-0.6.0b13.dist-info → pygeai-0.6.1.dist-info}/WHEEL +0 -0
- {pygeai-0.6.0b13.dist-info → pygeai-0.6.1.dist-info}/entry_points.txt +0 -0
- {pygeai-0.6.0b13.dist-info → pygeai-0.6.1.dist-info}/licenses/LICENSE +0 -0
- {pygeai-0.6.0b13.dist-info → pygeai-0.6.1.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pygeai/__init__.py,sha256=
|
|
1
|
+
pygeai/__init__.py,sha256=UF45SV-nygmNitI5RKrXKeoW6LlQAu9ObM17_eJHEoU,492
|
|
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
|
|
@@ -18,7 +18,7 @@ pygeai/_docs/source/pygeai.cli.commands.rst,sha256=naVP0RQe8KdetRfXjdUPNG9ZGXeUI
|
|
|
18
18
|
pygeai/_docs/source/pygeai.cli.rst,sha256=KDv2owHUAqulKv_AEpgmXnvoTGkPUyBUnyGD90tWFcM,1026
|
|
19
19
|
pygeai/_docs/source/pygeai.cli.texts.rst,sha256=z2dfcJAwQPLkfDJxTp7iyGJ5KijBhC7LcRlbdSB3bqw,346
|
|
20
20
|
pygeai/_docs/source/pygeai.core.base.rst,sha256=IKexE5NtfxU_oot-y4dwKGPkvTjyuFD8B4LE_dPXEJw,1002
|
|
21
|
-
pygeai/_docs/source/pygeai.core.common.rst,sha256=
|
|
21
|
+
pygeai/_docs/source/pygeai.core.common.rst,sha256=EuA9oF2AhBkCs7uSKNB5AByQLXRXjb5UkioTWFO8LD8,889
|
|
22
22
|
pygeai/_docs/source/pygeai.core.embeddings.rst,sha256=9fXh2IEcNUubbEu1azDLE-_e_s9JZ-uxH2VW8jZaA5Q,1298
|
|
23
23
|
pygeai/_docs/source/pygeai.core.feedback.rst,sha256=s7qOl5JivMMSlrPhHv4owdgzQCK6MczSkupU8bkPwwQ,728
|
|
24
24
|
pygeai/_docs/source/pygeai.core.files.rst,sha256=vnjnZTNZOj9R48Vu9wUrmly1HKXuP-EGeZ6GXMuVrhg,1193
|
|
@@ -55,12 +55,12 @@ pygeai/_docs/source/pygeai.tests.admin.rst,sha256=z3vaTaKOVea_zmgQwKRZSD-HZQ6dC3
|
|
|
55
55
|
pygeai/_docs/source/pygeai.tests.analytics.rst,sha256=Dimq_6nhld1_v7r9IFYkc7TfIYAjjNfdc2S2FrgXypM,1005
|
|
56
56
|
pygeai/_docs/source/pygeai.tests.assistants.rag.rst,sha256=aTM3TccZgohUBwVqJx7lbVQsH_p_d5LvUCKMBV4UjeE,857
|
|
57
57
|
pygeai/_docs/source/pygeai.tests.assistants.rst,sha256=JlPdf3soviMwSH6HAXjdgI7qFsqN5GL_NQLJjnQ8bYI,902
|
|
58
|
-
pygeai/_docs/source/pygeai.tests.auth.rst,sha256=
|
|
58
|
+
pygeai/_docs/source/pygeai.tests.auth.rst,sha256=Mje_U-7YKwxG4rHt8uiglL5RD4QInVzEf3ZDZnQ46Bw,2035
|
|
59
59
|
pygeai/_docs/source/pygeai.tests.chat.rst,sha256=xiTEjTTXU0hLeIaNx32u30HuqDDlHuBN8oOD2GaY-yA,897
|
|
60
60
|
pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst,sha256=Ph5mvvnfn7qTDtbgU3ScxVzZGcRqvguVpUzboTnEiig,871
|
|
61
61
|
pygeai/_docs/source/pygeai.tests.cli.commands.rst,sha256=95znjo_v7JLK2FZcUPnE57ofrW4CHF3U8OeYeqsEkHA,4019
|
|
62
62
|
pygeai/_docs/source/pygeai.tests.cli.docker.rst,sha256=UM4B_DAlsak4hAGFH-vjNiif0U6SDXxeYg_LqG7f9N4,192
|
|
63
|
-
pygeai/_docs/source/pygeai.tests.cli.rst,sha256=
|
|
63
|
+
pygeai/_docs/source/pygeai.tests.cli.rst,sha256=_KQ5Q_kP-bOcO0jhGLSxZtbnHdCEfO95ZHiJhcT5yuM,1081
|
|
64
64
|
pygeai/_docs/source/pygeai.tests.core.base.data.rst,sha256=SsV7Q4nT37voKqp1BDbP7Rub29jVarIPbrNZktQb5Jg,612
|
|
65
65
|
pygeai/_docs/source/pygeai.tests.core.base.rst,sha256=ndRoX3malfqip5_eZfmWPwhyI85aBNfu8gVhSBBUghY,890
|
|
66
66
|
pygeai/_docs/source/pygeai.tests.core.common.data.rst,sha256=-oOOj8QUOJRw6y9wk31e6ZyS-2kTBJC8PNbLh0GA16c,210
|
|
@@ -105,12 +105,12 @@ pygeai/_docs/source/pygeai.tests.rst,sha256=23BfzAF4pbulGveRJNc6Z1tIauP_5PhyxknC
|
|
|
105
105
|
pygeai/_docs/source/content/ai_lab.rst,sha256=w1sgxOm9f1PfmwvvINPER9ebr1ICsy3rKfAR71AqOW8,11520
|
|
106
106
|
pygeai/_docs/source/content/analytics.rst,sha256=DdHWOq4nM5xfL9kIcZwBJs7BaYE8Z0oZspOQu6RvD34,15249
|
|
107
107
|
pygeai/_docs/source/content/api_reference.rst,sha256=S9C7RYf9m5DLVL7aGQJNJ89DjFLGiajX2TwFMWrlLg8,2767
|
|
108
|
-
pygeai/_docs/source/content/authentication.rst,sha256=
|
|
108
|
+
pygeai/_docs/source/content/authentication.rst,sha256=71QhUWpAUCc0r5aWIMehL3X6ph3c92QWH8DKKGjhZ88,12260
|
|
109
109
|
pygeai/_docs/source/content/chat_gui.rst,sha256=0nnQFh_m4V-TqbeZXTKYMzU6gmPTOwRHrkqaZ16098k,6805
|
|
110
110
|
pygeai/_docs/source/content/cli.rst,sha256=WZFfxzmvFTmoi88uZO6VA96b5bUVApJ8QkXmCBPRrnI,5501
|
|
111
|
-
pygeai/_docs/source/content/debugger.rst,sha256=
|
|
111
|
+
pygeai/_docs/source/content/debugger.rst,sha256=eBWzyHHBpzqslo7dcOhYz4PTAfvGcP1atW-xFb3EIZs,20242
|
|
112
112
|
pygeai/_docs/source/content/intro.rst,sha256=nRoIXypN6xGN9kaqTJM5HrhE0LPn7bnk0CDFeRixito,4532
|
|
113
|
-
pygeai/_docs/source/content/migration.rst,sha256=
|
|
113
|
+
pygeai/_docs/source/content/migration.rst,sha256=4778of_8oDGx_LEzuPuGfLncj6M_ANkeh7qpq__rW0o,33448
|
|
114
114
|
pygeai/_docs/source/content/modules.rst,sha256=MufbaO6dfESPq2yqhk9xpCsfSMdhNRcTuODE6LW1HxE,78
|
|
115
115
|
pygeai/_docs/source/content/quickstart.rst,sha256=bsz8ZwTJTWlznnPNq3XJJuOXuV63-7UKqur2YHGD8No,4159
|
|
116
116
|
pygeai/_docs/source/content/samples.rst,sha256=BfRzjBDVgiegbW1OPczZvq1LvS-aHGCH-zDmbX6mNPI,12488
|
|
@@ -129,142 +129,143 @@ pygeai/_docs/source/content/api_reference/feedback.rst,sha256=6Duc-x4Hwp2bc3KHwt
|
|
|
129
129
|
pygeai/_docs/source/content/api_reference/files.rst,sha256=wWZvaVDvcGvXSkpEKhKQVYk6Fgm56D_OoaYYwjyz8tw,13659
|
|
130
130
|
pygeai/_docs/source/content/api_reference/gam.rst,sha256=U__bhQkho3NDllHBQd9cSIn-LyVExy0zZi4RxaDoZxY,10553
|
|
131
131
|
pygeai/_docs/source/content/api_reference/health.rst,sha256=hEVzFsP1BnJL7fzAQV1sUYa0iFDI8GKJ1E54Oewpr5Y,1041
|
|
132
|
-
pygeai/_docs/source/content/api_reference/project.rst,sha256=
|
|
132
|
+
pygeai/_docs/source/content/api_reference/project.rst,sha256=H331BthzU1ztYlP60EJPN326cOW2lKwZXttF04m1LK0,33295
|
|
133
133
|
pygeai/_docs/source/content/api_reference/proxy.rst,sha256=kXcanBNP53t3eegGe7khVYOKOSjqlM6hHyrH8O0g7J0,7434
|
|
134
134
|
pygeai/_docs/source/content/api_reference/rag.rst,sha256=cB_GTuDK1RPFjK0tIISsPPViGZGLaFGUmWpm_ltAVjI,18820
|
|
135
135
|
pygeai/_docs/source/content/api_reference/rerank.rst,sha256=zuoqmc2yW_M-tJ5IkYtaGxF2hHf4zFqnKWrL2zMh7Ig,2436
|
|
136
136
|
pygeai/_docs/source/content/api_reference/secrets.rst,sha256=HYxpExPhYIxdqff3u1REP0xYfodBkTB1kr5sHQavu00,12284
|
|
137
137
|
pygeai/_docs/source/content/api_reference/usage_limits.rst,sha256=XiOWcogv-AC6FrjmH_3re165RUi-eTq7IKzU9uvIjsw,9051
|
|
138
138
|
pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
-
pygeai/admin/clients.py,sha256=
|
|
139
|
+
pygeai/admin/clients.py,sha256=M7232cclysqzNooWENi2eQ5ZL1gwPtoFd43GFRlgmXk,5252
|
|
140
140
|
pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
|
|
141
141
|
pygeai/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
|
-
pygeai/analytics/clients.py,sha256=
|
|
142
|
+
pygeai/analytics/clients.py,sha256=ZIHG6k3tWMSWbkue107Er-O8azm9X5lZPgDxd72VZQQ,18886
|
|
143
143
|
pygeai/analytics/endpoints.py,sha256=qlVYc-D12Cpv6cn8x5cZTACRC1_qkgAss85ACVdxSLw,5626
|
|
144
144
|
pygeai/analytics/managers.py,sha256=PhwcOBnWtJtPF1Jh8V9ITcsC5jlt6YNEI890Zejmmxk,26213
|
|
145
145
|
pygeai/analytics/mappers.py,sha256=enenIBwJHHqPAyAvo2juro4TjXAtSAA885EnbzWDlIE,10893
|
|
146
146
|
pygeai/analytics/responses.py,sha256=OWb_kkwxwa--dJQo8W3_2PtZhdFJAPpwrbvb2qdEajU,4813
|
|
147
147
|
pygeai/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
|
-
pygeai/assistant/clients.py,sha256=
|
|
148
|
+
pygeai/assistant/clients.py,sha256=eRPS3kvf3RyyjqprCL40g0m7ltvNeJRM75FN6VoE0VQ,9541
|
|
149
149
|
pygeai/assistant/endpoints.py,sha256=7LuXWm0-sbrmHsngqW63wuk37K24wcMLinmJ6HdSimg,1026
|
|
150
|
-
pygeai/assistant/managers.py,sha256=
|
|
150
|
+
pygeai/assistant/managers.py,sha256=8iJui0L2vrKvugHg3onIBN2_bhNdSMYayDIxV2oYkk4,34614
|
|
151
151
|
pygeai/assistant/mappers.py,sha256=oSx_k1edknbKGlASke5ASzKEekG613TepVQRm1ecPOc,5915
|
|
152
152
|
pygeai/assistant/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
pygeai/assistant/data/clients.py,sha256=
|
|
153
|
+
pygeai/assistant/data/clients.py,sha256=aqnFU49l1NgeWApHQSzqoNo7uW1kYpPCEeoP2M4FvQ8,146
|
|
154
154
|
pygeai/assistant/data_analyst/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
-
pygeai/assistant/data_analyst/clients.py,sha256=
|
|
155
|
+
pygeai/assistant/data_analyst/clients.py,sha256=2hyhv49VeZbHn8MhjuoG5JynAJsaQdO0tklvxAOqlbI,2660
|
|
156
156
|
pygeai/assistant/data_analyst/endpoints.py,sha256=2m-IXrb2-5id9tnpOjMQRYm6vqay6fw56-6kfpElPYI,296
|
|
157
157
|
pygeai/assistant/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
|
-
pygeai/assistant/rag/clients.py,sha256=
|
|
158
|
+
pygeai/assistant/rag/clients.py,sha256=jXODINn5Y0DRIyDGOzjDWP8JpLR5_JDUiq5LoyRO56s,12933
|
|
159
159
|
pygeai/assistant/rag/endpoints.py,sha256=7YlHIvAYj3-xsCWtVMDYobxXbAO0lCo9yJdOrQxwCrQ,1145
|
|
160
|
-
pygeai/assistant/rag/mappers.py,sha256=
|
|
160
|
+
pygeai/assistant/rag/mappers.py,sha256=teyO9oz_Ui0HPEuiKxsXdyAU7AQe6wdMzJUF2DZfW5E,8416
|
|
161
161
|
pygeai/assistant/rag/models.py,sha256=g5UiHuRjobgU1WgUMxeBzXykxgJ5q7eb_YY8qDciNvw,15732
|
|
162
162
|
pygeai/assistant/rag/responses.py,sha256=fY97ibsCVLQ3Ssnjuvj-JeA883WqjOw7ZdxbpQp_B1E,196
|
|
163
163
|
pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
|
-
pygeai/auth/clients.py,sha256=
|
|
165
|
-
pygeai/auth/endpoints.py,sha256=
|
|
164
|
+
pygeai/auth/clients.py,sha256=8ND_iZS3Ac-BOjbh1ZmIadYlAiTc6_WDgoCkO1dBaD8,6264
|
|
165
|
+
pygeai/auth/endpoints.py,sha256=5gScXVyalZgz1R5KyuZcKPGKFT_FLuSroixp5vPUKbo,696
|
|
166
166
|
pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
-
pygeai/chat/clients.py,sha256
|
|
167
|
+
pygeai/chat/clients.py,sha256=Qxdzs63mtNpgdT5Cw6n9rsQ7U0SLI8ePxdlWf2oBkq8,19819
|
|
168
168
|
pygeai/chat/endpoints.py,sha256=r_zvsL5UIqnqhz9I0CG0eQSKV-egwx6EKdaZXj-HndA,343
|
|
169
169
|
pygeai/chat/iris.py,sha256=-9pDHQpWhR_PvbZ6rD8eMPFk46PI9sCdPQ9aAyvSexs,413
|
|
170
|
-
pygeai/chat/managers.py,sha256=
|
|
170
|
+
pygeai/chat/managers.py,sha256=65HfuLD68eTmNpKXf_qE7cyrwhvF6VLR2vbz52v4CEk,3095
|
|
171
171
|
pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
|
|
172
172
|
pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
|
|
173
173
|
pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
|
|
174
174
|
pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
|
|
175
175
|
pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
|
|
176
176
|
pygeai/cli/error_handler.py,sha256=Lw28yRk0mBvwMpuYrfbYV87g_AHoiidZo9SakoOZva4,5745
|
|
177
|
-
pygeai/cli/geai.py,sha256=
|
|
178
|
-
pygeai/cli/geai_proxy.py,sha256=
|
|
179
|
-
pygeai/cli/install_man.py,sha256=
|
|
180
|
-
pygeai/cli/parsers.py,sha256=
|
|
177
|
+
pygeai/cli/geai.py,sha256=SGrw94si2L8lfJzPfp-SCtHplLV6JSzzV4yk45VNJrM,10559
|
|
178
|
+
pygeai/cli/geai_proxy.py,sha256=vZwI2MlM_2Ejgvk_AW1FpsEGBbYzgi4VtGS6aQC7xzk,13359
|
|
179
|
+
pygeai/cli/install_man.py,sha256=lk1QOk6CWc2azd90OCd8M4wlu4T4EKCagecj6088WNs,3793
|
|
180
|
+
pygeai/cli/parsers.py,sha256=l5YGa-QIQA9c1mxx8ofYAkxVfwuZpr1af5-af7jZTVo,4667
|
|
181
181
|
pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
|
|
182
|
-
pygeai/cli/commands/admin.py,sha256=
|
|
183
|
-
pygeai/cli/commands/analytics.py,sha256=
|
|
184
|
-
pygeai/cli/commands/assistant.py,sha256=
|
|
185
|
-
pygeai/cli/commands/auth.py,sha256=
|
|
186
|
-
pygeai/cli/commands/base.py,sha256=
|
|
182
|
+
pygeai/cli/commands/admin.py,sha256=rPKsqMXn5p1WwKVbvZH9lHW8XsPMcgipvLt3xbx1JCU,5399
|
|
183
|
+
pygeai/cli/commands/analytics.py,sha256=6ww2LS6Go3tRUlwgMGHxKz-Y_fAee8Xg9OOq8BXZyL4,18702
|
|
184
|
+
pygeai/cli/commands/assistant.py,sha256=MCcsNaE3BiYjumqtefwIbLFyDmLrtdf40ITY8K8Y1as,16778
|
|
185
|
+
pygeai/cli/commands/auth.py,sha256=K2bVr3G8v3A59BV8bEr-u1MhimiCEcjBUoVOx8Q2-vE,7552
|
|
186
|
+
pygeai/cli/commands/base.py,sha256=YyVKGCak8WgPz4pr79Eb00JxLrKWZJTfWof6l9lmiiA,7785
|
|
187
187
|
pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
|
|
188
|
-
pygeai/cli/commands/chat.py,sha256=
|
|
189
|
-
pygeai/cli/commands/common.py,sha256=
|
|
190
|
-
pygeai/cli/commands/configuration.py,sha256=
|
|
191
|
-
pygeai/cli/commands/docs.py,sha256=
|
|
192
|
-
pygeai/cli/commands/embeddings.py,sha256=
|
|
193
|
-
pygeai/cli/commands/evaluation.py,sha256=
|
|
194
|
-
pygeai/cli/commands/feedback.py,sha256=
|
|
195
|
-
pygeai/cli/commands/files.py,sha256=
|
|
196
|
-
pygeai/cli/commands/gam.py,sha256=
|
|
197
|
-
pygeai/cli/commands/llm.py,sha256=
|
|
198
|
-
pygeai/cli/commands/migrate.py,sha256=
|
|
188
|
+
pygeai/cli/commands/chat.py,sha256=v7SGjGRHZ0GvGiPDAGejgV-C3xnWIVZZEapU2OLB-xU,33606
|
|
189
|
+
pygeai/cli/commands/common.py,sha256=xwr4GSgP9SK4fcU7iwwNahk0bDhzqU974Gvu_DmZZYM,16546
|
|
190
|
+
pygeai/cli/commands/configuration.py,sha256=B6fXbwC88F3VWJq_d1ly9RUXfffZ4K1qNmAsCbq-irc,6481
|
|
191
|
+
pygeai/cli/commands/docs.py,sha256=WO5doqmG7_CilcJGgX6p-Kx4FKecBXvmzN5DVXP9sHY,3444
|
|
192
|
+
pygeai/cli/commands/embeddings.py,sha256=5RJRnEi2nDP4mUDAtCMreLdEh6gIsdykBKMd9USrS8M,5877
|
|
193
|
+
pygeai/cli/commands/evaluation.py,sha256=9UwI1I9UXyyhmTvDP6CeX-SKsm04DYlmOjeqZ_VhjUM,58031
|
|
194
|
+
pygeai/cli/commands/feedback.py,sha256=SnuSlQyw9L51DNK2glhp-RyQy88lVViNLOrl9ri_0dU,2191
|
|
195
|
+
pygeai/cli/commands/files.py,sha256=2YOo1W41iFEQ7c2tgqUl86ASred2UfiFihyTcJjFLYg,6960
|
|
196
|
+
pygeai/cli/commands/gam.py,sha256=TS6h4ocGz9Vn6EH4UJSLCxFTeJms4Zk-5MizS2iOu58,8441
|
|
197
|
+
pygeai/cli/commands/llm.py,sha256=U0lL2BOfZoV6EqEKF-DkJfGgZkacAbBqPIB6L54dxio,3819
|
|
198
|
+
pygeai/cli/commands/migrate.py,sha256=rewLA8KKhcVe5psgCQwrGc9foSW-XSsVgx2qdVQSz04,46600
|
|
199
199
|
pygeai/cli/commands/options.py,sha256=oVDJF-SsE80vi-W4d0n2cNo1BeeU_jqDs_TtMPkz-1I,1804
|
|
200
|
-
pygeai/cli/commands/organization.py,sha256=
|
|
201
|
-
pygeai/cli/commands/rag.py,sha256=
|
|
202
|
-
pygeai/cli/commands/rerank.py,sha256=
|
|
203
|
-
pygeai/cli/commands/secrets.py,sha256=
|
|
204
|
-
pygeai/cli/commands/usage_limits.py,sha256=
|
|
205
|
-
pygeai/cli/commands/validators.py,sha256=
|
|
200
|
+
pygeai/cli/commands/organization.py,sha256=0P09MbpG6g_qMxmbU9LnGgwBNClmvqiaJ0AagVgWoys,25134
|
|
201
|
+
pygeai/cli/commands/rag.py,sha256=z2L3u6ckqvDxQS7VyaE3EoYu6KAWu7IEajOgB098FPk,36329
|
|
202
|
+
pygeai/cli/commands/rerank.py,sha256=4o_Y3FYz8IDJIyaI6ivRQlCOw9aignIzf6Tdyv2N6a4,2835
|
|
203
|
+
pygeai/cli/commands/secrets.py,sha256=qHUptwzFrd1WJWC3QxkfvjHb0k5FBMhwLtHnKZ_WlE0,8582
|
|
204
|
+
pygeai/cli/commands/usage_limits.py,sha256=0V_AyGOrYNc6IubGVs8XiAbWNb6tfqZNlFLVtfsHbDk,16230
|
|
205
|
+
pygeai/cli/commands/validators.py,sha256=nAAsqVATxHnw4RJGwpjrcC6wDyOfF5Wo8QBeoCCiTTQ,8007
|
|
206
206
|
pygeai/cli/commands/version.py,sha256=vyJcnxwL_TfpOQI0yE2a1ZyA3VRAE7ssh9APNBXpmqk,1701
|
|
207
207
|
pygeai/cli/commands/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
208
|
pygeai/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
-
pygeai/cli/commands/lab/ai_lab.py,sha256=
|
|
210
|
-
pygeai/cli/commands/lab/common.py,sha256=
|
|
209
|
+
pygeai/cli/commands/lab/ai_lab.py,sha256=Jh-4w8K1oIshTBsXaOn6v2g9eYsiEf5ozvQWyQbqvuY,127821
|
|
210
|
+
pygeai/cli/commands/lab/common.py,sha256=i6duq0lLcJrzJgTBlhtG4Jc_imMCTYGcik6uzx4zZIM,6585
|
|
211
211
|
pygeai/cli/commands/lab/options.py,sha256=T13Vi97zochr0cU4yjyvvwWRPENILFDYpvqpU4uEBis,165
|
|
212
|
-
pygeai/cli/commands/lab/spec.py,sha256=
|
|
212
|
+
pygeai/cli/commands/lab/spec.py,sha256=7uBauh23i9TjXdT8ISQJeIH9IOfuniqvo5cPmMUlIPY,7841
|
|
213
213
|
pygeai/cli/commands/lab/utils.py,sha256=uxhgHvCRrV6WYRxR2qd3nED_hhXcxJ1tAU8MlzoshEg,456
|
|
214
214
|
pygeai/cli/texts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
215
|
pygeai/cli/texts/help.py,sha256=QyLH1g4dK-AJ1X1GtYLDulWWReuECPsK8mJkeqDb3Vo,24627
|
|
216
216
|
pygeai/core/__init__.py,sha256=bbNktFp7t2dOBIvWto-uGVBW8acaKIe8EKcfuLV-HmA,189
|
|
217
217
|
pygeai/core/handlers.py,sha256=la1QcQbLwfiNd-xDQ3jtWRHmeEm6E93Rfx5c-5bkLmw,934
|
|
218
|
-
pygeai/core/models.py,sha256=
|
|
218
|
+
pygeai/core/models.py,sha256=XLdoqekExCsLTMhF_4UsuzzvlaemPNZdH11hleSIrW8,27443
|
|
219
219
|
pygeai/core/responses.py,sha256=wxlikhw1UAAB6Mib97xjq2eCFyZPWoosPwn9UhpKi7Y,2825
|
|
220
|
-
pygeai/core/singleton.py,sha256
|
|
220
|
+
pygeai/core/singleton.py,sha256=aZ9muxWwkHuEqytwZjTTE9UTlyl272BCQDFhjYrIS1k,1013
|
|
221
221
|
pygeai/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
222
|
-
pygeai/core/base/clients.py,sha256=
|
|
223
|
-
pygeai/core/base/mappers.py,sha256=
|
|
222
|
+
pygeai/core/base/clients.py,sha256=UlAl9Mtn1G_3azNFUSqPS-Umt-3UQbz2_PJdSBEIffU,5184
|
|
223
|
+
pygeai/core/base/mappers.py,sha256=NH0MBcqJLLSMDB79Dt2rYE_QN0Z3GYctYOQU2FElTlw,16717
|
|
224
224
|
pygeai/core/base/models.py,sha256=_h62nnMhJXr1BLNoaldT4d9oqCTSistfF3D2LQ3bvlg,380
|
|
225
225
|
pygeai/core/base/responses.py,sha256=k-mrzNO_AtEsGTUJnyRT76FJ7gfYxQ_SAhB8MBNqPZI,763
|
|
226
|
-
pygeai/core/base/session.py,sha256=
|
|
226
|
+
pygeai/core/base/session.py,sha256=vztVOWkWU-802zS62oAW-VOb9f1SOFJ-w-SR58aYCKY,9381
|
|
227
227
|
pygeai/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
-
pygeai/core/common/config.py,sha256=
|
|
228
|
+
pygeai/core/common/config.py,sha256=hDOpbcqVL97uoXGn2w6edCip_MFwnqoR9iwNK1ThsAg,7128
|
|
229
|
+
pygeai/core/common/constants.py,sha256=RmxYJ7y9VvkZhkPcjvbn2aLWdeLrmIYBqjuVgpKduaU,174
|
|
229
230
|
pygeai/core/common/decorators.py,sha256=X7Tv5XBmsuS7oZHSmI95eX8UkuukKoiOiNRl5w9lgR4,1227
|
|
230
|
-
pygeai/core/common/exceptions.py,sha256=
|
|
231
|
+
pygeai/core/common/exceptions.py,sha256=q-W-Z5u_mGLr-GI9BEmVCwjPfMLlI2jNiZmiZ590c10,3762
|
|
231
232
|
pygeai/core/embeddings/__init__.py,sha256=sn0wz0qNJeJy-1AQW4on62LX7bqhlVs7xcS0MaPQcW4,486
|
|
232
|
-
pygeai/core/embeddings/clients.py,sha256=
|
|
233
|
+
pygeai/core/embeddings/clients.py,sha256=9-7bbCrh5jLZXlr52egIBONXQ8x6swnPGGbL8_HRvkM,4058
|
|
233
234
|
pygeai/core/embeddings/endpoints.py,sha256=b__cuKQjribog9PSUeDzwrQ0vBO4WyYahLhLjDiUpL0,98
|
|
234
|
-
pygeai/core/embeddings/managers.py,sha256=
|
|
235
|
+
pygeai/core/embeddings/managers.py,sha256=9IbTNPBTqXVDKZ1VUZLX9BEZpgQMKxRv6WP-5z_ficU,3466
|
|
235
236
|
pygeai/core/embeddings/mappers.py,sha256=9K5AB5FA9KWYd-MOHpZu6MkqfZxVq9ESQLf76MQdDj0,2019
|
|
236
237
|
pygeai/core/embeddings/models.py,sha256=T9FehWk_0doiiZG7yMzSCK9_TBHibaocA4b8sJP7T4M,366
|
|
237
238
|
pygeai/core/embeddings/responses.py,sha256=ny7iE4p-1yADcRC7U2TdhxtXI3wZ87QXrDfGGbiEvpE,674
|
|
238
239
|
pygeai/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
-
pygeai/core/feedback/clients.py,sha256=
|
|
240
|
+
pygeai/core/feedback/clients.py,sha256=4vFhTZLu3US4UiMpK-YfSA-1pe2_USFeqe_6c2qPs8w,1782
|
|
240
241
|
pygeai/core/feedback/endpoints.py,sha256=GzgjLtBCYWkk51OfUCHe0YigO-F-8QM6XiH0zQuo1Qg,197
|
|
241
|
-
pygeai/core/feedback/models.py,sha256=
|
|
242
|
+
pygeai/core/feedback/models.py,sha256=rCnIPD-z4DkXVSGXPrKPjaTKdIhMMpA0JTpBLV6bVy0,325
|
|
242
243
|
pygeai/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
|
-
pygeai/core/files/clients.py,sha256=
|
|
244
|
+
pygeai/core/files/clients.py,sha256=nngkRNFGvvxKxk8dsEj3KiFAi8zeK58nCCGqAti9Y7w,5548
|
|
244
245
|
pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWYQ,337
|
|
245
|
-
pygeai/core/files/managers.py,sha256=
|
|
246
|
-
pygeai/core/files/mappers.py,sha256=
|
|
246
|
+
pygeai/core/files/managers.py,sha256=XqlO-KEUduRA7KrdrwRBCgDuc4EW5nGdinU6OMgIZ98,8755
|
|
247
|
+
pygeai/core/files/mappers.py,sha256=l2ZAXb7nboMLeAN1RMfaRd_N93E3E1cYEpRZ_ZDyeEA,1376
|
|
247
248
|
pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
|
|
248
249
|
pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
|
|
249
250
|
pygeai/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
250
|
-
pygeai/core/llm/clients.py,sha256=
|
|
251
|
+
pygeai/core/llm/clients.py,sha256=RitUiO5df-YQj9WwTbdhnslSeeWyqCc0Uu4bk2nIAO4,2091
|
|
251
252
|
pygeai/core/llm/endpoints.py,sha256=EF5wNJH8Au3ZYl_hF2uCRL4hPSe2_MIy6TGpzubNVak,435
|
|
252
253
|
pygeai/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
253
|
-
pygeai/core/plugins/clients.py,sha256=
|
|
254
|
+
pygeai/core/plugins/clients.py,sha256=8NEeMI6NQXxMIrNhgN8ZhVOJpeFW9A_9nEnpUPUZs5s,859
|
|
254
255
|
pygeai/core/plugins/endpoints.py,sha256=1YUPtu0sqUKAgyBwTtEJdxhRs_ip9RL2mhz04U6KsXo,145
|
|
255
|
-
pygeai/core/plugins/models.py,sha256=
|
|
256
|
+
pygeai/core/plugins/models.py,sha256=FBQY7SSVtA4ntfspZ6e-SIGpQui0-ZC9McBxAGOGJ8I,3671
|
|
256
257
|
pygeai/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
|
-
pygeai/core/rerank/clients.py,sha256=
|
|
258
|
+
pygeai/core/rerank/clients.py,sha256=HMQm-A3wbQLKcR5oJ0-JOyPbhrTwP_a4jg4QxvtlhjY,910
|
|
258
259
|
pygeai/core/rerank/endpoints.py,sha256=PZcA1i73fyGbpnbpWYr1-gHc6zy7L60b_E8sMLwsXw8,85
|
|
259
260
|
pygeai/core/rerank/managers.py,sha256=FHGxD0h1fct1RgJlysVG5kbNEUuLKeKGdJA73zbG8fk,2038
|
|
260
261
|
pygeai/core/rerank/mappers.py,sha256=Jx8PAymebA2TPxGssaKAj4eS0OVsKJqecntAugRO9ww,957
|
|
261
262
|
pygeai/core/rerank/models.py,sha256=WLE-waHk2glKSl1xx9EpmE1k4bva7c14jjraaWuQ5Uk,430
|
|
262
263
|
pygeai/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
-
pygeai/core/secrets/clients.py,sha256=
|
|
264
|
+
pygeai/core/secrets/clients.py,sha256=X8kaJ6EQiDlyIgwMBkVIT8bMj8NGKMX5PbH-I5k3auA,8778
|
|
264
265
|
pygeai/core/secrets/endpoints.py,sha256=HN17bf7m8BSwtgLFZt0ifZf3KwR-MP3cXUSeY6P4H-8,468
|
|
265
266
|
pygeai/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
267
|
pygeai/core/services/response.py,sha256=L_xDAvSwnupQv6g1Ly2WQvImvITIVrMYW_TcEbXjM6c,505
|
|
267
|
-
pygeai/core/services/rest.py,sha256
|
|
268
|
+
pygeai/core/services/rest.py,sha256=RcAGTiaOrvahafY2qDzXIq_N4DJthC2duz5mbRiRR8c,20508
|
|
268
269
|
pygeai/core/services/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
270
|
pygeai/core/services/llm/model.py,sha256=dv0vH2uGQDzyXh63A_nr_bmMukr6Q9nO7LuiWgvclnY,9065
|
|
270
271
|
pygeai/core/services/llm/providers.py,sha256=CS1v4qSiibuL51fQlgcARiyPoXxSnCeV5RXwNc1nmgA,293
|
|
@@ -272,33 +273,33 @@ pygeai/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
272
273
|
pygeai/core/utils/console.py,sha256=2YD0R6r5k0P1YCtYZDg1VnFih5HubdWg2vKxV4xguz0,2900
|
|
273
274
|
pygeai/core/utils/parsers.py,sha256=783HSQX7CDRKHU7WQQ9o_sS_ucMrYNDXvC_pKw1F-P4,1303
|
|
274
275
|
pygeai/core/utils/validators.py,sha256=LoDrO5z0K8_axMdoMHGZZHlxdIFQWnzC9L7RbEQFITg,328
|
|
275
|
-
pygeai/dbg/__init__.py,sha256=
|
|
276
|
-
pygeai/dbg/debugger.py,sha256=
|
|
276
|
+
pygeai/dbg/__init__.py,sha256=yVJAWK9z9CGKRH5Mw8ZYQ0w5qOw86nXeqtRVqt_zu64,147
|
|
277
|
+
pygeai/dbg/debugger.py,sha256=xJfKVNFSxIoM6SLDBbThcU0wai6ERxzxB-sUP6wRCs8,35685
|
|
277
278
|
pygeai/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
|
-
pygeai/evaluation/clients.py,sha256=
|
|
279
|
+
pygeai/evaluation/clients.py,sha256=CDuIz67OCN-QIt4_vPyFDaxkAnscI2Tbym5PSpwaKe0,960
|
|
279
280
|
pygeai/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
280
|
-
pygeai/evaluation/dataset/clients.py,sha256=
|
|
281
|
+
pygeai/evaluation/dataset/clients.py,sha256=avKtHbbfTAeMg8kK1y8FUlhOwn4Z7md1Zgm0EiacY6E,20021
|
|
281
282
|
pygeai/evaluation/dataset/endpoints.py,sha256=d_llUcXNDncNrIyYgjJ_lMBnX2YPVxmeu8op3N30mLs,2922
|
|
282
283
|
pygeai/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
|
-
pygeai/evaluation/plan/clients.py,sha256=
|
|
284
|
+
pygeai/evaluation/plan/clients.py,sha256=TGNy2UVZIjtPpa3K8Nrhn1DWwoZqeQW8jBIHrPZXB2E,12775
|
|
284
285
|
pygeai/evaluation/plan/endpoints.py,sha256=IzBRZ5lTjeEAwiQUVYr6TCgr6ddZ-LZS3jEp0o1owTQ,1976
|
|
285
286
|
pygeai/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
286
|
-
pygeai/evaluation/result/clients.py,sha256=
|
|
287
|
+
pygeai/evaluation/result/clients.py,sha256=U8C6lK9rOmZVl1En4GSMXz5_mPXLX8q0a3ifB1psfQ0,3029
|
|
287
288
|
pygeai/evaluation/result/endpoints.py,sha256=dyWKB8GXaVClHBnC5BCrA3lX717wFPVrKaqIgil7UqY,310
|
|
288
289
|
pygeai/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
290
|
pygeai/flows/endpoints.py,sha256=GK7k2XI49j6Ya6tBcq8_Y4PAN15CE3bbeA8-IlxJAq4,33668
|
|
290
291
|
pygeai/flows/models.py,sha256=FqrNQo2wPU-oQsHO4kkbDcuLLVc1shQ5EnCHpOb4fL8,24472
|
|
291
292
|
pygeai/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
292
|
-
pygeai/gam/clients.py,sha256=
|
|
293
|
+
pygeai/gam/clients.py,sha256=12ruK23b5GYrAm9nA5JSlAZ2PXeAwooObxxD1c2ombE,7642
|
|
293
294
|
pygeai/gam/endpoints.py,sha256=Gf9V5PT2wI5qLW3UjG9SI0FWzTcwP8HN4lEFrFxbFPo,500
|
|
294
295
|
pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
295
|
-
pygeai/health/clients.py,sha256=
|
|
296
|
+
pygeai/health/clients.py,sha256=3-2oZVMDA41K3nu7Oq0JARdo590FgpprLTaLglbcgWg,759
|
|
296
297
|
pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
|
|
297
298
|
pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
298
|
-
pygeai/lab/clients.py,sha256=
|
|
299
|
+
pygeai/lab/clients.py,sha256=ZpJUnyOYLRMEU1dfbJD4yokTU2m_mnR-lj4JbiO0OFA,1167
|
|
299
300
|
pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
|
|
300
|
-
pygeai/lab/managers.py,sha256=
|
|
301
|
-
pygeai/lab/models.py,sha256=
|
|
301
|
+
pygeai/lab/managers.py,sha256=9ZN03FVEmKHo9khHnBJL_zaCW8X0dEdWSN4__DVbnY8,70706
|
|
302
|
+
pygeai/lab/models.py,sha256=h70AsW0gYdwqCPN074sq7GLN_iGK0Od3VJ0pVJUpzxY,74903
|
|
302
303
|
pygeai/lab/runners.py,sha256=-uaCPHpFyiKtVOxlEjPjAc9h-onSdGAcYJ5IAZPqlb0,4147
|
|
303
304
|
pygeai/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
304
305
|
pygeai/lab/agents/clients.py,sha256=cJut_ftGFSX6ZMJlodiE7P7p_OXJre1asC-NlEQcdvs,19091
|
|
@@ -312,141 +313,149 @@ pygeai/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
312
313
|
pygeai/lab/spec/loader.py,sha256=Dq9MhLqFwF4RPdBBaqKPGqt43-PrNlsHpe-NXe4S0qQ,709
|
|
313
314
|
pygeai/lab/spec/parsers.py,sha256=oG7tY-GylweRxpvtCl3p53t0IoTX3UZFiB77x__3Qp8,646
|
|
314
315
|
pygeai/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
|
-
pygeai/lab/strategies/clients.py,sha256=
|
|
316
|
+
pygeai/lab/strategies/clients.py,sha256=2EbmKdLq6aWoWcpUkIm0Hi3crE5Myb9QQE3KS0AFmQg,9228
|
|
316
317
|
pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
|
|
317
318
|
pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
|
|
318
319
|
pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
|
-
pygeai/lab/tools/clients.py,sha256=
|
|
320
|
+
pygeai/lab/tools/clients.py,sha256=xJstsW44OvqaOPyulsl0GhVBXnYAFvpOuwix9BPZzSk,23245
|
|
320
321
|
pygeai/lab/tools/endpoints.py,sha256=uZwRHSYwbzzqpZE-UDv1vLWLed1YV3bgf4DX7xG0sd4,881
|
|
321
|
-
pygeai/lab/tools/mappers.py,sha256=
|
|
322
|
+
pygeai/lab/tools/mappers.py,sha256=BNExpebLkFUwJPsc9mZacm76sUISuamf4hrvWGJ81uQ,4993
|
|
322
323
|
pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
|
|
323
324
|
pygeai/man/man1/__init__.py,sha256=CFvES6cP_sbhgpm-I-QSbPC1f7Bw7cFsMW2-sxm4FtM,54
|
|
324
325
|
pygeai/man/man1/geai-proxy.1,sha256=N5jtjzS5dB3JjAkG0Rw8EBzhC6Jgoy6zbS7XDgcE4EA,6735
|
|
325
326
|
pygeai/man/man1/geai.1,sha256=dRJjqXLu4PRr5tELX-TveOrvp-J085rTV0NbqL5I30Q,51162
|
|
326
327
|
pygeai/migration/__init__.py,sha256=sZb6bHOjiOhjHTvU1fYbD8ubSwaitn4jyQrj59Cf8ao,843
|
|
327
|
-
pygeai/migration/strategies.py,sha256=
|
|
328
|
-
pygeai/migration/tools.py,sha256=
|
|
328
|
+
pygeai/migration/strategies.py,sha256=zTC1ucejqB6oHFyIpM2wUm9IbovT0OUnhD6Pyd5pBhY,22794
|
|
329
|
+
pygeai/migration/tools.py,sha256=QiXjGBZiWeaRMjwlLCaNi3uZNVl_IAEKFtk2ww2EF98,6191
|
|
329
330
|
pygeai/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
|
-
pygeai/organization/clients.py,sha256=
|
|
331
|
-
pygeai/organization/endpoints.py,sha256=
|
|
332
|
-
pygeai/organization/managers.py,sha256=
|
|
331
|
+
pygeai/organization/clients.py,sha256=IEGsVR21yI3MIpAVAHGU3Zifn3l6wQ4iYjKYTsofOA0,22925
|
|
332
|
+
pygeai/organization/endpoints.py,sha256=JhuGKpjw0cD9N_MOSfxVAinO_jhoMuquujtz_p-5W3s,2145
|
|
333
|
+
pygeai/organization/managers.py,sha256=mqRIh0q50aHDEr6mNBsu32EDeE60BAneqibWxRR3Kl8,25432
|
|
333
334
|
pygeai/organization/mappers.py,sha256=10JxUTdt9jBgcHfW7ViY2HdtY-UfI9t_qhX8KvuMPn0,5897
|
|
334
335
|
pygeai/organization/responses.py,sha256=rVQo5N3aUE2tpJiflkFO1eG36imqJqVF3m4rRjKv7-s,1919
|
|
335
336
|
pygeai/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
|
-
pygeai/organization/limits/clients.py,sha256=
|
|
337
|
+
pygeai/organization/limits/clients.py,sha256=yN9A5VnUZeegr-FltGR66LyUvvs9ATxIYnA220bPLZ4,15501
|
|
337
338
|
pygeai/organization/limits/endpoints.py,sha256=mtca6U6l47jbbbmGc8KoXCDMnyNHtaPo8dxWVuHuUE0,2578
|
|
338
|
-
pygeai/organization/limits/managers.py,sha256=
|
|
339
|
+
pygeai/organization/limits/managers.py,sha256=4Z_DmBUtG_lhvcYYLlviS-T-OuHdvAKHpOhSCdksM60,14472
|
|
339
340
|
pygeai/organization/limits/mappers.py,sha256=nINHaXOnZLnpc39PG3xf_7HX6tS9_-cT-H50ARwCGvw,777
|
|
340
341
|
pygeai/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
342
|
pygeai/proxy/clients.py,sha256=7g0SJbYjBp02rX6WH-HdGOevclGNJLsELIgf68fR14w,8059
|
|
342
|
-
pygeai/proxy/config.py,sha256=
|
|
343
|
-
pygeai/proxy/managers.py,sha256=
|
|
343
|
+
pygeai/proxy/config.py,sha256=lTR6R4-TeZZLX9CjZLSLfv_NUr7JOpdGAJdSfGqQ_sw,5058
|
|
344
|
+
pygeai/proxy/managers.py,sha256=rONv8Bxo7eA_qJle9Uhif3d-WMGIjn74VE-uAr5YP-M,11119
|
|
344
345
|
pygeai/proxy/servers.py,sha256=gWEceLmla_doKfEx6UJNIfrcr5USqkiYfz0LB9O80vA,11518
|
|
345
346
|
pygeai/proxy/tool.py,sha256=gxDd_jABg68vB_WOAGsosd0dQc3AbRKnFqY6qpXsBDk,2338
|
|
346
347
|
pygeai/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
348
|
pygeai/tests/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
|
-
pygeai/tests/admin/test_clients.py,sha256=
|
|
349
|
+
pygeai/tests/admin/test_clients.py,sha256=d_GvneiTf5Id_uBuEH5woJz8Iy3ajlZ_1i1Wd7ubRn4,6957
|
|
349
350
|
pygeai/tests/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
351
|
pygeai/tests/analytics/test_clients.py,sha256=7Y77t-KAHbDIUJ7JUgz3E-8B22bEizbSPt0tDbja6CQ,3323
|
|
351
352
|
pygeai/tests/analytics/test_managers.py,sha256=z0siFI1B9cCEKE14PK-NwvOov0oHaAGypVtEX5KM-eQ,5000
|
|
352
353
|
pygeai/tests/analytics/test_mappers.py,sha256=FHmfhSEVXX9b9dVrdw-zbu1cnPFrRUjigO4EsxmYN24,3650
|
|
353
354
|
pygeai/tests/analytics/test_responses.py,sha256=X1f8Tt2RM8D7_pMyaap5ZC_7zBY2cu-MpmF1zn3ujJo,3593
|
|
354
355
|
pygeai/tests/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
|
-
pygeai/tests/assistants/test_clients.py,sha256=
|
|
356
|
-
pygeai/tests/assistants/test_managers.py,sha256=
|
|
356
|
+
pygeai/tests/assistants/test_clients.py,sha256=Vy8j8lGreom0rUE_EtKrlKdXDemkZruZjzfVmgwipUM,8966
|
|
357
|
+
pygeai/tests/assistants/test_managers.py,sha256=NtNVLXZh5rdYt7Kn_qHY4_KaP4MGIVfJ3Btigm5txAs,11059
|
|
357
358
|
pygeai/tests/assistants/test_mappers.py,sha256=zIYdt4zqTG82L1t-GAyr-udRipxRvXnRerPUueOmkQY,4089
|
|
358
359
|
pygeai/tests/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
-
pygeai/tests/assistants/rag/test_clients.py,sha256=
|
|
360
|
+
pygeai/tests/assistants/rag/test_clients.py,sha256=_X4PzVExH87JGLIPV5syukg_lZ7YW0s83obVfSZZyY4,15693
|
|
360
361
|
pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP79jiMC-R1Vnvus,8359
|
|
361
|
-
pygeai/tests/assistants/rag/test_models.py,sha256=
|
|
362
|
+
pygeai/tests/assistants/rag/test_models.py,sha256=dHlEPDzQbUY_HCIcGTvUFpzc1haV8jkcmdkQL5vEsNk,10748
|
|
362
363
|
pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
|
-
pygeai/tests/auth/
|
|
364
|
-
pygeai/tests/auth/
|
|
364
|
+
pygeai/tests/auth/test_cli_configuration.py,sha256=I9gYC--BG-kHyETHha1IVQmw0j_Q2vGS6QppCuwliSI,10071
|
|
365
|
+
pygeai/tests/auth/test_client_initialization.py,sha256=pkukn5DtRtARzDMSAIbLEoNvxRrdMZ-SGLjCtYHugxw,14983
|
|
366
|
+
pygeai/tests/auth/test_clients.py,sha256=PKZZoqAVzMgoZP7YE3BTBAaNjGrwbN9SNBMeN16eztg,12305
|
|
367
|
+
pygeai/tests/auth/test_config_manager.py,sha256=7eMao9fBKvp5C366SF1HrVkPFYa4eFkk50hx0LdW9L4,12439
|
|
368
|
+
pygeai/tests/auth/test_header_injection.py,sha256=xkhGlHexx2L6oA_SUSK2bsihVX-2uCh2IlN07B8TauI,11153
|
|
369
|
+
pygeai/tests/auth/test_oauth.py,sha256=I_exybLYNeh7I_vxUOZXXkvPQtCDeF9qQRlBhj59ofE,7021
|
|
370
|
+
pygeai/tests/auth/test_session_logging.py,sha256=54IWyzCcK48gp37JeLZJIzpR19jLyrIU8nD2So1UBLQ,4375
|
|
371
|
+
pygeai/tests/auth/test_session_validation.py,sha256=-xh3zMKDyUmwtaKcuui2YqnY0E3Cw_wGs1F-q9H9L68,15563
|
|
372
|
+
pygeai/tests/auth/test_singleton_reset.py,sha256=XQFE6WwR6cVlRdht-IvLVUI0UOf1KG4bY0ZPP9fd0Uw,7067
|
|
365
373
|
pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
|
-
pygeai/tests/chat/test_clients.py,sha256=
|
|
367
|
-
pygeai/tests/chat/test_iris.py,sha256=
|
|
374
|
+
pygeai/tests/chat/test_clients.py,sha256=W2mhur_v8cLxR2PuQaZqZM1FJchap9x9ZDNwkfT3p5g,15894
|
|
375
|
+
pygeai/tests/chat/test_iris.py,sha256=o9pxXkk8Sv9YZ4twxbG4-ZvIv6pST8GHa3t1F-NOH3w,1179
|
|
368
376
|
pygeai/tests/chat/test_session.py,sha256=yIxUJJGRXWPjwxvsosIE7AygzKoJ45GIx5DCUYgTRqY,2906
|
|
369
|
-
pygeai/tests/chat/test_ui.py,sha256=
|
|
377
|
+
pygeai/tests/chat/test_ui.py,sha256=9gp8FwiJ8HkDTvd093Ac1bLMcfhbDbJfUwWAUpj78Ro,8868
|
|
370
378
|
pygeai/tests/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
|
-
pygeai/tests/cli/
|
|
379
|
+
pygeai/tests/cli/test_credentials_flag.py,sha256=0bqEBGLcUg5frZHOmiB-ZlpYrqqBLTMfBGF8lfH1QFk,12782
|
|
380
|
+
pygeai/tests/cli/test_error_handler.py,sha256=LvR59wfsQ7bfvmXZuXZht4AxRU6Jg2fYuBSFS8Y7Tus,9304
|
|
372
381
|
pygeai/tests/cli/test_geai_driver.py,sha256=jhNt9jmqu3DVA0oWxNw6yQ0KiVGLyMrO6y4vJKO_ss4,6248
|
|
373
382
|
pygeai/tests/cli/test_parsers.py,sha256=QhNf46ijgwQVzzXhsoJ4Vbg948wXM2-5FSWa-yorm08,7267
|
|
374
383
|
pygeai/tests/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
384
|
pygeai/tests/cli/commands/test_assistant.py,sha256=IT1ORQZRFoNvGXn67SweI8DU3d0G8fJbnLAFfEJCV0k,10547
|
|
376
|
-
pygeai/tests/cli/commands/test_chat.py,sha256=
|
|
377
|
-
pygeai/tests/cli/commands/test_common.py,sha256=
|
|
378
|
-
pygeai/tests/cli/commands/test_embeddings.py,sha256=
|
|
379
|
-
pygeai/tests/cli/commands/test_evaluation.py,sha256=
|
|
385
|
+
pygeai/tests/cli/commands/test_chat.py,sha256=fc35aer-bDOBtgzibVMW28jHu6ZiPOBC2PPnu5OfXF0,6109
|
|
386
|
+
pygeai/tests/cli/commands/test_common.py,sha256=NM9DzO6KueNmr1jtaKk0itNxgDw8TXD2p8orTdh4eHA,13482
|
|
387
|
+
pygeai/tests/cli/commands/test_embeddings.py,sha256=F1YwNOp7uK91zLuUF3M4wKai3p38Qt44gv3v0yzfZ5U,5162
|
|
388
|
+
pygeai/tests/cli/commands/test_evaluation.py,sha256=svwVS8DF7G1fuRMLHXqzseL3c0QRDyITrBug2mCeAFg,30576
|
|
380
389
|
pygeai/tests/cli/commands/test_feedback.py,sha256=gHJ8Jt8kEemTvlpWLCyZCo73i0iBPlKhONRj4bJfhWU,3192
|
|
381
390
|
pygeai/tests/cli/commands/test_files.py,sha256=cJ0W4f8eg1T2TBZCah1k93nrk7R8ZL6_1HwCOhJOacI,7583
|
|
382
391
|
pygeai/tests/cli/commands/test_gam.py,sha256=oIFj4HJV6z1fQkIU2BmgP1VJ2zJ65UWDM6a3G8AenHM,8318
|
|
383
|
-
pygeai/tests/cli/commands/test_llm.py,sha256=
|
|
384
|
-
pygeai/tests/cli/commands/test_migrate.py,sha256=
|
|
392
|
+
pygeai/tests/cli/commands/test_llm.py,sha256=Mazqs8eUXjhZ1wWys96QU19XBeE8xNwh3PfCYdQXWbA,5247
|
|
393
|
+
pygeai/tests/cli/commands/test_migrate.py,sha256=k3z7M9fE_5IsWUmsTUDGQz0eNWYo50779jKmc_iVTeo,7834
|
|
385
394
|
pygeai/tests/cli/commands/test_organization.py,sha256=hHmw5sSgL1tWxf5pBuNtnLO-O4CACEv-eV-lQeO3TBs,12728
|
|
386
395
|
pygeai/tests/cli/commands/test_rag.py,sha256=7SdTbCgdPDoLca4Y7LECkL6AVPpgIYXiXyTRubBNe1Y,11761
|
|
387
|
-
pygeai/tests/cli/commands/test_rerank.py,sha256=
|
|
388
|
-
pygeai/tests/cli/commands/test_secrets.py,sha256=
|
|
389
|
-
pygeai/tests/cli/commands/test_show_help.py,sha256=
|
|
396
|
+
pygeai/tests/cli/commands/test_rerank.py,sha256=X3ejnPsHURTMhLjxKB1ZvLP11czoRHsIe7xMfDDbTYk,5289
|
|
397
|
+
pygeai/tests/cli/commands/test_secrets.py,sha256=jtke3sF-l6eV5lfaqP0sNh3z_efPQ3LvqxwxQYlBQ24,7542
|
|
398
|
+
pygeai/tests/cli/commands/test_show_help.py,sha256=7OQOOuAdpKAE8R7jrcMllS4sqWTrL1V5ZLlWjm-ynGE,1592
|
|
390
399
|
pygeai/tests/cli/commands/test_usage_limits.py,sha256=tt2LBaWmUhQnp9X3fHZc5-xpzKCVn-IHyZqT3cJn3ao,18636
|
|
391
|
-
pygeai/tests/cli/commands/test_validators.py,sha256=
|
|
400
|
+
pygeai/tests/cli/commands/test_validators.py,sha256=Jvgk1P8HSLOjjYjOXJvJQ5jsfHe6m-21eD-bu2EnV5o,7420
|
|
392
401
|
pygeai/tests/cli/commands/test_version.py,sha256=e6TIxU-USX8o0q3S2OGEGb-yMTHTb45yiUr2pN3zJ9Y,3989
|
|
393
402
|
pygeai/tests/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
394
|
-
pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=
|
|
395
|
-
pygeai/tests/cli/commands/lab/test_common.py,sha256=
|
|
403
|
+
pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=OPLsQN4QsEIMymp4qmwWq0gNu0lb6TghnH9nbCSm_8Y,42774
|
|
404
|
+
pygeai/tests/cli/commands/lab/test_common.py,sha256=tiejnQ-JZ-ELrPzLcrcoNJ6EEcwyn317HFHUnwMCuv4,8662
|
|
396
405
|
pygeai/tests/cli/commands/lab/test_spec.py,sha256=aymKywo6TH7EJVkPW_R3RXLQeCyXX8UFbnXwlO46q0Y,12474
|
|
397
406
|
pygeai/tests/cli/docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
398
407
|
pygeai/tests/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
408
|
pygeai/tests/core/test_handlers.py,sha256=xzPLBXLF3sBt5B1VhQ4ynnwmyQEbSTIoWsL8Djvrnyc,2470
|
|
400
409
|
pygeai/tests/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
|
-
pygeai/tests/core/base/test_mappers.py,sha256=
|
|
402
|
-
pygeai/tests/core/base/test_models.py,sha256=
|
|
410
|
+
pygeai/tests/core/base/test_mappers.py,sha256=NwmIhHEsA63oLwSGrdLt2LIhG6ByJE4rYGEj6_lgjSI,25653
|
|
411
|
+
pygeai/tests/core/base/test_models.py,sha256=37Pu6yhEnkoY_SBeNPFbZGObUJEcham6QrMx2qTKsIw,16290
|
|
403
412
|
pygeai/tests/core/base/test_responses.py,sha256=ToRBmy3tTYMT2jET0OCt3N0JT15edZ8Obeh2QWGGEJI,1798
|
|
404
413
|
pygeai/tests/core/base/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
414
|
pygeai/tests/core/base/data/mappers.py,sha256=0SEtD2m48ZOYj6AesxzB6LbGSNrxoyq2BhI0gLACkII,3135
|
|
406
415
|
pygeai/tests/core/base/data/models.py,sha256=EKSSst7IrWbRc_TzGoFh6PMlubqEMOuPV6DcLHYDjAE,8890
|
|
407
416
|
pygeai/tests/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
|
-
pygeai/tests/core/common/test_config.py,sha256=
|
|
409
|
-
pygeai/tests/core/common/test_decorators.py,sha256=
|
|
417
|
+
pygeai/tests/core/common/test_config.py,sha256=UgeT5u50EHS0itO7rulK_2_OHVXXd9QYWu8Jg6q1zN8,8205
|
|
418
|
+
pygeai/tests/core/common/test_decorators.py,sha256=BivtdttNBB452T3Qzl7fK0nNCW7HFCOWQsbJNzFhyNA,2373
|
|
410
419
|
pygeai/tests/core/common/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
420
|
pygeai/tests/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
412
421
|
pygeai/tests/core/embeddings/test_clients.py,sha256=dTivcz5E3E1X9ld3GRD9p_-gopYEfAYXqM6d1tAKS8E,10391
|
|
413
|
-
pygeai/tests/core/embeddings/test_managers.py,sha256=
|
|
422
|
+
pygeai/tests/core/embeddings/test_managers.py,sha256=jJ-lztn7Nflny1RQllplgzUhntXtHPp1k_h9ntlIMT4,5990
|
|
414
423
|
pygeai/tests/core/embeddings/test_mappers.py,sha256=3X0jV9bgidE_Nl_iLYrB5rUKDijLimF3Es_HN33er40,4955
|
|
415
424
|
pygeai/tests/core/feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
416
|
-
pygeai/tests/core/feedback/test_clients.py,sha256=
|
|
425
|
+
pygeai/tests/core/feedback/test_clients.py,sha256=PguJ15mRaCJlqk19CYCbHL8UwgxAXxYmvsZPfXzPvTY,2084
|
|
417
426
|
pygeai/tests/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
|
-
pygeai/tests/core/files/test_clients.py,sha256=
|
|
427
|
+
pygeai/tests/core/files/test_clients.py,sha256=DyeNEWegD6w81iEv86UqM4XqDmHPxNFAkCltD3Ap6RY,4661
|
|
419
428
|
pygeai/tests/core/files/test_managers.py,sha256=hGRTJoC4hVTVryz2042Ue2PIJ_BEoSwU9IVpqbgwfx0,10811
|
|
420
429
|
pygeai/tests/core/files/test_mappers.py,sha256=FGLsUCCagV8oJOJxg77QPHtWGClJreAn2beBHX6BF3g,4680
|
|
421
|
-
pygeai/tests/core/files/test_models.py,sha256=
|
|
422
|
-
pygeai/tests/core/files/test_responses.py,sha256=
|
|
430
|
+
pygeai/tests/core/files/test_models.py,sha256=a6rmtdQt2BxKuG2P7yyxJWr1njFy7_SjAhJdeN6GvyA,4281
|
|
431
|
+
pygeai/tests/core/files/test_responses.py,sha256=hjeR5_QuyeczeJ7FR-x1LuASVReFeJ_foNNpOrSTKLQ,5206
|
|
423
432
|
pygeai/tests/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
pygeai/tests/core/llm/test_clients.py,sha256=
|
|
433
|
+
pygeai/tests/core/llm/test_clients.py,sha256=RvWLE34Lol1ioO66uSAmW2G2gVYIqdgtXn6h-o2fN8M,6472
|
|
425
434
|
pygeai/tests/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
|
-
pygeai/tests/core/plugins/test_clients.py,sha256=
|
|
435
|
+
pygeai/tests/core/plugins/test_clients.py,sha256=S0-JFpo5XTbf8O0NhfbXC0mzfVQMsrNYGy0YADc5XBE,2492
|
|
427
436
|
pygeai/tests/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
437
|
pygeai/tests/core/rerank/test_clients.py,sha256=vUpgoMgcjxbuCNst-6TX1TbwodfBUOeliMMEnLTSGEA,2704
|
|
429
438
|
pygeai/tests/core/rerank/test_managers.py,sha256=qWu_tOXghsPJ8ENbMlcVpPFfxtRQteHmAnhESDRxZUU,4834
|
|
430
|
-
pygeai/tests/core/rerank/test_mappers.py,sha256=
|
|
439
|
+
pygeai/tests/core/rerank/test_mappers.py,sha256=fUHHfOrdRqZ5PIIcqAxXn4gqkybJo-24wknLynhtxYY,1963
|
|
431
440
|
pygeai/tests/core/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
432
|
-
pygeai/tests/core/secrets/test_clients.py,sha256=
|
|
441
|
+
pygeai/tests/core/secrets/test_clients.py,sha256=6vV5biw6AApTFs08f-AB53TRhFn2Ozii25N5Q2DBCA0,12400
|
|
433
442
|
pygeai/tests/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
434
|
-
pygeai/tests/core/services/test_rest.py,sha256=
|
|
443
|
+
pygeai/tests/core/services/test_rest.py,sha256=CmBTpI6INCAfuxMZGraY4DnCCUk6H2Qn6bb0le6NM8U,10820
|
|
435
444
|
pygeai/tests/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
436
|
-
pygeai/tests/core/utils/test_console.py,sha256=
|
|
445
|
+
pygeai/tests/core/utils/test_console.py,sha256=z6iegGWCZXtl-dUICpK2__jNcev2cGvXHkTpzCqXwmo,3250
|
|
437
446
|
pygeai/tests/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
-
pygeai/tests/dbg/test_debugger.py,sha256=
|
|
447
|
+
pygeai/tests/dbg/test_debugger.py,sha256=EN8MDAeUNvB5C5-iqXhZ-yfL1Vldo2jK_v927hRRQ1s,23705
|
|
439
448
|
pygeai/tests/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
440
449
|
pygeai/tests/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
|
-
pygeai/tests/evaluation/dataset/test_clients.py,sha256
|
|
450
|
+
pygeai/tests/evaluation/dataset/test_clients.py,sha256=-dLkb5Bz0lXAWrZ0vsuRoi_DtN6RNRV6Qk_1mZSiDMs,11447
|
|
442
451
|
pygeai/tests/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
|
-
pygeai/tests/evaluation/plan/test_clients.py,sha256=
|
|
452
|
+
pygeai/tests/evaluation/plan/test_clients.py,sha256=DlTSu058lBOEaWxEHOyx-NAWYMY53qgb7B2sSXlEBOg,8894
|
|
444
453
|
pygeai/tests/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
pygeai/tests/evaluation/result/test_clients.py,sha256=
|
|
454
|
+
pygeai/tests/evaluation/result/test_clients.py,sha256=9uY-gTMxxM_DAX3r8rDBsj_VOGjBK707K7q2lO7Atfw,2650
|
|
446
455
|
pygeai/tests/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
456
|
pygeai/tests/gam/test_clients.py,sha256=ghrhwIZymDOWhYHw-upTLa1eNQY6wvHMO0VaFyvi_n8,8906
|
|
448
457
|
pygeai/tests/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
449
|
-
pygeai/tests/health/test_clients.py,sha256=
|
|
458
|
+
pygeai/tests/health/test_clients.py,sha256=WbccAUN6IurDp8qyrqpn22DRJFIT2ILbGdmvotlmbNE,1573
|
|
450
459
|
pygeai/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
460
|
pygeai/tests/integration/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
452
461
|
pygeai/tests/integration/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -456,70 +465,70 @@ pygeai/tests/integration/chat/test_generate_image.py,sha256=grLr46o1Ey9QDXCKvXLD
|
|
|
456
465
|
pygeai/tests/integration/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
457
466
|
pygeai/tests/integration/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
458
467
|
pygeai/tests/integration/lab/agents/test_agents_list.py,sha256=6VwDwWZA-8CWUB9_I32d8ww1rR2fEkopGO4UoiVU8rs,4175
|
|
459
|
-
pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=
|
|
468
|
+
pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=tnC0PxcueefnztSPCWBkHhhHm-tMVRSAOfNiBk-xX-k,14274
|
|
460
469
|
pygeai/tests/integration/lab/agents/test_create_sharing_link.py,sha256=J4_CS8lHO_vrCUzZEXUsJwi8A_0gkHNtXSqkxVPErQI,2686
|
|
461
470
|
pygeai/tests/integration/lab/agents/test_delete_agent.py,sha256=JVMg43gOgPJf5s4TX73d_LeMISUkQfocnIbuKrG9dVs,2499
|
|
462
|
-
pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=
|
|
471
|
+
pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=emsr0yH3fDJi9Ca_AL9VwU1ap57s5zTKruevolFVU6k,3625
|
|
463
472
|
pygeai/tests/integration/lab/agents/test_publish_agent_revision.py,sha256=rA_4ovD1o_gvjA61-SUvPpJ9vuff7KW0J5fX_xI-rx8,5157
|
|
464
473
|
pygeai/tests/integration/lab/agents/test_update_agent.py,sha256=V8959eS6XzN8O8bIJwg-FlavrXbY7DvVI4Mms7ggqjM,11384
|
|
465
474
|
pygeai/tests/integration/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
|
-
pygeai/tests/integration/lab/processes/test_create_process.py,sha256=
|
|
467
|
-
pygeai/tests/integration/lab/processes/test_create_task.py,sha256=
|
|
468
|
-
pygeai/tests/integration/lab/processes/test_delete_process.py,sha256=
|
|
469
|
-
pygeai/tests/integration/lab/processes/test_get_process.py,sha256=
|
|
470
|
-
pygeai/tests/integration/lab/processes/test_list_process_instances.py,sha256=
|
|
475
|
+
pygeai/tests/integration/lab/processes/test_create_process.py,sha256=0ta998Z4NKJaJtDFNWfNu3gLwFqJjOiBeXHYII2mBtM,14285
|
|
476
|
+
pygeai/tests/integration/lab/processes/test_create_task.py,sha256=_s_NejyZU2oYl9KsLlPu3uxwW8n1Cf3zN6JzCpxtDis,7782
|
|
477
|
+
pygeai/tests/integration/lab/processes/test_delete_process.py,sha256=3ccfU_VX13TG8yx5xavFyUwiGmX_ZgsxMKMRCbURc1g,4237
|
|
478
|
+
pygeai/tests/integration/lab/processes/test_get_process.py,sha256=k8WtPkodR9nR3blzmhBMWHrERoUVBVugXidrER4sHQg,7541
|
|
479
|
+
pygeai/tests/integration/lab/processes/test_list_process_instances.py,sha256=qVgjQULssPSYqmqs8aj37MHxkOILqXCrVPOecSwlzwI,3511
|
|
471
480
|
pygeai/tests/integration/lab/processes/test_list_processes.py,sha256=zmjrNMmvUr19eiUcqDqTg78dFJm6yj2f1sMCVU5GRrg,5582
|
|
472
481
|
pygeai/tests/integration/lab/processes/test_publish_process_revision.py,sha256=4W1Kjga-McywnXBtbzDw_hEfPlAyLqahp9Pq15GNIQo,10257
|
|
473
|
-
pygeai/tests/integration/lab/processes/test_update_process.py,sha256=
|
|
482
|
+
pygeai/tests/integration/lab/processes/test_update_process.py,sha256=3r8Gip2DYgSs3nB_qEKjkQz6etKn4c51dLjUgEu2Ztc,12207
|
|
474
483
|
pygeai/tests/integration/lab/reasoning_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
484
|
pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py,sha256=QmzjtskmUq0hCrkrwKDEyjgx_kTJcsicIYHOhkWTDY0,2757
|
|
476
485
|
pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py,sha256=yWV1lVicWcYjVItoko8DmQX-cpfy9lGNEZs-okMg3Is,3531
|
|
477
|
-
pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py,sha256=
|
|
486
|
+
pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py,sha256=JIdkXII9qvQnVHlZCtM8XxNDqYy5MC3W13oBQJwsOkw,5728
|
|
478
487
|
pygeai/tests/integration/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
488
|
pygeai/tests/integration/lab/tools/test_create_tool.py,sha256=9gYn8-G2TH3srZSdJ1Px65FQqXNDFp3aHrrYfxA5_8Q,12253
|
|
480
|
-
pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=
|
|
489
|
+
pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=UEwQbdDxM0UrxdgPpLZXUgUppjjpGaQ1GhheZunlHkM,2842
|
|
481
490
|
pygeai/tests/integration/lab/tools/test_get_parameter.py,sha256=-S_hQdtKI24c5_t2NwjpWK7KAxByx4cepfVD_kMJd_s,3598
|
|
482
491
|
pygeai/tests/integration/lab/tools/test_get_tool.py,sha256=tC9zOqG0k7o1KuWOQJDzCrU4CeJSfwk1h7krVYsydeo,3449
|
|
483
|
-
pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=
|
|
492
|
+
pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=7mKyfbixyKJYpsR42j_PE9epeB-btb1TqsS_mN_Myyo,3731
|
|
484
493
|
pygeai/tests/integration/lab/tools/test_publish_tool_revision.py,sha256=_f16aFxinGibEX7tqA2RlhMwyCEeiLMYLwhMZujOxUw,4577
|
|
485
494
|
pygeai/tests/integration/lab/tools/test_set_parameter.py,sha256=Qqs3kkvZvNhU35hcxSge7oiAVK_7e4YWwC25o9QmBuE,4013
|
|
486
|
-
pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=
|
|
495
|
+
pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=eu7ItkneCAj7wqZscfuh2i0ZSO9uKPLCCJMQmWMRuhk,11699
|
|
487
496
|
pygeai/tests/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
|
-
pygeai/tests/lab/test_managers.py,sha256=
|
|
489
|
-
pygeai/tests/lab/test_mappers.py,sha256=
|
|
497
|
+
pygeai/tests/lab/test_managers.py,sha256=MJNDinwjYXHahFPuZUDHXQlHkL_31Q93sG0JRhKaKMk,29282
|
|
498
|
+
pygeai/tests/lab/test_mappers.py,sha256=e_OhrerILeDX5-hUux9WVpjNhS56aWPkrKuEnNVubpw,11194
|
|
490
499
|
pygeai/tests/lab/test_models.py,sha256=o6YcKQb_p4CTBGwN0q4JnF1YmC0ZVc2dkfwuN6WZbDw,54442
|
|
491
500
|
pygeai/tests/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
492
|
-
pygeai/tests/lab/agents/test_clients.py,sha256=
|
|
501
|
+
pygeai/tests/lab/agents/test_clients.py,sha256=o5oxNo0JvolOeB8tXf-BrkhKKb6CcSdeFKcTCdDNo6o,21765
|
|
493
502
|
pygeai/tests/lab/agents/test_mappers.py,sha256=6Q8tPh0S5x1oI8Vl298aaMtJkvKMEx7U0wO4nPwah4s,19117
|
|
494
503
|
pygeai/tests/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
495
|
-
pygeai/tests/lab/processes/test_clients.py,sha256=
|
|
496
|
-
pygeai/tests/lab/processes/test_mappers.py,sha256=
|
|
504
|
+
pygeai/tests/lab/processes/test_clients.py,sha256=Jzehl3EZNqwg3YG48HhXjlPNI7p8Pz9phl8HAzz7xks,60093
|
|
505
|
+
pygeai/tests/lab/processes/test_mappers.py,sha256=BIkRgKnzoEhaJDta09U4Fg9pWx1r_O83zesTpwNMQNQ,39844
|
|
497
506
|
pygeai/tests/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
498
|
-
pygeai/tests/lab/spec/test_loader.py,sha256=
|
|
499
|
-
pygeai/tests/lab/spec/test_parsers.py,sha256=
|
|
507
|
+
pygeai/tests/lab/spec/test_loader.py,sha256=VGYZtt37z22a9Z8SCgk4CglDvuFjQIdlyOLCHSkRB1U,2373
|
|
508
|
+
pygeai/tests/lab/spec/test_parsers.py,sha256=MFCkB_lhXRiYDCqDJLUscgKsugZ5pHnTPWn7HCZY_-g,7670
|
|
500
509
|
pygeai/tests/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
-
pygeai/tests/lab/strategies/test_clients.py,sha256=
|
|
510
|
+
pygeai/tests/lab/strategies/test_clients.py,sha256=dU1tJkg8lqZW9nklOkKZDdedSrpJ_bHgIQbzYcdmNsk,10546
|
|
502
511
|
pygeai/tests/lab/strategies/test_mappers.py,sha256=gm0G2W-YAuvjn6qFa1O0nkkgTLSA1eIJAt9qE_I7BFU,5783
|
|
503
512
|
pygeai/tests/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
504
|
-
pygeai/tests/lab/tools/test_clients.py,sha256=
|
|
505
|
-
pygeai/tests/lab/tools/test_mappers.py,sha256=
|
|
513
|
+
pygeai/tests/lab/tools/test_clients.py,sha256=2B79cGbYVOwviXshhom-A2-aSjGlfkkG50UaW9dLojA,21108
|
|
514
|
+
pygeai/tests/lab/tools/test_mappers.py,sha256=zy-efWR7M_dCa0vrl1XOMvIwT9pwCIKSC0d2YJebq5Q,7791
|
|
506
515
|
pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
507
516
|
pygeai/tests/migration/test_strategies.py,sha256=Ql9Nd9Hx_YZkahENC-JKWtUlsm6Gma_F3-ToAtDRAaI,17233
|
|
508
517
|
pygeai/tests/migration/test_tools.py,sha256=PY7NFqvW71R1xKCICmdHNFca_8gTob0QM4yRe-ILvnw,5698
|
|
509
518
|
pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
510
|
-
pygeai/tests/organization/test_clients.py,sha256=
|
|
519
|
+
pygeai/tests/organization/test_clients.py,sha256=JZJw1gsvhMSZdnB8H1sg2GJcnmwrKK5e-mKMaSyYadw,30199
|
|
511
520
|
pygeai/tests/organization/test_managers.py,sha256=ybize5OkTp_DFntbyCiNEavClQYt-vzjoqEegjhQJaw,21706
|
|
512
521
|
pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
|
|
513
522
|
pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
|
|
514
523
|
pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
515
|
-
pygeai/tests/organization/limits/test_clients.py,sha256=
|
|
516
|
-
pygeai/tests/organization/limits/test_managers.py,sha256=
|
|
524
|
+
pygeai/tests/organization/limits/test_clients.py,sha256=aYkUX09gdIri7V3eZlbXhGTJP4ld_uJF7u-m6sQb2Rk,28352
|
|
525
|
+
pygeai/tests/organization/limits/test_managers.py,sha256=PdF-F3JLFc1gBDUjLoCdgScR6P7pO9v_PiQhTxSiVXA,20375
|
|
517
526
|
pygeai/tests/proxy/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
518
|
-
pygeai/tests/proxy/test_clients.py,sha256=
|
|
527
|
+
pygeai/tests/proxy/test_clients.py,sha256=hjW_E-xj2kFGsUKrQQktudN-WfRvyh7Lw6E_5P5_WpY,14043
|
|
519
528
|
pygeai/tests/proxy/test_config.py,sha256=5ZMyW7N-QrlDLG_qSwDGRIPOSOH5iZoe7Ts1GTuJqps,7541
|
|
520
|
-
pygeai/tests/proxy/test_integration.py,sha256=
|
|
521
|
-
pygeai/tests/proxy/test_managers.py,sha256
|
|
522
|
-
pygeai/tests/proxy/test_servers.py,sha256=
|
|
529
|
+
pygeai/tests/proxy/test_integration.py,sha256=nlLmrH6-DmDO17a4ZA2iW6RinOdYfmfoiF-jjYkuaBk,11367
|
|
530
|
+
pygeai/tests/proxy/test_managers.py,sha256=-07JEo2dojBItdMt_87tt0OnS-vDuhuyL5Sjfk4Q3xM,12696
|
|
531
|
+
pygeai/tests/proxy/test_servers.py,sha256=rD8nb4HSlFrgCfnxBimQfffm9YOlwOoYWUPQJ6xFrAk,16098
|
|
523
532
|
pygeai/tests/proxy/test_tool.py,sha256=a0BfjOEv6BBHD3BW-E2anIkQM68TuRmDRighKMpTrgc,6142
|
|
524
533
|
pygeai/tests/snippets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
525
534
|
pygeai/tests/snippets/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -548,10 +557,10 @@ pygeai/tests/snippets/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
548
557
|
pygeai/tests/snippets/assistants/rag/create_rag_assistant.py,sha256=J9CjoNKVx-QAyhGrQ1jizc4Qi50Jlq9afMVMQY1sIlU,1457
|
|
549
558
|
pygeai/tests/snippets/assistants/rag/delete_al_documents.py,sha256=96_rFDp0EQ6pz0yjH7Us0DFyeNfUt-G1bb3NolTFMW4,177
|
|
550
559
|
pygeai/tests/snippets/assistants/rag/delete_document.py,sha256=CAxLuduAwcXa-J1Eo3UDlDUcTDYDCVr1-VFK8YZE968,235
|
|
551
|
-
pygeai/tests/snippets/assistants/rag/delete_rag_assistant.py,sha256=
|
|
560
|
+
pygeai/tests/snippets/assistants/rag/delete_rag_assistant.py,sha256=u6hjal9GvMGJ7WQwdtmHSW5xp3BgTQ0JG9OHdUPNUrk,199
|
|
552
561
|
pygeai/tests/snippets/assistants/rag/get_document.py,sha256=o9Oao5bqManQ2HNz3JifscAJocVg0xb1Wcsr4NHBMdo,231
|
|
553
|
-
pygeai/tests/snippets/assistants/rag/get_documents.py,sha256=
|
|
554
|
-
pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py,sha256=
|
|
562
|
+
pygeai/tests/snippets/assistants/rag/get_documents.py,sha256=gwCmDSDq4_KzSQVZ71aPm5FzWseyrJjbtK0zuVLJfkc,173
|
|
563
|
+
pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py,sha256=Es5FMNn1dWFJAroee1lhxho7z-YLQyHkIppCzp0YsTY,201
|
|
555
564
|
pygeai/tests/snippets/assistants/rag/update_rag_assistant.py,sha256=sOMTENyjCjLmv9ZKzwL3Ub5_nTyu3frZTQx7PbSUxdg,1271
|
|
556
565
|
pygeai/tests/snippets/assistants/rag/upload_document.py,sha256=ZcD6-_vexP1y7xCDzuI8qLtE2W4msf8raD-QBwbgC8s,489
|
|
557
566
|
pygeai/tests/snippets/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -564,7 +573,7 @@ pygeai/tests/snippets/chat/chat_completion_3.py,sha256=UGY0At4HGDCiGT9rAOwwWLWYG
|
|
|
564
573
|
pygeai/tests/snippets/chat/chat_completion_4.py,sha256=nBOlnCMNUGpJaXvP_2XStR-qHSQIaK6GRLzoKyrOvIg,1726
|
|
565
574
|
pygeai/tests/snippets/chat/chat_completion_streaming.py,sha256=2bb5fVrYknoaRVdH8-DHYuz4NtYgCFf3JyyQBa2F-pQ,1395
|
|
566
575
|
pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py,sha256=VDx5Cgy2smWt1MdRz3BJx290_bv2KaCz8NUsNlC41Fg,314
|
|
567
|
-
pygeai/tests/snippets/chat/get_request_status.py,sha256=
|
|
576
|
+
pygeai/tests/snippets/chat/get_request_status.py,sha256=2_iJGmqwop2lRDxXbqhj5GWxGrOQZVRL7wLLHJzZIIg,195
|
|
568
577
|
pygeai/tests/snippets/chat/get_response.py,sha256=H7neNsbmykGv7urk-NP-WjZuTT930qu3aPbXUGTerYA,286
|
|
569
578
|
pygeai/tests/snippets/chat/get_response_complete_example.py,sha256=38WkWgNupzQl6Capo48CHwxZuPlR2DVpPufiYva4PIU,2044
|
|
570
579
|
pygeai/tests/snippets/chat/get_response_streaming.py,sha256=nF9difHdFTCbrLy73XGIUt5W-FBixg-D6HvhkqjsnIQ,404
|
|
@@ -580,18 +589,20 @@ pygeai/tests/snippets/chat/send_chat_request.py,sha256=t9tdSE6YozLvc6o6rMPNbZvXc
|
|
|
580
589
|
pygeai/tests/snippets/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
581
590
|
pygeai/tests/snippets/dbg/basic_debugging.py,sha256=XlT7ooQuaCR7W5O4OXL7VLD8vrcmirR-eKRzwGF-q9g,737
|
|
582
591
|
pygeai/tests/snippets/dbg/breakpoint_management.py,sha256=h21WfZJ3fTSPfWLrw9vln0gW92e6yLFmjEWifvIbZpg,1215
|
|
592
|
+
pygeai/tests/snippets/dbg/file_debugging.py,sha256=UOMIqtjO5afsG87bWVEoh-0V0OIbQLob-6k_m7uctwo,1753
|
|
593
|
+
pygeai/tests/snippets/dbg/module_debugging.py,sha256=yj5drxzizxOniuKeXEpFLMgPPoeNgD9fPHT6FL7U8dY,1992
|
|
583
594
|
pygeai/tests/snippets/dbg/stack_navigation.py,sha256=A2qcsw4-Zccf84ELd3o6yryhqbfZXMH5V0RWsOnfUXE,1042
|
|
584
595
|
pygeai/tests/snippets/dbg/stepping_example.py,sha256=M4uZI3xMOGQh95Ojgg9zWAX2sZ9AUH91wQm4mRoJ8X0,996
|
|
585
596
|
pygeai/tests/snippets/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
586
597
|
pygeai/tests/snippets/embeddings/cache_example.py,sha256=ie7JGfsz_tTBY4eBr8f8HQeJ4J5R2Uv9lpStYHM-bEU,1071
|
|
587
|
-
pygeai/tests/snippets/embeddings/cohere_example.py,sha256=
|
|
598
|
+
pygeai/tests/snippets/embeddings/cohere_example.py,sha256=QWfjM3udC4rAhpqoME16y1DQLrybP4EWO4RdepdSgAA,1418
|
|
588
599
|
pygeai/tests/snippets/embeddings/generate_embeddings.py,sha256=IyIlO6UDGMjT-E9uK91NdYsuWI4fCRGwqlaFr0iUzSc,785
|
|
589
|
-
pygeai/tests/snippets/embeddings/openai_base64_example.py,sha256=
|
|
600
|
+
pygeai/tests/snippets/embeddings/openai_base64_example.py,sha256=cuS97WB9e-m2Ld0UOT87XCQdXfagbFQftHtQJX0V7_U,937
|
|
590
601
|
pygeai/tests/snippets/embeddings/openai_example.py,sha256=DFnarCeNVaq4Jn1oJSRIRr7ZCn-m1JQe1EbgSEl1DgA,1007
|
|
591
602
|
pygeai/tests/snippets/embeddings/similarity_example.py,sha256=CMuG54YV2s-UwCVHYPle9EoFFv-GsWN9RsQx9sahD6o,1388
|
|
592
603
|
pygeai/tests/snippets/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
593
604
|
pygeai/tests/snippets/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
594
|
-
pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py,sha256=
|
|
605
|
+
pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py,sha256=0Wb1XwEkyA0weVYfQS-nDxKMSCUPQyMeHapOaPR8Rq8,7026
|
|
595
606
|
pygeai/tests/snippets/evaluation/dataset/create_dataset.py,sha256=aJcH6HMyIG6O0hvsNzLEyLRWywgSkBf2RmjBI-wD6Qg,779
|
|
596
607
|
pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py,sha256=BjjL97sEZ6mhkpStPG-GplPyBVm40wA8IGGDuJqspv4,330
|
|
597
608
|
pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py,sha256=8OSID-i1UZLctmB6hiv0UbUuzCujJ8mYWlbPWw_O34A,590
|
|
@@ -616,7 +627,7 @@ pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py,sha256=GE4xFD
|
|
|
616
627
|
pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py,sha256=t8HL8MdwaDFSemy-2tZKD2pHhaKNrPr3H7mXH_XtOB4,310
|
|
617
628
|
pygeai/tests/snippets/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
618
629
|
pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py,sha256=ADcMckwO6mHOjPR5jzQa3xtix2-JS-bKESjg0hIxLwE,350
|
|
619
|
-
pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py,sha256=
|
|
630
|
+
pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py,sha256=TRMyfDLG5IwdLNIwcNUTH5ExbjuFSO1dqOMDuU_t77g,4524
|
|
620
631
|
pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py,sha256=_J19BpWeYVmHG0hjdq-L9b6ozjko7IfT3pu6UN0eFaI,617
|
|
621
632
|
pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py,sha256=scrXCfLAxrlk8sipfV1K4FPD63frJjLU_tiJeth44LU,552
|
|
622
633
|
pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py,sha256=Wr68Kjk_buOql786DhWjips2vWmvhOkuRslAfUiAhuc,273
|
|
@@ -631,7 +642,7 @@ pygeai/tests/snippets/evaluation/plan/list_system_metrics.py,sha256=dXSKaEZcbJYM
|
|
|
631
642
|
pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py,sha256=HR3WVKHuPd8jZofy-LB3LvOkOcAqcmDc3rzVmGo7iU0,538
|
|
632
643
|
pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py,sha256=3TlDFPi2leLnW5MzB97ubrJNelPBmus_KnxNTINRolY,396
|
|
633
644
|
pygeai/tests/snippets/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
634
|
-
pygeai/tests/snippets/evaluation/result/complete_workflow_example.py,sha256=
|
|
645
|
+
pygeai/tests/snippets/evaluation/result/complete_workflow_example.py,sha256=hv0QiI7O_XAZW3rbJga-wvG8gvpAsI2evZLOifx6BIA,5468
|
|
635
646
|
pygeai/tests/snippets/evaluation/result/get_evaluation_result.py,sha256=itet30dV9xV_NVYbxTnkL4FPb6heIyGJEsyzVrZ83M0,1070
|
|
636
647
|
pygeai/tests/snippets/evaluation/result/list_evaluation_results.py,sha256=e31Hd0iELVtDsMvK847f3yvMgePO7xqT2MLP62zo-Wc,764
|
|
637
648
|
pygeai/tests/snippets/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -643,74 +654,74 @@ pygeai/tests/snippets/files/upload_file.py,sha256=In6XIvIFSbctrqOD8r_WMmGlXYGju4
|
|
|
643
654
|
pygeai/tests/snippets/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
644
655
|
pygeai/tests/snippets/gam/gam_access_token.py,sha256=168cZwF3IcAZ3neCdvh1jRxi1acpIDXHuyBZnuWwHQY,3122
|
|
645
656
|
pygeai/tests/snippets/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
646
|
-
pygeai/tests/snippets/lab/agentic_flow_example_1.py,sha256=
|
|
647
|
-
pygeai/tests/snippets/lab/agentic_flow_example_2.py,sha256=
|
|
657
|
+
pygeai/tests/snippets/lab/agentic_flow_example_1.py,sha256=bxWO4ZNEA-QfOUtUXAI-udT227SGrogjO0mdqfrCYgQ,13437
|
|
658
|
+
pygeai/tests/snippets/lab/agentic_flow_example_2.py,sha256=im6uSMWwfGRytXcBwpz9wfYXWUusAJJx-cCtJ-m3wEs,8193
|
|
648
659
|
pygeai/tests/snippets/lab/agentic_flow_example_3.py,sha256=mnDbSZixOlLoG0OFsMDQLdwQYFCL-HeL35WrOxoHuto,19134
|
|
649
660
|
pygeai/tests/snippets/lab/agentic_flow_example_4.py,sha256=Coda7IoTtheL8hmVZhHVj2-jGYHQqzXsJAXeDDZA4sQ,17434
|
|
650
661
|
pygeai/tests/snippets/lab/assistant_to_agent.py,sha256=RHzGV1uHH4BQNHLDtH1XJyzJWDaeil-cmPke8gKDew0,7587
|
|
651
|
-
pygeai/tests/snippets/lab/crud_ui.py,sha256=
|
|
662
|
+
pygeai/tests/snippets/lab/crud_ui.py,sha256=FNfRBr13vTA2ktENHurKu92TrL52DDj-jmwiJhFPVCM,23189
|
|
652
663
|
pygeai/tests/snippets/lab/runner_1.py,sha256=QD92MvC22wpWj6YyrSgpp46EcL0ciac2x1zalS7-GkI,7960
|
|
653
664
|
pygeai/tests/snippets/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
654
665
|
pygeai/tests/snippets/lab/agents/create_agent.py,sha256=EVyfQzDST9A9KaM0ToZJKlJ7yCbfhpSVkVK_MaUVQPw,1875
|
|
655
666
|
pygeai/tests/snippets/lab/agents/create_agent_2.py,sha256=jd7HKhle_c0S0vI80AejOyLaNqBWkILlRF_znzyCGcQ,1879
|
|
656
667
|
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=
|
|
668
|
+
pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py,sha256=OnTw0I7iLnu-b_08GruELOByECsKXUcv9CQ5ywzLOmg,1520
|
|
658
669
|
pygeai/tests/snippets/lab/agents/create_agent_with_properties.py,sha256=kM64wHZxHdfBCNBV2RQv-4uveHzE61tF3QEi1fAPZcw,1548
|
|
659
670
|
pygeai/tests/snippets/lab/agents/create_agent_without_instructions.py,sha256=jd7HKhle_c0S0vI80AejOyLaNqBWkILlRF_znzyCGcQ,1879
|
|
660
|
-
pygeai/tests/snippets/lab/agents/delete_agent.py,sha256=
|
|
661
|
-
pygeai/tests/snippets/lab/agents/get_agent.py,sha256=
|
|
662
|
-
pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py,sha256=
|
|
663
|
-
pygeai/tests/snippets/lab/agents/get_sharing_link.py,sha256=
|
|
664
|
-
pygeai/tests/snippets/lab/agents/list_agents.py,sha256=
|
|
665
|
-
pygeai/tests/snippets/lab/agents/publish_agent_revision.py,sha256=
|
|
671
|
+
pygeai/tests/snippets/lab/agents/delete_agent.py,sha256=GnL5TvuIeoH520ZEHE5cRmb8u_ClrqX1f9USiDZv8xc,215
|
|
672
|
+
pygeai/tests/snippets/lab/agents/get_agent.py,sha256=LncGXTW35TVBie2rTnG_5bRU91MfjNx91sR3dsrr_Iw,509
|
|
673
|
+
pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py,sha256=kBgg07wJINb3-7RnhhcBtskuwO4f8zoextOOGAW43Lw,1968
|
|
674
|
+
pygeai/tests/snippets/lab/agents/get_sharing_link.py,sha256=rJz2A-uQpsuN2FKqnBYWgD8z_kY9bcKmOMkSkv3Rvwk,274
|
|
675
|
+
pygeai/tests/snippets/lab/agents/list_agents.py,sha256=Kv8jz5Bzun_Lroz7C3SBLgMRk_pWuVpP-j21TkVeOl0,446
|
|
676
|
+
pygeai/tests/snippets/lab/agents/publish_agent_revision.py,sha256=WHR0CQN5A_u0Z4QQo1hDZYFnlhGT7vZebtMAQjAvgpA,308
|
|
666
677
|
pygeai/tests/snippets/lab/agents/update_agent.py,sha256=6qCnqkowCCygEl3tv_nvdlwXG8k0-LEloKYQUdIfkrs,1943
|
|
667
|
-
pygeai/tests/snippets/lab/agents/update_agent_properties.py,sha256=
|
|
678
|
+
pygeai/tests/snippets/lab/agents/update_agent_properties.py,sha256=HZSeQ7F1naDxiag9JgWCIwB3_2yLgg4VJ-MwGQFFyqQ,1434
|
|
668
679
|
pygeai/tests/snippets/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
669
680
|
pygeai/tests/snippets/lab/processes/create_process.py,sha256=gUZap3dF8Nhw3e9d_yZ9n8PZ2wBsTmJ7sRxgKfsIb80,1322
|
|
670
681
|
pygeai/tests/snippets/lab/processes/create_task.py,sha256=dbkp1lSIL9bmhW3YpwLxZymWHJpd3WW_N0W8z85rA4k,326
|
|
671
|
-
pygeai/tests/snippets/lab/processes/list_processes.py,sha256
|
|
682
|
+
pygeai/tests/snippets/lab/processes/list_processes.py,sha256=xR6rsLzuqkSb7Ta0LFr4uW2J-jvMF8OWyBwUlh0dWnM,429
|
|
672
683
|
pygeai/tests/snippets/lab/processes/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
673
684
|
pygeai/tests/snippets/lab/processes/jobs/list_jobs.py,sha256=mhZejsEk6aNLVKP1JcnhZ8tGNJ-Ck4-ITK4CuqldxHM,608
|
|
674
685
|
pygeai/tests/snippets/lab/processes/kbs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
675
686
|
pygeai/tests/snippets/lab/processes/kbs/create_kb.py,sha256=O8sfgDjWgK7SEvKPM8XqJI_BPvcg-vvemea82BMqhx4,448
|
|
676
|
-
pygeai/tests/snippets/lab/processes/kbs/get_kb.py,sha256=
|
|
677
|
-
pygeai/tests/snippets/lab/processes/kbs/list_kbs.py,sha256=
|
|
687
|
+
pygeai/tests/snippets/lab/processes/kbs/get_kb.py,sha256=3lCTl4U23ZGSbkzB8VQ-O1AcBuS5YOOdHY7rdauUz7k,658
|
|
688
|
+
pygeai/tests/snippets/lab/processes/kbs/list_kbs.py,sha256=_p6ORPw5dDA4JX5y4gcI4FAYPFgNDnlIgTcTt1B9sJs,821
|
|
678
689
|
pygeai/tests/snippets/lab/processes/kbs/try_all.py,sha256=rfTOHHn73Qyn5nZi6A_ScroeCvs8lTSAY2H_PFkPwEo,2623
|
|
679
690
|
pygeai/tests/snippets/lab/samples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
680
|
-
pygeai/tests/snippets/lab/samples/summarize_files.py,sha256=
|
|
691
|
+
pygeai/tests/snippets/lab/samples/summarize_files.py,sha256=jvX_FuynVeRhWfkyMblDcgJ3Anr6CZo6p5sQDYrukFU,5692
|
|
681
692
|
pygeai/tests/snippets/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
682
693
|
pygeai/tests/snippets/lab/strategies/create_reasoning_strategy.py,sha256=e4NM2SE06GuIGmff43hOT7ANsSRVZ1fMwq1z37Fjbcw,749
|
|
683
|
-
pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py,sha256=
|
|
684
|
-
pygeai/tests/snippets/lab/strategies/list_reasoning_strategies.py,sha256=
|
|
694
|
+
pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py,sha256=uHvc3R7fuiCRnWa9fB3XgjzVNTZxZVjfRfN1inRumXk,233
|
|
695
|
+
pygeai/tests/snippets/lab/strategies/list_reasoning_strategies.py,sha256=O08bXYxjZGXpU2Hn6olBBZUk0MVYR3LLac6xbG0mYig,462
|
|
685
696
|
pygeai/tests/snippets/lab/strategies/update_reasoning_strategy.py,sha256=OIoHNkdnXbC9GacPgXUG1jKlVizVtWfRI-E8_3xF5b0,889
|
|
686
697
|
pygeai/tests/snippets/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
687
698
|
pygeai/tests/snippets/lab/tools/create_tool.py,sha256=X8qoL7TOk9Gm7jyk5MvhB5V-TBvog3TETCLNL90Z3HA,1400
|
|
688
699
|
pygeai/tests/snippets/lab/tools/create_tool_edge_case.py,sha256=8w4mvoRTMTyc70yYm2bgV2dr_Rh5QpPJR8VoqX-eY-s,1465
|
|
689
700
|
pygeai/tests/snippets/lab/tools/delete_tool.py,sha256=pnIkYvdP7X7Gx79AMK5MSVliIXdHSpyVwRhH3kgi7ys,452
|
|
690
701
|
pygeai/tests/snippets/lab/tools/get_parameter.py,sha256=dXdlHhoWxzZIYdsvHKnLLT5Vff2Tip46XCoOo-B8Gf0,490
|
|
691
|
-
pygeai/tests/snippets/lab/tools/get_tool.py,sha256
|
|
702
|
+
pygeai/tests/snippets/lab/tools/get_tool.py,sha256=dPy_0E2LjzKBFDBoiLKTeB2BxqhbtPKSN0-mS4-FxNI,471
|
|
692
703
|
pygeai/tests/snippets/lab/tools/list_tools.py,sha256=0kzVtF8jyq8fM8yx5y3vPe3YLW8EWt9Ya3_Nx4HvBQQ,472
|
|
693
|
-
pygeai/tests/snippets/lab/tools/publish_tool_revision.py,sha256=
|
|
694
|
-
pygeai/tests/snippets/lab/tools/set_parameters.py,sha256=
|
|
704
|
+
pygeai/tests/snippets/lab/tools/publish_tool_revision.py,sha256=idB23JmjNdTExcDZ-QuLbTCjndAeRH3_jKCJIeQ4n-c,272
|
|
705
|
+
pygeai/tests/snippets/lab/tools/set_parameters.py,sha256=IeilpSFQplTvu8hA_MPoWOIyhPBmXPegxZSNY5PJ90M,775
|
|
695
706
|
pygeai/tests/snippets/lab/tools/update_tool.py,sha256=quD1XwQRhxrHbrK1W3ptTrS_P-HCge0E9V-BfRJgRBc,1501
|
|
696
707
|
pygeai/tests/snippets/lab/use_cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
697
|
-
pygeai/tests/snippets/lab/use_cases/c_code_fixer_agent_flow.py,sha256=
|
|
708
|
+
pygeai/tests/snippets/lab/use_cases/c_code_fixer_agent_flow.py,sha256=uoqjMgsC1kuXNdTAL5tWfm8HBsumUBQhpBNKVbxlWqI,9959
|
|
698
709
|
pygeai/tests/snippets/lab/use_cases/create_cli_expert.py,sha256=IqUUpNDJRnq119VYGKCrqeBfmf4YYDGUrRd0_-A9VFg,93674
|
|
699
710
|
pygeai/tests/snippets/lab/use_cases/create_lab_expert.py,sha256=CdiuEBW6CAEGXQwNJ_2tH5xIUyc27audzGzkXSU5xNk,173245
|
|
700
711
|
pygeai/tests/snippets/lab/use_cases/create_tool_headless_web_browser.py,sha256=T1HgeYD8GfV98anO4mC7Q-uLsI5hhGdbB3fOntn-Hdo,6054
|
|
701
712
|
pygeai/tests/snippets/lab/use_cases/create_web_designer.py,sha256=Hpl690wEDX1iCrm1EulZd0CNZDeBsik0GsUEeMvgIvc,10817
|
|
702
713
|
pygeai/tests/snippets/lab/use_cases/create_web_reader.py,sha256=BlQ_JsQ3xsmFI7HwMPlJhFKapTqa3XEQp--c8095wK0,10665
|
|
703
714
|
pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py,sha256=pknGVJY042Fw8mdCerzO1_ZnupC6WjGJPLricXTcS0c,5523
|
|
704
|
-
pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py,sha256=
|
|
705
|
-
pygeai/tests/snippets/lab/use_cases/update_cli_expert.py,sha256=
|
|
706
|
-
pygeai/tests/snippets/lab/use_cases/update_lab_expert.py,sha256
|
|
707
|
-
pygeai/tests/snippets/lab/use_cases/update_web_designer.py,sha256=
|
|
708
|
-
pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=
|
|
715
|
+
pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py,sha256=wahIngFFwWfst-KDFZhFd06CUg_2D6RmWPiszAkmP24,5519
|
|
716
|
+
pygeai/tests/snippets/lab/use_cases/update_cli_expert.py,sha256=1Awv11Op8vkYgI-KXorRT3_f9rf22aAFLQ9f5yWsSao,98568
|
|
717
|
+
pygeai/tests/snippets/lab/use_cases/update_lab_expert.py,sha256=kgU8rBcxhbTV7DsrCDADzFbePb8NDFdMhpCQ03yfbv0,173254
|
|
718
|
+
pygeai/tests/snippets/lab/use_cases/update_web_designer.py,sha256=Rs6C5HNJfsnso2f4AviWvMBY3tcEUfqHya97v_HFHc4,10608
|
|
719
|
+
pygeai/tests/snippets/lab/use_cases/update_web_reader.py,sha256=OygDzajsGm_c3royBWyaNINQtG4-XpZ34MZsJclMFjc,11608
|
|
709
720
|
pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py,sha256=a3oj9i2RMnGj-BpDjSthDZVvAzcEyXo9cqygJ1jaVqA,14459
|
|
710
721
|
pygeai/tests/snippets/migrate/__init__.py,sha256=NPFth7aeZ8GMDzRABuEUpm83psblNy6NLdk4ECEaPs0,1326
|
|
711
722
|
pygeai/tests/snippets/migrate/agent_migration.py,sha256=xBADIh9ebuZKaXgzRedO2E-DdsyL6aWdXodDnwfMPTg,3720
|
|
712
723
|
pygeai/tests/snippets/migrate/assistant_migration.py,sha256=2HYvMvFbQxZ1VxcHUQFpmx-DuHC-3eLQj8zTU8DbFSM,2137
|
|
713
|
-
pygeai/tests/snippets/migrate/orchestrator_examples.py,sha256=
|
|
724
|
+
pygeai/tests/snippets/migrate/orchestrator_examples.py,sha256=EQNHFAjfuW9tLLrs70Rh_y0NnICNnHccKYIKyBC-X0Q,6835
|
|
714
725
|
pygeai/tests/snippets/migrate/process_migration.py,sha256=To0n6q1NN0sEr7anUv0U1f2aZeW0fBdqYqwVdCEZurw,2146
|
|
715
726
|
pygeai/tests/snippets/migrate/project_migration.py,sha256=N62oRMAc_lAhgmx8Y_gyTMGj-esSJ-ThyEzn3wZI7XE,1356
|
|
716
727
|
pygeai/tests/snippets/migrate/tool_migration.py,sha256=zUSlkO2LtyNQhE782lYvxbTX7NVg9xiwEaH4mSd-Tys,1998
|
|
@@ -787,9 +798,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
|
|
|
787
798
|
pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
|
|
788
799
|
pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
|
|
789
800
|
pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
|
|
790
|
-
pygeai-0.6.
|
|
791
|
-
pygeai-0.6.
|
|
792
|
-
pygeai-0.6.
|
|
793
|
-
pygeai-0.6.
|
|
794
|
-
pygeai-0.6.
|
|
795
|
-
pygeai-0.6.
|
|
801
|
+
pygeai-0.6.1.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
|
|
802
|
+
pygeai-0.6.1.dist-info/METADATA,sha256=ypHJsHZn_K9y_gsefyR2CJdV-TDVPGXcypqqbWBjvBs,8708
|
|
803
|
+
pygeai-0.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
804
|
+
pygeai-0.6.1.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
|
|
805
|
+
pygeai-0.6.1.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
|
|
806
|
+
pygeai-0.6.1.dist-info/RECORD,,
|