pygeai 0.6.0b13__tar.gz → 0.7.0b4__tar.gz
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-0.7.0b4/PKG-INFO +230 -0
- pygeai-0.7.0b4/README.md +191 -0
- pygeai-0.7.0b4/docs/source/content/api_reference/project.rst +1130 -0
- pygeai-0.7.0b4/docs/source/content/authentication.rst +424 -0
- pygeai-0.7.0b4/docs/source/content/debugger.rst +651 -0
- pygeai-0.7.0b4/docs/source/content/migration.rst +929 -0
- pygeai-0.7.0b4/docs/source/pygeai.core.common.rst +45 -0
- pygeai-0.7.0b4/docs/source/pygeai.tests.auth.rst +85 -0
- pygeai-0.7.0b4/docs/source/pygeai.tests.cli.rst +54 -0
- pygeai-0.7.0b4/pygeai/__init__.py +17 -0
- pygeai-0.7.0b4/pygeai/_docs/source/content/api_reference/project.rst +1130 -0
- pygeai-0.7.0b4/pygeai/_docs/source/content/authentication.rst +424 -0
- pygeai-0.7.0b4/pygeai/_docs/source/content/debugger.rst +651 -0
- pygeai-0.7.0b4/pygeai/_docs/source/content/migration.rst +929 -0
- pygeai-0.7.0b4/pygeai/_docs/source/pygeai.core.common.rst +45 -0
- pygeai-0.7.0b4/pygeai/_docs/source/pygeai.tests.auth.rst +85 -0
- pygeai-0.7.0b4/pygeai/_docs/source/pygeai.tests.cli.rst +54 -0
- pygeai-0.7.0b4/pygeai/admin/clients.py +113 -0
- pygeai-0.7.0b4/pygeai/analytics/clients.py +505 -0
- pygeai-0.7.0b4/pygeai/assistant/clients.py +246 -0
- pygeai-0.7.0b4/pygeai/assistant/data/clients.py +7 -0
- pygeai-0.7.0b4/pygeai/assistant/data_analyst/clients.py +73 -0
- pygeai-0.7.0b4/pygeai/assistant/managers.py +738 -0
- pygeai-0.7.0b4/pygeai/assistant/rag/clients.py +286 -0
- pygeai-0.7.0b4/pygeai/assistant/rag/mappers.py +226 -0
- pygeai-0.7.0b4/pygeai/auth/clients.py +148 -0
- pygeai-0.7.0b4/pygeai/auth/endpoints.py +7 -0
- pygeai-0.7.0b4/pygeai/chat/clients.py +477 -0
- pygeai-0.7.0b4/pygeai/chat/managers.py +64 -0
- pygeai-0.7.0b4/pygeai/cli/commands/admin.py +192 -0
- pygeai-0.7.0b4/pygeai/cli/commands/analytics.py +493 -0
- pygeai-0.7.0b4/pygeai/cli/commands/assistant.py +562 -0
- pygeai-0.7.0b4/pygeai/cli/commands/auth.py +276 -0
- pygeai-0.7.0b4/pygeai/cli/commands/base.py +474 -0
- pygeai-0.7.0b4/pygeai/cli/commands/chat.py +1029 -0
- pygeai-0.7.0b4/pygeai/cli/commands/common.py +407 -0
- pygeai-0.7.0b4/pygeai/cli/commands/configuration.py +185 -0
- pygeai-0.7.0b4/pygeai/cli/commands/docs.py +104 -0
- pygeai-0.7.0b4/pygeai/cli/commands/embeddings.py +181 -0
- pygeai-0.7.0b4/pygeai/cli/commands/evaluation.py +1858 -0
- pygeai-0.7.0b4/pygeai/cli/commands/feedback.py +85 -0
- pygeai-0.7.0b4/pygeai/cli/commands/files.py +285 -0
- pygeai-0.7.0b4/pygeai/cli/commands/gam.py +308 -0
- pygeai-0.7.0b4/pygeai/cli/commands/lab/ai_lab.py +4061 -0
- pygeai-0.7.0b4/pygeai/cli/commands/lab/common.py +135 -0
- pygeai-0.7.0b4/pygeai/cli/commands/lab/spec.py +253 -0
- pygeai-0.7.0b4/pygeai/cli/commands/llm.py +155 -0
- pygeai-0.7.0b4/pygeai/cli/commands/migrate.py +1141 -0
- pygeai-0.7.0b4/pygeai/cli/commands/organization.py +906 -0
- pygeai-0.7.0b4/pygeai/cli/commands/rag.py +1217 -0
- pygeai-0.7.0b4/pygeai/cli/commands/rerank.py +104 -0
- pygeai-0.7.0b4/pygeai/cli/commands/secrets.py +329 -0
- pygeai-0.7.0b4/pygeai/cli/commands/usage_limits.py +497 -0
- pygeai-0.7.0b4/pygeai/cli/commands/validators.py +209 -0
- pygeai-0.7.0b4/pygeai/cli/geai.py +253 -0
- pygeai-0.7.0b4/pygeai/cli/geai_proxy.py +322 -0
- pygeai-0.7.0b4/pygeai/cli/install_man.py +107 -0
- pygeai-0.7.0b4/pygeai/cli/parsers.py +121 -0
- pygeai-0.7.0b4/pygeai/cli/texts/help.py +878 -0
- pygeai-0.7.0b4/pygeai/core/base/clients.py +132 -0
- pygeai-0.7.0b4/pygeai/core/base/mappers.py +448 -0
- pygeai-0.7.0b4/pygeai/core/base/session.py +262 -0
- pygeai-0.7.0b4/pygeai/core/common/config.py +180 -0
- pygeai-0.7.0b4/pygeai/core/common/constants.py +8 -0
- pygeai-0.7.0b4/pygeai/core/common/exceptions.py +130 -0
- pygeai-0.7.0b4/pygeai/core/embeddings/clients.py +92 -0
- pygeai-0.7.0b4/pygeai/core/embeddings/managers.py +61 -0
- pygeai-0.7.0b4/pygeai/core/feedback/clients.py +48 -0
- pygeai-0.7.0b4/pygeai/core/feedback/models.py +10 -0
- pygeai-0.7.0b4/pygeai/core/files/clients.py +153 -0
- pygeai-0.7.0b4/pygeai/core/files/managers.py +224 -0
- pygeai-0.7.0b4/pygeai/core/files/mappers.py +43 -0
- pygeai-0.7.0b4/pygeai/core/handlers.py +45 -0
- pygeai-0.7.0b4/pygeai/core/llm/clients.py +52 -0
- pygeai-0.7.0b4/pygeai/core/models.py +799 -0
- pygeai-0.7.0b4/pygeai/core/plugins/clients.py +29 -0
- pygeai-0.7.0b4/pygeai/core/plugins/models.py +86 -0
- pygeai-0.7.0b4/pygeai/core/rerank/clients.py +33 -0
- pygeai-0.7.0b4/pygeai/core/secrets/clients.py +210 -0
- pygeai-0.7.0b4/pygeai/core/services/rest.py +490 -0
- pygeai-0.7.0b4/pygeai/core/singleton.py +34 -0
- pygeai-0.7.0b4/pygeai/core/utils/console.py +147 -0
- pygeai-0.7.0b4/pygeai/core/utils/parsers.py +53 -0
- pygeai-0.7.0b4/pygeai/dbg/__init__.py +3 -0
- pygeai-0.7.0b4/pygeai/dbg/debugger.py +875 -0
- pygeai-0.7.0b4/pygeai/evaluation/clients.py +17 -0
- pygeai-0.7.0b4/pygeai/evaluation/dataset/clients.py +513 -0
- pygeai-0.7.0b4/pygeai/evaluation/plan/clients.py +300 -0
- pygeai-0.7.0b4/pygeai/evaluation/result/clients.py +68 -0
- pygeai-0.7.0b4/pygeai/gam/clients.py +176 -0
- pygeai-0.7.0b4/pygeai/health/clients.py +22 -0
- pygeai-0.7.0b4/pygeai/lab/clients.py +23 -0
- pygeai-0.7.0b4/pygeai/lab/managers.py +1557 -0
- pygeai-0.7.0b4/pygeai/lab/models.py +1718 -0
- pygeai-0.7.0b4/pygeai/lab/processes/endpoints.py +26 -0
- pygeai-0.7.0b4/pygeai/lab/strategies/clients.py +211 -0
- pygeai-0.7.0b4/pygeai/lab/tools/clients.py +465 -0
- pygeai-0.7.0b4/pygeai/lab/tools/mappers.py +131 -0
- pygeai-0.7.0b4/pygeai/migration/strategies.py +594 -0
- pygeai-0.7.0b4/pygeai/migration/tools.py +180 -0
- pygeai-0.7.0b4/pygeai/organization/clients.py +528 -0
- pygeai-0.7.0b4/pygeai/organization/endpoints.py +18 -0
- pygeai-0.7.0b4/pygeai/organization/limits/clients.py +279 -0
- pygeai-0.7.0b4/pygeai/organization/limits/managers.py +328 -0
- pygeai-0.7.0b4/pygeai/organization/managers.py +537 -0
- pygeai-0.7.0b4/pygeai/proxy/config.py +129 -0
- pygeai-0.7.0b4/pygeai/proxy/managers.py +233 -0
- pygeai-0.7.0b4/pygeai/tests/admin/test_clients.py +148 -0
- pygeai-0.7.0b4/pygeai/tests/assistants/rag/test_clients.py +346 -0
- pygeai-0.7.0b4/pygeai/tests/assistants/rag/test_models.py +291 -0
- pygeai-0.7.0b4/pygeai/tests/assistants/test_clients.py +195 -0
- pygeai-0.7.0b4/pygeai/tests/assistants/test_managers.py +196 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_cli_configuration.py +252 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_client_initialization.py +411 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_clients.py +291 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_config_manager.py +305 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_header_injection.py +294 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_oauth.py +174 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_session_logging.py +119 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_session_validation.py +408 -0
- pygeai-0.7.0b4/pygeai/tests/auth/test_singleton_reset.py +201 -0
- pygeai-0.7.0b4/pygeai/tests/chat/test_clients.py +393 -0
- pygeai-0.7.0b4/pygeai/tests/chat/test_iris.py +38 -0
- pygeai-0.7.0b4/pygeai/tests/chat/test_streaming_json.py +436 -0
- pygeai-0.7.0b4/pygeai/tests/chat/test_ui.py +222 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/lab/test_ai_lab.py +784 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/lab/test_common.py +207 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_chat.py +130 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_common.py +349 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_embeddings.py +132 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_evaluation.py +648 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_json_parsing.py +419 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_llm.py +114 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_migrate.py +176 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_rerank.py +109 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_secrets.py +171 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_show_help.py +40 -0
- pygeai-0.7.0b4/pygeai/tests/cli/commands/test_validators.py +159 -0
- pygeai-0.7.0b4/pygeai/tests/cli/test_credentials_flag.py +312 -0
- pygeai-0.7.0b4/pygeai/tests/cli/test_error_handler.py +224 -0
- pygeai-0.7.0b4/pygeai/tests/core/base/test_mappers.py +569 -0
- pygeai-0.7.0b4/pygeai/tests/core/base/test_models.py +261 -0
- pygeai-0.7.0b4/pygeai/tests/core/common/test_config.py +181 -0
- pygeai-0.7.0b4/pygeai/tests/core/common/test_decorators.py +68 -0
- pygeai-0.7.0b4/pygeai/tests/core/embeddings/test_managers.py +171 -0
- pygeai-0.7.0b4/pygeai/tests/core/feedback/test_clients.py +64 -0
- pygeai-0.7.0b4/pygeai/tests/core/files/test_clients.py +128 -0
- pygeai-0.7.0b4/pygeai/tests/core/files/test_models.py +102 -0
- pygeai-0.7.0b4/pygeai/tests/core/files/test_responses.py +121 -0
- pygeai-0.7.0b4/pygeai/tests/core/llm/test_clients.py +142 -0
- pygeai-0.7.0b4/pygeai/tests/core/plugins/test_clients.py +66 -0
- pygeai-0.7.0b4/pygeai/tests/core/rerank/test_mappers.py +52 -0
- pygeai-0.7.0b4/pygeai/tests/core/secrets/test_clients.py +263 -0
- pygeai-0.7.0b4/pygeai/tests/core/services/test_rest.py +273 -0
- pygeai-0.7.0b4/pygeai/tests/core/utils/test_console.py +79 -0
- pygeai-0.7.0b4/pygeai/tests/core/utils/test_parsers.py +379 -0
- pygeai-0.7.0b4/pygeai/tests/dbg/test_debugger.py +593 -0
- pygeai-0.7.0b4/pygeai/tests/evaluation/dataset/test_clients.py +262 -0
- pygeai-0.7.0b4/pygeai/tests/evaluation/plan/test_clients.py +193 -0
- pygeai-0.7.0b4/pygeai/tests/evaluation/result/test_clients.py +65 -0
- pygeai-0.7.0b4/pygeai/tests/health/test_clients.py +41 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/agents/test_create_agent.py +317 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/agents/test_get_agent.py +94 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/processes/test_create_process.py +345 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/processes/test_create_task.py +210 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/processes/test_delete_process.py +110 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/processes/test_get_process.py +199 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/processes/test_list_process_instances.py +89 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/processes/test_update_process.py +283 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py +148 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/tools/test_delete_tool.py +87 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/tools/test_list_tools.py +106 -0
- pygeai-0.7.0b4/pygeai/tests/integration/lab/tools/test_update_tool.py +267 -0
- pygeai-0.7.0b4/pygeai/tests/lab/agents/test_clients.py +481 -0
- pygeai-0.7.0b4/pygeai/tests/lab/processes/test_clients.py +1416 -0
- pygeai-0.7.0b4/pygeai/tests/lab/processes/test_mappers.py +1092 -0
- pygeai-0.7.0b4/pygeai/tests/lab/spec/test_loader.py +57 -0
- pygeai-0.7.0b4/pygeai/tests/lab/spec/test_parsers.py +181 -0
- pygeai-0.7.0b4/pygeai/tests/lab/strategies/test_clients.py +241 -0
- pygeai-0.7.0b4/pygeai/tests/lab/test_managers.py +551 -0
- pygeai-0.7.0b4/pygeai/tests/lab/test_mappers.py +242 -0
- pygeai-0.7.0b4/pygeai/tests/lab/tools/test_clients.py +521 -0
- pygeai-0.7.0b4/pygeai/tests/lab/tools/test_mappers.py +197 -0
- pygeai-0.7.0b4/pygeai/tests/organization/limits/test_clients.py +567 -0
- pygeai-0.7.0b4/pygeai/tests/organization/limits/test_managers.py +402 -0
- pygeai-0.7.0b4/pygeai/tests/organization/test_clients.py +697 -0
- pygeai-0.7.0b4/pygeai/tests/proxy/test_clients.py +397 -0
- pygeai-0.7.0b4/pygeai/tests/proxy/test_integration.py +302 -0
- pygeai-0.7.0b4/pygeai/tests/proxy/test_managers.py +311 -0
- pygeai-0.7.0b4/pygeai/tests/proxy/test_servers.py +386 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/assistants/rag/delete_rag_assistant.py +7 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/assistants/rag/get_documents.py +6 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py +7 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/chat/get_request_status.py +6 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/dbg/file_debugging.py +72 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/dbg/module_debugging.py +60 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/embeddings/cohere_example.py +41 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/embeddings/openai_base64_example.py +27 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py +195 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py +136 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/evaluation/result/complete_workflow_example.py +150 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agentic_flow_example_1.py +326 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agentic_flow_example_2.py +205 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py +39 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/delete_agent.py +11 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/get_agent.py +24 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py +62 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/get_sharing_link.py +12 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/list_agents.py +18 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/publish_agent_revision.py +11 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/agents/update_agent_properties.py +50 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/crud_ui.py +460 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/processes/kbs/get_kb.py +25 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/processes/kbs/list_kbs.py +29 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/processes/list_processes.py +10 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/samples/summarize_files.py +159 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py +9 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/strategies/list_reasoning_strategies.py +16 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/tools/get_tool.py +22 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/tools/publish_tool_revision.py +12 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/tools/set_parameters.py +32 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/use_cases/c_code_fixer_agent_flow.py +237 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py +157 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/use_cases/update_cli_expert.py +1772 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/use_cases/update_lab_expert.py +4540 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/use_cases/update_web_designer.py +187 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/lab/use_cases/update_web_reader.py +194 -0
- pygeai-0.7.0b4/pygeai/tests/snippets/migrate/orchestrator_examples.py +179 -0
- pygeai-0.7.0b4/pygeai.egg-info/PKG-INFO +230 -0
- pygeai-0.7.0b4/pygeai.egg-info/SOURCES.txt +950 -0
- pygeai-0.7.0b4/pyproject.toml +41 -0
- pygeai-0.6.0b13/PKG-INFO +0 -205
- pygeai-0.6.0b13/README.md +0 -166
- pygeai-0.6.0b13/docs/source/content/api_reference/project.rst +0 -738
- pygeai-0.6.0b13/docs/source/content/authentication.rst +0 -295
- pygeai-0.6.0b13/docs/source/content/debugger.rst +0 -481
- pygeai-0.6.0b13/docs/source/content/migration.rst +0 -545
- pygeai-0.6.0b13/docs/source/pygeai.core.common.rst +0 -37
- pygeai-0.6.0b13/docs/source/pygeai.tests.auth.rst +0 -29
- pygeai-0.6.0b13/docs/source/pygeai.tests.cli.rst +0 -46
- pygeai-0.6.0b13/pygeai/__init__.py +0 -18
- pygeai-0.6.0b13/pygeai/_docs/source/content/api_reference/project.rst +0 -738
- pygeai-0.6.0b13/pygeai/_docs/source/content/authentication.rst +0 -295
- pygeai-0.6.0b13/pygeai/_docs/source/content/debugger.rst +0 -481
- pygeai-0.6.0b13/pygeai/_docs/source/content/migration.rst +0 -545
- pygeai-0.6.0b13/pygeai/_docs/source/pygeai.core.common.rst +0 -37
- pygeai-0.6.0b13/pygeai/_docs/source/pygeai.tests.auth.rst +0 -29
- pygeai-0.6.0b13/pygeai/_docs/source/pygeai.tests.cli.rst +0 -46
- pygeai-0.6.0b13/pygeai/admin/clients.py +0 -115
- pygeai-0.6.0b13/pygeai/analytics/clients.py +0 -505
- pygeai-0.6.0b13/pygeai/assistant/clients.py +0 -251
- pygeai-0.6.0b13/pygeai/assistant/data/clients.py +0 -15
- pygeai-0.6.0b13/pygeai/assistant/data_analyst/clients.py +0 -75
- pygeai-0.6.0b13/pygeai/assistant/managers.py +0 -738
- pygeai-0.6.0b13/pygeai/assistant/rag/clients.py +0 -288
- pygeai-0.6.0b13/pygeai/assistant/rag/mappers.py +0 -228
- pygeai-0.6.0b13/pygeai/auth/clients.py +0 -129
- pygeai-0.6.0b13/pygeai/auth/endpoints.py +0 -6
- pygeai-0.6.0b13/pygeai/chat/clients.py +0 -453
- pygeai-0.6.0b13/pygeai/chat/managers.py +0 -64
- pygeai-0.6.0b13/pygeai/cli/commands/admin.py +0 -204
- pygeai-0.6.0b13/pygeai/cli/commands/analytics.py +0 -525
- pygeai-0.6.0b13/pygeai/cli/commands/assistant.py +0 -616
- pygeai-0.6.0b13/pygeai/cli/commands/auth.py +0 -299
- pygeai-0.6.0b13/pygeai/cli/commands/base.py +0 -314
- pygeai-0.6.0b13/pygeai/cli/commands/chat.py +0 -1020
- pygeai-0.6.0b13/pygeai/cli/commands/common.py +0 -407
- pygeai-0.6.0b13/pygeai/cli/commands/configuration.py +0 -135
- pygeai-0.6.0b13/pygeai/cli/commands/docs.py +0 -105
- pygeai-0.6.0b13/pygeai/cli/commands/embeddings.py +0 -187
- pygeai-0.6.0b13/pygeai/cli/commands/evaluation.py +0 -2069
- pygeai-0.6.0b13/pygeai/cli/commands/feedback.py +0 -93
- pygeai-0.6.0b13/pygeai/cli/commands/files.py +0 -312
- pygeai-0.6.0b13/pygeai/cli/commands/gam.py +0 -349
- pygeai-0.6.0b13/pygeai/cli/commands/lab/ai_lab.py +0 -4107
- pygeai-0.6.0b13/pygeai/cli/commands/lab/common.py +0 -135
- pygeai-0.6.0b13/pygeai/cli/commands/lab/spec.py +0 -273
- pygeai-0.6.0b13/pygeai/cli/commands/llm.py +0 -164
- pygeai-0.6.0b13/pygeai/cli/commands/migrate.py +0 -1198
- pygeai-0.6.0b13/pygeai/cli/commands/organization.py +0 -879
- pygeai-0.6.0b13/pygeai/cli/commands/rag.py +0 -1240
- pygeai-0.6.0b13/pygeai/cli/commands/rerank.py +0 -108
- pygeai-0.6.0b13/pygeai/cli/commands/secrets.py +0 -357
- pygeai-0.6.0b13/pygeai/cli/commands/usage_limits.py +0 -583
- pygeai-0.6.0b13/pygeai/cli/commands/validators.py +0 -209
- pygeai-0.6.0b13/pygeai/cli/geai.py +0 -216
- pygeai-0.6.0b13/pygeai/cli/geai_proxy.py +0 -318
- pygeai-0.6.0b13/pygeai/cli/install_man.py +0 -107
- pygeai-0.6.0b13/pygeai/cli/parsers.py +0 -121
- pygeai-0.6.0b13/pygeai/cli/texts/help.py +0 -853
- pygeai-0.6.0b13/pygeai/core/base/clients.py +0 -63
- pygeai-0.6.0b13/pygeai/core/base/mappers.py +0 -464
- pygeai-0.6.0b13/pygeai/core/base/session.py +0 -150
- pygeai-0.6.0b13/pygeai/core/common/config.py +0 -143
- pygeai-0.6.0b13/pygeai/core/common/exceptions.py +0 -124
- pygeai-0.6.0b13/pygeai/core/embeddings/clients.py +0 -93
- pygeai-0.6.0b13/pygeai/core/embeddings/managers.py +0 -62
- pygeai-0.6.0b13/pygeai/core/feedback/clients.py +0 -50
- pygeai-0.6.0b13/pygeai/core/feedback/models.py +0 -10
- pygeai-0.6.0b13/pygeai/core/files/clients.py +0 -156
- pygeai-0.6.0b13/pygeai/core/files/managers.py +0 -224
- pygeai-0.6.0b13/pygeai/core/files/mappers.py +0 -44
- pygeai-0.6.0b13/pygeai/core/handlers.py +0 -32
- pygeai-0.6.0b13/pygeai/core/llm/clients.py +0 -53
- pygeai-0.6.0b13/pygeai/core/models.py +0 -799
- pygeai-0.6.0b13/pygeai/core/plugins/clients.py +0 -32
- pygeai-0.6.0b13/pygeai/core/plugins/models.py +0 -86
- pygeai-0.6.0b13/pygeai/core/rerank/clients.py +0 -35
- pygeai-0.6.0b13/pygeai/core/secrets/clients.py +0 -212
- pygeai-0.6.0b13/pygeai/core/services/rest.py +0 -424
- pygeai-0.6.0b13/pygeai/core/singleton.py +0 -10
- pygeai-0.6.0b13/pygeai/core/utils/console.py +0 -83
- pygeai-0.6.0b13/pygeai/core/utils/parsers.py +0 -32
- pygeai-0.6.0b13/pygeai/dbg/__init__.py +0 -3
- pygeai-0.6.0b13/pygeai/dbg/debugger.py +0 -637
- pygeai-0.6.0b13/pygeai/evaluation/clients.py +0 -19
- pygeai-0.6.0b13/pygeai/evaluation/dataset/clients.py +0 -514
- pygeai-0.6.0b13/pygeai/evaluation/plan/clients.py +0 -302
- pygeai-0.6.0b13/pygeai/evaluation/result/clients.py +0 -70
- pygeai-0.6.0b13/pygeai/gam/clients.py +0 -178
- pygeai-0.6.0b13/pygeai/health/clients.py +0 -24
- pygeai-0.6.0b13/pygeai/lab/clients.py +0 -24
- pygeai-0.6.0b13/pygeai/lab/managers.py +0 -1558
- pygeai-0.6.0b13/pygeai/lab/models.py +0 -1719
- pygeai-0.6.0b13/pygeai/lab/processes/endpoints.py +0 -26
- pygeai-0.6.0b13/pygeai/lab/strategies/clients.py +0 -212
- pygeai-0.6.0b13/pygeai/lab/tools/clients.py +0 -465
- pygeai-0.6.0b13/pygeai/lab/tools/mappers.py +0 -131
- pygeai-0.6.0b13/pygeai/migration/strategies.py +0 -603
- pygeai-0.6.0b13/pygeai/migration/tools.py +0 -180
- pygeai-0.6.0b13/pygeai/organization/clients.py +0 -422
- pygeai-0.6.0b13/pygeai/organization/endpoints.py +0 -17
- pygeai-0.6.0b13/pygeai/organization/limits/clients.py +0 -281
- pygeai-0.6.0b13/pygeai/organization/limits/managers.py +0 -331
- pygeai-0.6.0b13/pygeai/organization/managers.py +0 -537
- pygeai-0.6.0b13/pygeai/proxy/config.py +0 -128
- pygeai-0.6.0b13/pygeai/proxy/managers.py +0 -232
- pygeai-0.6.0b13/pygeai/tests/admin/test_clients.py +0 -148
- pygeai-0.6.0b13/pygeai/tests/assistants/rag/test_clients.py +0 -346
- pygeai-0.6.0b13/pygeai/tests/assistants/rag/test_models.py +0 -292
- pygeai-0.6.0b13/pygeai/tests/assistants/test_clients.py +0 -195
- pygeai-0.6.0b13/pygeai/tests/assistants/test_managers.py +0 -198
- pygeai-0.6.0b13/pygeai/tests/auth/test_clients.py +0 -289
- pygeai-0.6.0b13/pygeai/tests/auth/test_oauth.py +0 -172
- pygeai-0.6.0b13/pygeai/tests/chat/test_clients.py +0 -393
- pygeai-0.6.0b13/pygeai/tests/chat/test_iris.py +0 -38
- pygeai-0.6.0b13/pygeai/tests/chat/test_ui.py +0 -224
- pygeai-0.6.0b13/pygeai/tests/cli/commands/lab/test_ai_lab.py +0 -786
- pygeai-0.6.0b13/pygeai/tests/cli/commands/lab/test_common.py +0 -208
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_chat.py +0 -130
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_common.py +0 -350
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_embeddings.py +0 -132
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_evaluation.py +0 -656
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_llm.py +0 -114
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_migrate.py +0 -176
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_rerank.py +0 -110
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_secrets.py +0 -171
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_show_help.py +0 -41
- pygeai-0.6.0b13/pygeai/tests/cli/commands/test_validators.py +0 -160
- pygeai-0.6.0b13/pygeai/tests/cli/test_error_handler.py +0 -225
- pygeai-0.6.0b13/pygeai/tests/core/base/test_mappers.py +0 -569
- pygeai-0.6.0b13/pygeai/tests/core/base/test_models.py +0 -261
- pygeai-0.6.0b13/pygeai/tests/core/common/test_config.py +0 -186
- pygeai-0.6.0b13/pygeai/tests/core/common/test_decorators.py +0 -69
- pygeai-0.6.0b13/pygeai/tests/core/embeddings/test_managers.py +0 -171
- pygeai-0.6.0b13/pygeai/tests/core/feedback/test_clients.py +0 -64
- pygeai-0.6.0b13/pygeai/tests/core/files/test_clients.py +0 -128
- pygeai-0.6.0b13/pygeai/tests/core/files/test_models.py +0 -103
- pygeai-0.6.0b13/pygeai/tests/core/files/test_responses.py +0 -122
- pygeai-0.6.0b13/pygeai/tests/core/llm/test_clients.py +0 -142
- pygeai-0.6.0b13/pygeai/tests/core/plugins/test_clients.py +0 -66
- pygeai-0.6.0b13/pygeai/tests/core/rerank/test_mappers.py +0 -54
- pygeai-0.6.0b13/pygeai/tests/core/secrets/test_clients.py +0 -264
- pygeai-0.6.0b13/pygeai/tests/core/services/test_rest.py +0 -273
- pygeai-0.6.0b13/pygeai/tests/core/utils/test_console.py +0 -80
- pygeai-0.6.0b13/pygeai/tests/dbg/test_debugger.py +0 -506
- pygeai-0.6.0b13/pygeai/tests/evaluation/dataset/test_clients.py +0 -265
- pygeai-0.6.0b13/pygeai/tests/evaluation/plan/test_clients.py +0 -195
- pygeai-0.6.0b13/pygeai/tests/evaluation/result/test_clients.py +0 -66
- pygeai-0.6.0b13/pygeai/tests/health/test_clients.py +0 -41
- pygeai-0.6.0b13/pygeai/tests/integration/lab/agents/test_create_agent.py +0 -319
- pygeai-0.6.0b13/pygeai/tests/integration/lab/agents/test_get_agent.py +0 -94
- pygeai-0.6.0b13/pygeai/tests/integration/lab/processes/test_create_process.py +0 -345
- pygeai-0.6.0b13/pygeai/tests/integration/lab/processes/test_create_task.py +0 -211
- pygeai-0.6.0b13/pygeai/tests/integration/lab/processes/test_delete_process.py +0 -111
- pygeai-0.6.0b13/pygeai/tests/integration/lab/processes/test_get_process.py +0 -201
- pygeai-0.6.0b13/pygeai/tests/integration/lab/processes/test_list_process_instances.py +0 -91
- pygeai-0.6.0b13/pygeai/tests/integration/lab/processes/test_update_process.py +0 -289
- pygeai-0.6.0b13/pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py +0 -149
- pygeai-0.6.0b13/pygeai/tests/integration/lab/tools/test_delete_tool.py +0 -87
- pygeai-0.6.0b13/pygeai/tests/integration/lab/tools/test_list_tools.py +0 -106
- pygeai-0.6.0b13/pygeai/tests/integration/lab/tools/test_update_tool.py +0 -267
- pygeai-0.6.0b13/pygeai/tests/lab/agents/test_clients.py +0 -481
- pygeai-0.6.0b13/pygeai/tests/lab/processes/test_clients.py +0 -1416
- pygeai-0.6.0b13/pygeai/tests/lab/processes/test_mappers.py +0 -1092
- pygeai-0.6.0b13/pygeai/tests/lab/spec/test_loader.py +0 -59
- pygeai-0.6.0b13/pygeai/tests/lab/spec/test_parsers.py +0 -182
- pygeai-0.6.0b13/pygeai/tests/lab/strategies/test_clients.py +0 -241
- pygeai-0.6.0b13/pygeai/tests/lab/test_managers.py +0 -553
- pygeai-0.6.0b13/pygeai/tests/lab/test_mappers.py +0 -245
- pygeai-0.6.0b13/pygeai/tests/lab/tools/test_clients.py +0 -521
- pygeai-0.6.0b13/pygeai/tests/lab/tools/test_mappers.py +0 -198
- pygeai-0.6.0b13/pygeai/tests/organization/limits/test_clients.py +0 -567
- pygeai-0.6.0b13/pygeai/tests/organization/limits/test_managers.py +0 -402
- pygeai-0.6.0b13/pygeai/tests/organization/test_clients.py +0 -679
- pygeai-0.6.0b13/pygeai/tests/proxy/test_clients.py +0 -397
- pygeai-0.6.0b13/pygeai/tests/proxy/test_integration.py +0 -305
- pygeai-0.6.0b13/pygeai/tests/proxy/test_managers.py +0 -312
- pygeai-0.6.0b13/pygeai/tests/proxy/test_servers.py +0 -387
- pygeai-0.6.0b13/pygeai/tests/snippets/assistants/rag/delete_rag_assistant.py +0 -8
- pygeai-0.6.0b13/pygeai/tests/snippets/assistants/rag/get_documents.py +0 -7
- pygeai-0.6.0b13/pygeai/tests/snippets/assistants/rag/get_rag_assistant_data.py +0 -8
- pygeai-0.6.0b13/pygeai/tests/snippets/chat/get_request_status.py +0 -7
- pygeai-0.6.0b13/pygeai/tests/snippets/embeddings/cohere_example.py +0 -41
- pygeai-0.6.0b13/pygeai/tests/snippets/embeddings/openai_base64_example.py +0 -27
- pygeai-0.6.0b13/pygeai/tests/snippets/evaluation/dataset/complete_workflow_example.py +0 -195
- pygeai-0.6.0b13/pygeai/tests/snippets/evaluation/plan/complete_workflow_example.py +0 -136
- pygeai-0.6.0b13/pygeai/tests/snippets/evaluation/result/complete_workflow_example.py +0 -150
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agentic_flow_example_1.py +0 -326
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agentic_flow_example_2.py +0 -206
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py +0 -39
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/delete_agent.py +0 -12
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/get_agent.py +0 -24
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py +0 -62
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/get_sharing_link.py +0 -13
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/list_agents.py +0 -18
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/publish_agent_revision.py +0 -12
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/agents/update_agent_properties.py +0 -50
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/crud_ui.py +0 -462
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/processes/kbs/get_kb.py +0 -26
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/processes/kbs/list_kbs.py +0 -30
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/processes/list_processes.py +0 -10
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/samples/summarize_files.py +0 -162
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/strategies/get_reasoning_strategy.py +0 -10
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/strategies/list_reasoning_strategies.py +0 -16
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/tools/get_tool.py +0 -22
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/tools/publish_tool_revision.py +0 -13
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/tools/set_parameters.py +0 -33
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/use_cases/c_code_fixer_agent_flow.py +0 -238
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/use_cases/file_summarizer_example_2.py +0 -157
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/use_cases/update_cli_expert.py +0 -1773
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/use_cases/update_lab_expert.py +0 -4541
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/use_cases/update_web_designer.py +0 -188
- pygeai-0.6.0b13/pygeai/tests/snippets/lab/use_cases/update_web_reader.py +0 -195
- pygeai-0.6.0b13/pygeai/tests/snippets/migrate/orchestrator_examples.py +0 -179
- pygeai-0.6.0b13/pygeai.egg-info/PKG-INFO +0 -205
- pygeai-0.6.0b13/pygeai.egg-info/SOURCES.txt +0 -936
- pygeai-0.6.0b13/pyproject.toml +0 -41
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/LICENSE +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/MANIFEST.in +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/Makefile +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/geai-proxy/README.md +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/make.bat +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/conf.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/ai_lab/cli.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/ai_lab/models.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/ai_lab/runner.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/ai_lab/spec.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/ai_lab/usage.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/ai_lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/analytics.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/admin.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/assistant.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/auth.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/embeddings.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/evaluation.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/feedback.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/files.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/gam.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/health.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/proxy.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/rerank.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/secrets.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference/usage_limits.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/api_reference.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/chat_gui.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/cli.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/intro.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/modules.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/quickstart.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/content/samples.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/index.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/modules.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.admin.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.analytics.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.assistant.data.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.assistant.data_analyst.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.assistant.rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.assistant.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.auth.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.cli.commands.flows.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.cli.commands.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.cli.commands.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.cli.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.cli.texts.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.base.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.embeddings.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.feedback.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.files.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.llm.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.plugins.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.rerank.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.secrets.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.services.llm.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.services.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.core.utils.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.dbg.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.evaluation.dataset.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.evaluation.plan.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.evaluation.result.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.evaluation.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.flows.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.gam.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.health.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.lab.agents.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.lab.processes.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.lab.spec.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.lab.strategies.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.lab.tools.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.man.man1.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.man.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.migration.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.organization.limits.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.organization.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.proxy.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.admin.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.analytics.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.assistants.rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.assistants.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.cli.commands.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.cli.commands.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.cli.docker.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.base.data.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.base.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.common.data.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.common.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.embeddings.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.feedback.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.files.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.llm.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.plugins.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.rerank.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.secrets.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.services.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.core.utils.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.dbg.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.evaluation.dataset.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.evaluation.plan.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.evaluation.result.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.evaluation.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.gam.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.health.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.assistants.rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.assistants.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.lab.agents.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.lab.processes.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.lab.tools.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.integration.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.lab.agents.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.lab.processes.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.lab.spec.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.lab.strategies.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.lab.tools.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.migration.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.organization.limits.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.organization.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.proxy.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/docs/source/pygeai.tests.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/Makefile +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/make.bat +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/conf.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/ai_lab/cli.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/ai_lab/models.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/ai_lab/runner.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/ai_lab/spec.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/ai_lab/usage.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/ai_lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/analytics.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/admin.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/assistant.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/auth.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/embeddings.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/evaluation.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/feedback.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/files.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/gam.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/health.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/proxy.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/rerank.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/secrets.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference/usage_limits.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/api_reference.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/chat_gui.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/cli.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/intro.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/modules.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/quickstart.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/content/samples.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/index.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/modules.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.admin.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.analytics.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.assistant.data.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.assistant.data_analyst.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.assistant.rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.assistant.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.auth.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.cli.commands.flows.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.cli.commands.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.cli.commands.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.cli.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.cli.texts.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.base.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.embeddings.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.feedback.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.files.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.llm.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.plugins.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.rerank.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.secrets.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.services.llm.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.services.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.core.utils.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.dbg.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.evaluation.dataset.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.evaluation.plan.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.evaluation.result.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.evaluation.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.flows.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.gam.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.health.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.lab.agents.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.lab.processes.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.lab.spec.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.lab.strategies.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.lab.tools.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.man.man1.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.man.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.migration.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.organization.limits.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.organization.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.proxy.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.admin.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.analytics.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.assistants.rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.assistants.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.cli.commands.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.cli.docker.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.base.data.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.base.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.common.data.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.common.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.embeddings.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.feedback.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.files.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.llm.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.plugins.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.rerank.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.secrets.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.services.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.core.utils.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.dbg.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.evaluation.dataset.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.evaluation.plan.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.evaluation.result.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.evaluation.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.gam.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.health.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.assistants.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.chat.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.integration.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.lab.agents.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.lab.processes.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.lab.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.lab.spec.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.lab.strategies.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.lab.tools.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.migration.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.organization.limits.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.organization.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.proxy.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/_docs/source/pygeai.tests.rst +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/admin/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/admin/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/analytics/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/analytics/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/analytics/managers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/analytics/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/analytics/responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/data/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/data_analyst/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/data_analyst/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/rag/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/rag/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/rag/models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/assistant/rag/responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/auth/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/chat/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/chat/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/chat/iris.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/chat/session.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/chat/settings.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/chat/ui.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/__main__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/builders.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/flows/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/lab/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/lab/options.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/lab/utils.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/options.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/commands/version.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/error_handler.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/cli/texts/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/base/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/base/models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/base/responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/common/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/common/decorators.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/embeddings/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/embeddings/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/embeddings/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/embeddings/models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/embeddings/responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/feedback/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/feedback/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/files/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/files/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/files/models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/files/responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/llm/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/llm/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/plugins/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/plugins/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/rerank/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/rerank/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/rerank/managers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/rerank/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/rerank/models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/secrets/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/secrets/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/services/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/services/llm/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/services/llm/model.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/services/llm/providers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/services/response.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/utils/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/core/utils/validators.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/evaluation/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/evaluation/dataset/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/evaluation/dataset/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/evaluation/plan/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/evaluation/plan/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/evaluation/result/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/evaluation/result/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/flows/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/flows/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/flows/models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/gam/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/gam/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/health/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/health/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/agents/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/agents/clients.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/agents/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/agents/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/constants.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/processes/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/processes/clients.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/processes/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/runners.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/spec/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/spec/loader.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/spec/parsers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/strategies/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/strategies/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/strategies/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/tools/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/lab/tools/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/man/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/man/man1/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/man/man1/geai-proxy.1 +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/man/man1/geai.1 +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/migration/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/organization/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/organization/limits/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/organization/limits/endpoints.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/organization/limits/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/organization/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/organization/responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/proxy/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/proxy/clients.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/proxy/servers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/proxy/tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/admin/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/analytics/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/analytics/test_clients.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/analytics/test_managers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/analytics/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/analytics/test_responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/assistants/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/assistants/rag/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/assistants/rag/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/assistants/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/auth/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/chat/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/chat/test_session.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/lab/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/lab/test_spec.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_assistant.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_feedback.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_files.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_gam.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_organization.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_rag.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_usage_limits.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/commands/test_version.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/docker/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/test_geai_driver.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/cli/test_parsers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/base/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/base/data/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/base/data/mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/base/data/models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/base/test_responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/common/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/common/data/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/embeddings/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/embeddings/test_clients.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/embeddings/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/feedback/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/files/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/files/test_managers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/files/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/llm/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/plugins/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/rerank/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/rerank/test_clients.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/rerank/test_managers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/secrets/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/services/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/test_handlers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/core/utils/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/dbg/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/evaluation/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/evaluation/dataset/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/evaluation/plan/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/evaluation/result/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/gam/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/gam/test_clients.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/health/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/assistants/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/assistants/rag/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/assistants/rag/test_create_rag.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/chat/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/chat/test_generate_image.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/agents/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/agents/test_agents_list.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/agents/test_create_sharing_link.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/agents/test_delete_agent.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/agents/test_publish_agent_revision.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/agents/test_update_agent.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/processes/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/processes/test_list_processes.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/processes/test_publish_process_revision.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/reasoning_strategies/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/tools/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/tools/test_create_tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/tools/test_get_parameter.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/tools/test_get_tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/tools/test_publish_tool_revision.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/integration/lab/tools/test_set_parameter.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/agents/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/agents/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/processes/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/spec/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/strategies/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/strategies/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/test_models.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/lab/tools/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/migration/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/migration/test_strategies.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/migration/test_tools.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/organization/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/organization/limits/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/organization/test_managers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/organization/test_mappers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/organization/test_responses.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/proxy/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/proxy/test_config.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/proxy/test_tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_agent_usage_per_user.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_agents_created_and_modified.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_average_cost_per_request.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_overall_error_rate.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_top_10_agents_by_requests.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_total_active_users.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_total_cost.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_total_requests_per_day.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/analytics/get_total_tokens.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/create_chat_assistant.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/create_text_assistant.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/data_analyst/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/data_analyst/extend_and_check.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/data_analyst/extend_dataset.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/data_analyst/get_status.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/file_summarizer_assistant.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/get_assistant_data.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/get_assistant_list.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/rag/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/rag/create_rag_assistant.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/rag/delete_al_documents.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/rag/delete_document.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/rag/get_document.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/rag/update_rag_assistant.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/rag/upload_document.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/send_feedback.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/assistants/update_chat_assistant.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/auth/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/cancel_request.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/chat_completion.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/chat_completion_1.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/chat_completion_2.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/chat_completion_3.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/chat_completion_4.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/chat_completion_streaming.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/chat_completion_with_reasoning_effort.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_complete_example.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_streaming.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_files.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_instructions.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_metadata.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_parallel_tools.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_reasoning.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_store.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_tools.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/get_response_with_truncation.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/chat/send_chat_request.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/dbg/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/dbg/basic_debugging.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/dbg/breakpoint_management.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/dbg/stack_navigation.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/dbg/stepping_example.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/embeddings/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/embeddings/cache_example.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/embeddings/generate_embeddings.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/embeddings/openai_example.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/embeddings/similarity_example.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/create_dataset.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/create_dataset_from_file.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/create_dataset_row.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/create_expected_source.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/create_filter_variable.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/delete_dataset.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/delete_dataset_row.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/delete_expected_source.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/delete_filter_variable.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/get_dataset.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/get_dataset_row.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/get_expected_source.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/get_filter_variable.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/list_dataset_rows.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/list_datasets.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/list_expected_sources.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/list_filter_variables.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/update_dataset.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/update_dataset_row.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/update_expected_source.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/update_filter_variable.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/dataset/upload_dataset_rows_file.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/add_plan_system_metric.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/create_evaluation_plan.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/create_rag_evaluation_plan.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/delete_evaluation_plan.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/delete_plan_system_metric.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/execute_evaluation_plan.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/get_evaluation_plan.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/get_plan_system_metric.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/get_system_metric.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/list_evaluation_plans.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/list_plan_system_metrics.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/list_system_metrics.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/update_evaluation_plan.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/plan/update_plan_system_metric.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/result/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/result/get_evaluation_result.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/evaluation/result/list_evaluation_results.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/files/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/files/delete_file.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/files/get_file_content.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/files/get_file_data.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/files/get_file_list.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/files/upload_file.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/gam/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/gam/gam_access_token.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agentic_flow_example_3.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agentic_flow_example_4.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agents/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agents/create_agent.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agents/create_agent_2.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agents/create_agent_edge_case.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agents/create_agent_with_properties.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agents/create_agent_without_instructions.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/agents/update_agent.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/assistant_to_agent.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/create_process.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/create_task.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/jobs/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/jobs/list_jobs.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/kbs/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/kbs/create_kb.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/processes/kbs/try_all.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/runner_1.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/samples/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/strategies/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/strategies/create_reasoning_strategy.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/strategies/update_reasoning_strategy.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/tools/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/tools/create_tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/tools/create_tool_edge_case.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/tools/delete_tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/tools/get_parameter.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/tools/list_tools.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/tools/update_tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/create_cli_expert.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/create_lab_expert.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/create_tool_headless_web_browser.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/create_web_designer.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/create_web_reader.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/file_summarizer_example.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/lab/use_cases/update_web_reader_with_tool.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/migrate/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/migrate/agent_migration.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/migrate/assistant_migration.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/migrate/process_migration.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/migrate/project_migration.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/migrate/tool_migration.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/add_project_member.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/add_project_member_batch.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/create_project.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/delete_project.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/export_request_data.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_memberships.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_organization_members.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_project_data.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_project_list.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_project_members.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_project_memberships.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_project_roles.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/get_project_tokens.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/organization/update_project.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/rerank/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/rerank/rerank_chunks.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/secrets/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/delete_usage_limit.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/get_all_usage_limit_from_organization.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/get_usage_limit_from_organization.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/get_usage_limit_from_project.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/set_usage_limit_organization.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/set_usage_limit_project.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/update_usage_limit_organization.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/tests/snippets/usage_limit/update_usage_limit_project.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/auth/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/auth/user.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/client/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/client/client.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/client/errors.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/client/helpers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/py.typed +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/agent_execution/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/agent_execution/agent_executor.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/agent_execution/context.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/agent_execution/request_context_builder.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/agent_execution/simple_request_context_builder.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/apps/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/apps/jsonrpc/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/apps/jsonrpc/fastapi_app.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/apps/jsonrpc/jsonrpc_app.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/apps/jsonrpc/starlette_app.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/context.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/events/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/events/event_consumer.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/events/event_queue.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/events/in_memory_queue_manager.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/events/queue_manager.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/request_handlers/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/request_handlers/default_request_handler.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/request_handlers/jsonrpc_handler.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/request_handlers/request_handler.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/request_handlers/response_helpers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/inmemory_push_notifier.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/inmemory_task_store.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/push_notifier.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/result_aggregator.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/task_manager.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/task_store.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/server/tasks/task_updater.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/types.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/utils/__init__.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/utils/artifact.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/utils/errors.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/utils/helpers.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/utils/message.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/utils/task.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai/vendor/a2a/utils/telemetry.py +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai.egg-info/dependency_links.txt +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai.egg-info/entry_points.txt +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai.egg-info/requires.txt +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/pygeai.egg-info/top_level.txt +0 -0
- {pygeai-0.6.0b13 → pygeai-0.7.0b4}/setup.cfg +0 -0
pygeai-0.7.0b4/PKG-INFO
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pygeai
|
|
3
|
+
Version: 0.7.0b4
|
|
4
|
+
Summary: Software Development Kit to interact with Globant Enterprise AI.
|
|
5
|
+
Author-email: Globant <geai-sdk@globant.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: geai,pygeai
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Requires-Dist: requests
|
|
18
|
+
Requires-Dist: pydantic>=2.11.3
|
|
19
|
+
Requires-Dist: packaging
|
|
20
|
+
Requires-Dist: mcp
|
|
21
|
+
Requires-Dist: pyyaml
|
|
22
|
+
Requires-Dist: prompt_toolkit
|
|
23
|
+
Requires-Dist: toml
|
|
24
|
+
Requires-Dist: httpx==0.28.1
|
|
25
|
+
Requires-Dist: httpx-sse>=0.4.0
|
|
26
|
+
Requires-Dist: opentelemetry-api>=1.33.0
|
|
27
|
+
Requires-Dist: opentelemetry-sdk>=1.33.0
|
|
28
|
+
Requires-Dist: sse-starlette>=2.3.3
|
|
29
|
+
Requires-Dist: starlette>=0.46.2
|
|
30
|
+
Requires-Dist: typing-extensions>=4.13.2
|
|
31
|
+
Requires-Dist: streamlit
|
|
32
|
+
Provides-Extra: docs
|
|
33
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
34
|
+
Requires-Dist: sphinx-rtd-theme; extra == "docs"
|
|
35
|
+
Requires-Dist: sphinx-markdown-builder; extra == "docs"
|
|
36
|
+
Provides-Extra: tests
|
|
37
|
+
Requires-Dist: coverage; extra == "tests"
|
|
38
|
+
Dynamic: license-file
|
|
39
|
+
|
|
40
|
+
# PyGEAI - SDK for Globant Enterprise AI
|
|
41
|
+
|
|
42
|
+
PyGEAI is a Software Development Kit (SDK) for interacting with [Globant Enterprise AI](https://wiki.genexus.com/enterprise-ai/wiki?8,Table+of+contents%3AEnterprise+AI). It comprises libraries, tools, code samples, and documentation to simplify your experience with the platform.
|
|
43
|
+
|
|
44
|
+
## Terms and conditions
|
|
45
|
+
|
|
46
|
+
By using the Python SDK to interact with Globant Enterprise AI, you agree with the following Terms and Conditions:
|
|
47
|
+
|
|
48
|
+
[Terms and Conditions](https://www.globant.com/enterprise-ai/terms-of-use)
|
|
49
|
+
|
|
50
|
+
## Compatibility
|
|
51
|
+
This package is compatible with the Globant Enterprise AI release from January 2026.
|
|
52
|
+
|
|
53
|
+
## Configuration
|
|
54
|
+
|
|
55
|
+
The SDK supports two authentication methods: **API Key** authentication and **OAuth 2.0** authentication.
|
|
56
|
+
|
|
57
|
+
### API Key Authentication
|
|
58
|
+
|
|
59
|
+
Before using the SDK with API Key authentication, you need to define `GEAI_API_KEY` and `GEAI_API_BASE_URL`. You can achieve this in three ways:
|
|
60
|
+
|
|
61
|
+
* **Environment variables:** Set `GEAI_API_KEY` and `GEAI_API_BASE_URL` as environment variables in your operating system.
|
|
62
|
+
* **Credentials file:** Create a file named credentials in the `.geai` directory within your user home directory (`$USER_HOME/.geai/credentials`) and define `GEAI_API_KEY` and `GEAI_API_BASE_URL` within this file.
|
|
63
|
+
* **Client instantiation:** Specify the `api_key` and `base_url` parameters directly when creating an instance of a client class.
|
|
64
|
+
|
|
65
|
+
### OAuth 2.0 Authentication
|
|
66
|
+
|
|
67
|
+
For OAuth 2.0 authentication, you need to define:
|
|
68
|
+
|
|
69
|
+
* `GEAI_OAUTH_ACCESS_TOKEN` - Your OAuth 2.0 access token
|
|
70
|
+
* `GEAI_PROJECT_ID` - Your project ID (required with OAuth)
|
|
71
|
+
* `GEAI_API_BASE_URL` - Base URL for the API
|
|
72
|
+
* `GEAI_ORGANIZATION_ID` - (Optional) Your organization ID
|
|
73
|
+
|
|
74
|
+
These can be configured via environment variables, credentials file, or client instantiation.
|
|
75
|
+
|
|
76
|
+
**Note:** If you plan to use the [Evaluation Module](https://wiki.genexus.com/enterprise-ai/wiki?896,Evaluation), you must also define `GEAI_API_EVAL_URL`
|
|
77
|
+
|
|
78
|
+
### Credentials file
|
|
79
|
+
The credentials file is organized via profiles (aliases), so one can interact with different instances of Globant Enterprise AI by just
|
|
80
|
+
referencing which profile one wishes to use. This also applies to different levels of permissions.
|
|
81
|
+
|
|
82
|
+
The structure of the credentials file is as follows:
|
|
83
|
+
|
|
84
|
+
**API Key Authentication:**
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
[default]
|
|
88
|
+
geai_api_key = <API_TOKEN>
|
|
89
|
+
geai_api_base_url = <GEAI_BASE_URL>
|
|
90
|
+
geai_api_eval_url = <GEAI_EVALUATION_MODULE_URL>
|
|
91
|
+
|
|
92
|
+
[production]
|
|
93
|
+
geai_api_key = <API_TOKEN>
|
|
94
|
+
geai_api_base_url = <GEAI_BASE_URL>
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
**OAuth 2.0 Authentication:**
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
[oauth-profile]
|
|
101
|
+
geai_oauth_access_token = <OAUTH_ACCESS_TOKEN>
|
|
102
|
+
geai_project_id = <PROJECT_ID>
|
|
103
|
+
geai_api_base_url = <GEAI_BASE_URL>
|
|
104
|
+
geai_organization_id = <ORGANIZATION_ID> # Optional
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
After setting the profiles, one can use them with the --alias option, for example:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
geai --alias test llm list-providers
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## Modules
|
|
114
|
+
|
|
115
|
+
The SDK consists of several modules, all accessible through a single package `pygeai`:
|
|
116
|
+
|
|
117
|
+
- **`pygeai`**: The package encapsulates all components of the SDK.
|
|
118
|
+
- **`admin`**: Allows the user to interact with some of the administration endpoints of Globant Enterprise AI.
|
|
119
|
+
- **`assistant`**: This module handles interactions with various Assistants, including [Data Analyst Assistants](https://wiki.genexus.com/enterprise-ai/wiki?886,Data+Analyst+Assistant+2.0), [RAG Assistants](https://wiki.genexus.com/enterprise-ai/wiki?44,RAG+Assistants+Introduction), [Chat with Data Assistants](https://wiki.genexus.com/enterprise-ai/wiki?159,Chat+with+Data+Assistant), [Chat with API Assistants](https://wiki.genexus.com/enterprise-ai/wiki?110,API+Assistant), and [Chat Assistants](https://wiki.genexus.com/enterprise-ai/wiki?708,Chat+Assistant [soon to be deprecated]).
|
|
120
|
+
- **`chat`**: This module offers facilities to chat with assistants/agents created in Globant Enterprise AI.
|
|
121
|
+
- **`core`**: This module handles interactions with the fundamental components of Globant Enterprise.
|
|
122
|
+
- **`cli`**: This module provides a command-line tool for interacting with the SDK.
|
|
123
|
+
- **`dbg`**: This module includes a debugger to troubleshoot potential SDK issues and gain detailed insights into its operations.
|
|
124
|
+
- **`evaluation`**: This module provides functionality for the evaluation module.
|
|
125
|
+
- **`flows`**: This module enables interactions with [Flows](https://wiki.genexus.com/enterprise-ai/wiki?321,Flows+in+Globant+Enterprise+AI) [in development].
|
|
126
|
+
- **`gam`**: This module allows interaction with [GAM] (https://wiki.genexus.com/commwiki/wiki?24746,Table+of+contents%3AGeneXus+Access+Manager+%28GAM%29,).
|
|
127
|
+
- **`health`**: Provides an easy way to check the status of the Globant Enterprise AI instance one is using.
|
|
128
|
+
- **`lab`**: This module facilitates interactions with [The Lab] (https://docs.globant.ai/en/wiki?1671,The+Lab).
|
|
129
|
+
- **`organization`**: This module facilitates interactions with Organizations and [Projects](https://wiki.genexus.com/enterprise-ai/wiki?565,Projects) in Globant Enterprise AI.
|
|
130
|
+
- **`migration`**: This module provides functionality to migrate Agents, Tools and Projects between instances and organizations.
|
|
131
|
+
- **`proxy`**: This module handles [integrations with MCP and A2A] (https://docs.globant.ai/en/wiki?1179,Importing+Tools+using+MCP+and+A2A+Servers).
|
|
132
|
+
|
|
133
|
+
## Usage
|
|
134
|
+
|
|
135
|
+
### Install PyGEAI
|
|
136
|
+
Use pip to install the package from PyPI:
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
(venv) ~$ pip install pygeai
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
To install pre-release versions, you can run:
|
|
143
|
+
```
|
|
144
|
+
(venv) ~$ pip install --pre pygeai
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
### Verify installation
|
|
148
|
+
To check the installed PyGEAI version, run:
|
|
149
|
+
|
|
150
|
+
```
|
|
151
|
+
(venv) ~$ geai v
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
### View help
|
|
155
|
+
|
|
156
|
+
To access the general help menu:
|
|
157
|
+
|
|
158
|
+
```
|
|
159
|
+
(venv) ~$ geai h
|
|
160
|
+
```
|
|
161
|
+
To view help for a specific command:
|
|
162
|
+
|
|
163
|
+
```
|
|
164
|
+
(venv) ~$ geai <command> h
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### Debugger
|
|
168
|
+
|
|
169
|
+
The `pygeai-dbg` package provides a command-line debugger (`geai-dbg`) for troubleshooting and inspecting the `geai` CLI.
|
|
170
|
+
It pauses execution at breakpoints, allowing you to inspect variables, execute Python code, and control program flow interactively.
|
|
171
|
+
|
|
172
|
+
To debug a `geai` command, replace `geai` with `geai-dbg`. For example:
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
(venv) ~$ geai-dbg ail lrs
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
This pauses at the `main` function in `pygeai.cli.geai`, displaying an interactive prompt `(geai-dbg)`.
|
|
179
|
+
You can then use commands like `continue` (resume), `run` (run without pauses), `quit` (exit), or `help` (list commands).
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Man Pages Documentation
|
|
183
|
+
|
|
184
|
+
The package includes Unix manual pages (man pages) for detailed command-line documentation.
|
|
185
|
+
|
|
186
|
+
To install man pages locally:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
geai-install-man
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
To install man pages system-wide:
|
|
193
|
+
|
|
194
|
+
```bash
|
|
195
|
+
sudo geai-install-man --system
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
To access the man pages:
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
man geai
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
#### Setting up Man Pages Access
|
|
205
|
+
|
|
206
|
+
If you're using a virtual environment, you'll need to configure your system to find the man pages. Add the following to your shell configuration file (`.bashrc`, `.zshrc`, etc.):
|
|
207
|
+
|
|
208
|
+
```bash
|
|
209
|
+
# For macOS
|
|
210
|
+
if [ -n "$VIRTUAL_ENV" ]; then
|
|
211
|
+
export MANPATH="$VIRTUAL_ENV/share/man:$MANPATH"
|
|
212
|
+
fi
|
|
213
|
+
|
|
214
|
+
# For Linux
|
|
215
|
+
if [ -n "$VIRTUAL_ENV" ]; then
|
|
216
|
+
export MANPATH="$VIRTUAL_ENV/man:$MANPATH"
|
|
217
|
+
fi
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
After adding this configuration:
|
|
221
|
+
1. Reload your shell configuration: `source ~/.bashrc` or `source ~/.zshrc`
|
|
222
|
+
2. The man pages will be available when your virtual environment is active
|
|
223
|
+
|
|
224
|
+
## Bugs and suggestions
|
|
225
|
+
To report any bug, request features or make any suggestions, the following email is available:
|
|
226
|
+
|
|
227
|
+
<geai-sdk@globant.com>
|
|
228
|
+
|
|
229
|
+
## Authors
|
|
230
|
+
Copyright 2025, Globant. All rights reserved
|
pygeai-0.7.0b4/README.md
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# PyGEAI - SDK for Globant Enterprise AI
|
|
2
|
+
|
|
3
|
+
PyGEAI is a Software Development Kit (SDK) for interacting with [Globant Enterprise AI](https://wiki.genexus.com/enterprise-ai/wiki?8,Table+of+contents%3AEnterprise+AI). It comprises libraries, tools, code samples, and documentation to simplify your experience with the platform.
|
|
4
|
+
|
|
5
|
+
## Terms and conditions
|
|
6
|
+
|
|
7
|
+
By using the Python SDK to interact with Globant Enterprise AI, you agree with the following Terms and Conditions:
|
|
8
|
+
|
|
9
|
+
[Terms and Conditions](https://www.globant.com/enterprise-ai/terms-of-use)
|
|
10
|
+
|
|
11
|
+
## Compatibility
|
|
12
|
+
This package is compatible with the Globant Enterprise AI release from January 2026.
|
|
13
|
+
|
|
14
|
+
## Configuration
|
|
15
|
+
|
|
16
|
+
The SDK supports two authentication methods: **API Key** authentication and **OAuth 2.0** authentication.
|
|
17
|
+
|
|
18
|
+
### API Key Authentication
|
|
19
|
+
|
|
20
|
+
Before using the SDK with API Key authentication, you need to define `GEAI_API_KEY` and `GEAI_API_BASE_URL`. You can achieve this in three ways:
|
|
21
|
+
|
|
22
|
+
* **Environment variables:** Set `GEAI_API_KEY` and `GEAI_API_BASE_URL` as environment variables in your operating system.
|
|
23
|
+
* **Credentials file:** Create a file named credentials in the `.geai` directory within your user home directory (`$USER_HOME/.geai/credentials`) and define `GEAI_API_KEY` and `GEAI_API_BASE_URL` within this file.
|
|
24
|
+
* **Client instantiation:** Specify the `api_key` and `base_url` parameters directly when creating an instance of a client class.
|
|
25
|
+
|
|
26
|
+
### OAuth 2.0 Authentication
|
|
27
|
+
|
|
28
|
+
For OAuth 2.0 authentication, you need to define:
|
|
29
|
+
|
|
30
|
+
* `GEAI_OAUTH_ACCESS_TOKEN` - Your OAuth 2.0 access token
|
|
31
|
+
* `GEAI_PROJECT_ID` - Your project ID (required with OAuth)
|
|
32
|
+
* `GEAI_API_BASE_URL` - Base URL for the API
|
|
33
|
+
* `GEAI_ORGANIZATION_ID` - (Optional) Your organization ID
|
|
34
|
+
|
|
35
|
+
These can be configured via environment variables, credentials file, or client instantiation.
|
|
36
|
+
|
|
37
|
+
**Note:** If you plan to use the [Evaluation Module](https://wiki.genexus.com/enterprise-ai/wiki?896,Evaluation), you must also define `GEAI_API_EVAL_URL`
|
|
38
|
+
|
|
39
|
+
### Credentials file
|
|
40
|
+
The credentials file is organized via profiles (aliases), so one can interact with different instances of Globant Enterprise AI by just
|
|
41
|
+
referencing which profile one wishes to use. This also applies to different levels of permissions.
|
|
42
|
+
|
|
43
|
+
The structure of the credentials file is as follows:
|
|
44
|
+
|
|
45
|
+
**API Key Authentication:**
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
[default]
|
|
49
|
+
geai_api_key = <API_TOKEN>
|
|
50
|
+
geai_api_base_url = <GEAI_BASE_URL>
|
|
51
|
+
geai_api_eval_url = <GEAI_EVALUATION_MODULE_URL>
|
|
52
|
+
|
|
53
|
+
[production]
|
|
54
|
+
geai_api_key = <API_TOKEN>
|
|
55
|
+
geai_api_base_url = <GEAI_BASE_URL>
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
**OAuth 2.0 Authentication:**
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
[oauth-profile]
|
|
62
|
+
geai_oauth_access_token = <OAUTH_ACCESS_TOKEN>
|
|
63
|
+
geai_project_id = <PROJECT_ID>
|
|
64
|
+
geai_api_base_url = <GEAI_BASE_URL>
|
|
65
|
+
geai_organization_id = <ORGANIZATION_ID> # Optional
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
After setting the profiles, one can use them with the --alias option, for example:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
geai --alias test llm list-providers
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Modules
|
|
75
|
+
|
|
76
|
+
The SDK consists of several modules, all accessible through a single package `pygeai`:
|
|
77
|
+
|
|
78
|
+
- **`pygeai`**: The package encapsulates all components of the SDK.
|
|
79
|
+
- **`admin`**: Allows the user to interact with some of the administration endpoints of Globant Enterprise AI.
|
|
80
|
+
- **`assistant`**: This module handles interactions with various Assistants, including [Data Analyst Assistants](https://wiki.genexus.com/enterprise-ai/wiki?886,Data+Analyst+Assistant+2.0), [RAG Assistants](https://wiki.genexus.com/enterprise-ai/wiki?44,RAG+Assistants+Introduction), [Chat with Data Assistants](https://wiki.genexus.com/enterprise-ai/wiki?159,Chat+with+Data+Assistant), [Chat with API Assistants](https://wiki.genexus.com/enterprise-ai/wiki?110,API+Assistant), and [Chat Assistants](https://wiki.genexus.com/enterprise-ai/wiki?708,Chat+Assistant [soon to be deprecated]).
|
|
81
|
+
- **`chat`**: This module offers facilities to chat with assistants/agents created in Globant Enterprise AI.
|
|
82
|
+
- **`core`**: This module handles interactions with the fundamental components of Globant Enterprise.
|
|
83
|
+
- **`cli`**: This module provides a command-line tool for interacting with the SDK.
|
|
84
|
+
- **`dbg`**: This module includes a debugger to troubleshoot potential SDK issues and gain detailed insights into its operations.
|
|
85
|
+
- **`evaluation`**: This module provides functionality for the evaluation module.
|
|
86
|
+
- **`flows`**: This module enables interactions with [Flows](https://wiki.genexus.com/enterprise-ai/wiki?321,Flows+in+Globant+Enterprise+AI) [in development].
|
|
87
|
+
- **`gam`**: This module allows interaction with [GAM] (https://wiki.genexus.com/commwiki/wiki?24746,Table+of+contents%3AGeneXus+Access+Manager+%28GAM%29,).
|
|
88
|
+
- **`health`**: Provides an easy way to check the status of the Globant Enterprise AI instance one is using.
|
|
89
|
+
- **`lab`**: This module facilitates interactions with [The Lab] (https://docs.globant.ai/en/wiki?1671,The+Lab).
|
|
90
|
+
- **`organization`**: This module facilitates interactions with Organizations and [Projects](https://wiki.genexus.com/enterprise-ai/wiki?565,Projects) in Globant Enterprise AI.
|
|
91
|
+
- **`migration`**: This module provides functionality to migrate Agents, Tools and Projects between instances and organizations.
|
|
92
|
+
- **`proxy`**: This module handles [integrations with MCP and A2A] (https://docs.globant.ai/en/wiki?1179,Importing+Tools+using+MCP+and+A2A+Servers).
|
|
93
|
+
|
|
94
|
+
## Usage
|
|
95
|
+
|
|
96
|
+
### Install PyGEAI
|
|
97
|
+
Use pip to install the package from PyPI:
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
(venv) ~$ pip install pygeai
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
To install pre-release versions, you can run:
|
|
104
|
+
```
|
|
105
|
+
(venv) ~$ pip install --pre pygeai
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Verify installation
|
|
109
|
+
To check the installed PyGEAI version, run:
|
|
110
|
+
|
|
111
|
+
```
|
|
112
|
+
(venv) ~$ geai v
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### View help
|
|
116
|
+
|
|
117
|
+
To access the general help menu:
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
(venv) ~$ geai h
|
|
121
|
+
```
|
|
122
|
+
To view help for a specific command:
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
(venv) ~$ geai <command> h
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Debugger
|
|
129
|
+
|
|
130
|
+
The `pygeai-dbg` package provides a command-line debugger (`geai-dbg`) for troubleshooting and inspecting the `geai` CLI.
|
|
131
|
+
It pauses execution at breakpoints, allowing you to inspect variables, execute Python code, and control program flow interactively.
|
|
132
|
+
|
|
133
|
+
To debug a `geai` command, replace `geai` with `geai-dbg`. For example:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
(venv) ~$ geai-dbg ail lrs
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
This pauses at the `main` function in `pygeai.cli.geai`, displaying an interactive prompt `(geai-dbg)`.
|
|
140
|
+
You can then use commands like `continue` (resume), `run` (run without pauses), `quit` (exit), or `help` (list commands).
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Man Pages Documentation
|
|
144
|
+
|
|
145
|
+
The package includes Unix manual pages (man pages) for detailed command-line documentation.
|
|
146
|
+
|
|
147
|
+
To install man pages locally:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
geai-install-man
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
To install man pages system-wide:
|
|
154
|
+
|
|
155
|
+
```bash
|
|
156
|
+
sudo geai-install-man --system
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
To access the man pages:
|
|
160
|
+
|
|
161
|
+
```bash
|
|
162
|
+
man geai
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
#### Setting up Man Pages Access
|
|
166
|
+
|
|
167
|
+
If you're using a virtual environment, you'll need to configure your system to find the man pages. Add the following to your shell configuration file (`.bashrc`, `.zshrc`, etc.):
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
# For macOS
|
|
171
|
+
if [ -n "$VIRTUAL_ENV" ]; then
|
|
172
|
+
export MANPATH="$VIRTUAL_ENV/share/man:$MANPATH"
|
|
173
|
+
fi
|
|
174
|
+
|
|
175
|
+
# For Linux
|
|
176
|
+
if [ -n "$VIRTUAL_ENV" ]; then
|
|
177
|
+
export MANPATH="$VIRTUAL_ENV/man:$MANPATH"
|
|
178
|
+
fi
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
After adding this configuration:
|
|
182
|
+
1. Reload your shell configuration: `source ~/.bashrc` or `source ~/.zshrc`
|
|
183
|
+
2. The man pages will be available when your virtual environment is active
|
|
184
|
+
|
|
185
|
+
## Bugs and suggestions
|
|
186
|
+
To report any bug, request features or make any suggestions, the following email is available:
|
|
187
|
+
|
|
188
|
+
<geai-sdk@globant.com>
|
|
189
|
+
|
|
190
|
+
## Authors
|
|
191
|
+
Copyright 2025, Globant. All rights reserved
|