agentkit-sdk-python 0.5.2__tar.gz → 0.5.4__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.
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/PKG-INFO +1 -1
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/agent_server_app/agent_server_app.py +103 -11
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/agent_server_app/telemetry.py +6 -2
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/platform/__init__.py +2 -0
- agentkit_sdk_python-0.5.4/agentkit/platform/console_urls.py +35 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/builders/ve_pipeline.py +25 -1
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/base_executor.py +7 -1
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/lifecycle_executor.py +7 -1
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/models.py +1 -3
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/strategies/cloud_strategy.py +1 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/version.py +1 -1
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/PKG-INFO +1 -1
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/SOURCES.txt +1 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/pyproject.toml +1 -1
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/LICENSE +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/MANIFEST.in +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/README.md +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/a2a_app/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/a2a_app/a2a_app.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/a2a_app/telemetry.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/agent_server_app/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/agent_server_app/middleware.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/base_app.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/mcp_app/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/mcp_app/mcp_app.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/mcp_app/telemetry.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/simple_app/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/simple_app/simple_app.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/simple_app/simple_app_handlers.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/simple_app/telemetry.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/utils.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/client/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/client/base_agentkit_client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/client/base_iam_client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/client/base_service_client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/platform/configuration.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/platform/constants.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/platform/context.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/platform/provider.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/account/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/account/types.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/identity/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/identity/auth.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/knowledge/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/knowledge/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/knowledge/types.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/mcp/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/mcp/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/mcp/types.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/memory/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/memory/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/memory/types.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/runtime/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/runtime/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/runtime/types.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/skills/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/skills/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/skills/types.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/tools/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/tools/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/sdk/tools/types.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/builders/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/builders/base.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/builders/local_docker.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/__main__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_build.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_config.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_deploy.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_destroy.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_init.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_invoke.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_knowledge.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_launch.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_memory.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_runtime.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_skills.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_skills_workflow.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_status.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_tools.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_version.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/console_reporter.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/interactive_config.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/utils.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/choice_resolvers.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/cloud_provider.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/config.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/config_handler.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/config_validator.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/constants.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/dataclass_utils.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/docker_build_config.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/global_config.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/region_defaults.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/region_resolver.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/strategy_configs.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/utils.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/context.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/base_images.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/container.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/dockerfile/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/dockerfile/manager.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/dockerfile/metadata.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/utils.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/errors.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/build_executor.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/deploy_executor.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/init_executor.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/invoke_executor.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/status_executor.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/reporter.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/__pycache__/customer_support_assistant.cpython-312.pyc +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/__pycache__/financial_analyst.cpython-312.pyc +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/__pycache__/simple_app_veadk.cpython-312.pyc +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/__pycache__/simple_mcp_veadk.cpython-312.pyc +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/a2a.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/agent_server.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/basic.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/basic_stream.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/customer_support_assistant.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/eino_a2a/agent.go +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/eino_a2a/build.sh +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/eino_a2a/go.mod +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/eino_a2a/go.sum +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/eino_a2a/main.go +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/financial_analyst.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/langchain_basic_stream.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/simple_app_veadk.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/simple_mcp_veadk.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_a2a/agent.go +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_a2a/build.sh +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_a2a/go.mod +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_a2a/go.sum +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_a2a/main.go +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_basic/agent.go +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_basic/build.sh +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_basic/go.mod +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_basic/go.sum +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/veadk_go_basic/main.go +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/templates/code-pipeline-tos-cr-step.j2 +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/templates/golang/Dockerfile.j2 +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/templates/python/Dockerfile.j2 +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/wrappers/wrapper_basic.py.jinja2 +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/wrappers/wrapper_stream.py.jinja2 +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/runners/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/runners/base.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/runners/local_docker.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/runners/ve_agentkit.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/bindings/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/bindings/memory.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/builder.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/client.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/config.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/deployer.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/initializer.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/invoker.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/lifecycle.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/status.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/strategies/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/strategies/base_strategy.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/strategies/hybrid_strategy.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/strategies/local_strategy.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/utils/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/utils/agent_parser.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/code_pipeline.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/cr.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/iam.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/services/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/services/cr_service.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/services/tos_service.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/sts.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/utils/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/utils/project_archiver.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/utils/__init__.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/utils/global_config_io.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/utils/logging_config.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/utils/misc.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/utils/request.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/utils/template_utils.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/utils/ve_sign.py +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/dependency_links.txt +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/entry_points.txt +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/requires.txt +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/top_level.txt +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/setup.cfg +0 -0
- {agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/tests/test_client_uses_platform_context.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentkit-sdk-python
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: Python SDK for transforming any AI agent into a production-ready application. Framework-agnostic primitives for runtime, memory, authentication, and tools with volcengine-managed infrastructure.
|
|
5
5
|
Author-email: Xiangrui Cheng <innsdcc@gmail.com>, Yumeng Bao <baoyumeng.123@gmail.com>, Yaozheng Fang <fangyozheng@gmail.com>, Guodong Li <cu.eric.lee@gmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -31,7 +31,7 @@ from google.adk.artifacts.in_memory_artifact_service import (
|
|
|
31
31
|
from google.adk.auth.credential_service.in_memory_credential_service import (
|
|
32
32
|
InMemoryCredentialService,
|
|
33
33
|
)
|
|
34
|
-
from google.adk.cli.adk_web_server import AdkWebServer
|
|
34
|
+
from google.adk.cli.adk_web_server import AdkWebServer, RunAgentRequest
|
|
35
35
|
from google.adk.cli.utils.base_agent_loader import BaseAgentLoader
|
|
36
36
|
from google.adk.evaluation.local_eval_set_results_manager import (
|
|
37
37
|
LocalEvalSetResultsManager,
|
|
@@ -149,6 +149,92 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
|
|
|
149
149
|
|
|
150
150
|
self.app = self.server.get_fast_api_app(lifespan=lifespan)
|
|
151
151
|
|
|
152
|
+
@self.app.post("/run_sse")
|
|
153
|
+
async def run_agent_sse(req: RunAgentRequest) -> StreamingResponse:
|
|
154
|
+
logger.info("Overriding run_agent_sse endpoint...")
|
|
155
|
+
# SSE endpoint
|
|
156
|
+
session = await self.server.session_service.get_session(
|
|
157
|
+
app_name=req.app_name,
|
|
158
|
+
user_id=req.user_id,
|
|
159
|
+
session_id=req.session_id,
|
|
160
|
+
)
|
|
161
|
+
if not session:
|
|
162
|
+
e = HTTPException(status_code=404, detail="Session not found")
|
|
163
|
+
telemetry.trace_agent_server_finish(
|
|
164
|
+
path="/run_sse", func_result="", exception=e
|
|
165
|
+
)
|
|
166
|
+
raise e
|
|
167
|
+
|
|
168
|
+
# Convert the events to properly formatted SSE
|
|
169
|
+
async def event_generator():
|
|
170
|
+
try:
|
|
171
|
+
stream_mode = (
|
|
172
|
+
StreamingMode.SSE if req.streaming else StreamingMode.NONE
|
|
173
|
+
)
|
|
174
|
+
runner = await self.server.get_runner_async(req.app_name)
|
|
175
|
+
async with Aclosing(
|
|
176
|
+
runner.run_async(
|
|
177
|
+
user_id=req.user_id,
|
|
178
|
+
session_id=req.session_id,
|
|
179
|
+
new_message=req.new_message,
|
|
180
|
+
state_delta=req.state_delta,
|
|
181
|
+
run_config=RunConfig(streaming_mode=stream_mode),
|
|
182
|
+
invocation_id=req.invocation_id,
|
|
183
|
+
)
|
|
184
|
+
) as agen:
|
|
185
|
+
async for event in agen:
|
|
186
|
+
# ADK Web renders artifacts from `actions.artifactDelta`
|
|
187
|
+
# during part processing *and* during action processing
|
|
188
|
+
# 1) the original event with `artifactDelta` cleared (content)
|
|
189
|
+
# 2) a content-less "action-only" event carrying `artifactDelta`
|
|
190
|
+
events_to_stream = [event]
|
|
191
|
+
if (
|
|
192
|
+
event.actions.artifact_delta
|
|
193
|
+
and event.content
|
|
194
|
+
and event.content.parts
|
|
195
|
+
):
|
|
196
|
+
content_event = event.model_copy(deep=True)
|
|
197
|
+
content_event.actions.artifact_delta = {}
|
|
198
|
+
artifact_event = event.model_copy(deep=True)
|
|
199
|
+
artifact_event.content = None
|
|
200
|
+
events_to_stream = [
|
|
201
|
+
content_event,
|
|
202
|
+
artifact_event,
|
|
203
|
+
]
|
|
204
|
+
for event_to_stream in events_to_stream:
|
|
205
|
+
sse_event = event_to_stream.model_dump_json(
|
|
206
|
+
exclude_none=True,
|
|
207
|
+
by_alias=True,
|
|
208
|
+
)
|
|
209
|
+
logger.debug(
|
|
210
|
+
"Generated event in agent run streaming: %s",
|
|
211
|
+
sse_event,
|
|
212
|
+
)
|
|
213
|
+
yield f"data: {sse_event}\n\n"
|
|
214
|
+
except Exception as e:
|
|
215
|
+
logger.exception("Error in event_generator: %s", e)
|
|
216
|
+
telemetry.trace_agent_server_finish(
|
|
217
|
+
path="/run_sse", func_result="", exception=e
|
|
218
|
+
)
|
|
219
|
+
yield f"data: {json.dumps({'error': str(e)})}\n\n"
|
|
220
|
+
# Returns a streaming response with the proper media type for SSE
|
|
221
|
+
|
|
222
|
+
return StreamingResponse(
|
|
223
|
+
event_generator(),
|
|
224
|
+
media_type="text/event-stream",
|
|
225
|
+
)
|
|
226
|
+
|
|
227
|
+
# Move the custom /run_sse route to the beginning of the routes list for priority matching (without deleting the ADK default route)
|
|
228
|
+
routes = self.app.router.routes
|
|
229
|
+
for i, r in enumerate(routes):
|
|
230
|
+
if (
|
|
231
|
+
getattr(r, "path", None) == "/run_sse"
|
|
232
|
+
and "POST" in getattr(r, "methods", set())
|
|
233
|
+
and getattr(r, "endpoint", None) == run_agent_sse
|
|
234
|
+
):
|
|
235
|
+
routes.insert(0, routes.pop(i))
|
|
236
|
+
break
|
|
237
|
+
|
|
152
238
|
# Attach ASGI middleware for unified telemetry across all routes
|
|
153
239
|
self.app.add_middleware(AgentkitTelemetryHTTPMiddleware)
|
|
154
240
|
|
|
@@ -163,13 +249,27 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
|
|
|
163
249
|
for k, v in dict(headers).items()
|
|
164
250
|
if k.lower() not in {"authorization", "token"}
|
|
165
251
|
}
|
|
252
|
+
# trace request attributes on current span
|
|
253
|
+
telemetry.trace_agent_server(
|
|
254
|
+
func_name="_invoke_compat",
|
|
255
|
+
span=span,
|
|
256
|
+
headers=telemetry_headers,
|
|
257
|
+
text="",
|
|
258
|
+
)
|
|
259
|
+
|
|
166
260
|
user_id = headers.get("user_id") or "agentkit_user"
|
|
167
261
|
session_id = headers.get("session_id") or ""
|
|
168
262
|
|
|
169
263
|
# Determine app_name from loader
|
|
170
264
|
app_names = self.server.agent_loader.list_agents()
|
|
171
265
|
if not app_names:
|
|
172
|
-
|
|
266
|
+
exception = HTTPException(
|
|
267
|
+
status_code=404, detail="No agents configured"
|
|
268
|
+
)
|
|
269
|
+
telemetry.trace_agent_server_finish(
|
|
270
|
+
path="/invoke", func_result="", exception=exception
|
|
271
|
+
)
|
|
272
|
+
raise exception
|
|
173
273
|
app_name = app_names[0]
|
|
174
274
|
|
|
175
275
|
# Parse payload and convert to ADK Content
|
|
@@ -193,14 +293,6 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
|
|
|
193
293
|
text = ""
|
|
194
294
|
content = types.UserContent(parts=[types.Part(text=text or "")])
|
|
195
295
|
|
|
196
|
-
# trace request attributes on current span
|
|
197
|
-
telemetry.trace_agent_server(
|
|
198
|
-
func_name="_invoke_compat",
|
|
199
|
-
span=span,
|
|
200
|
-
headers=telemetry_headers,
|
|
201
|
-
text=text or "",
|
|
202
|
-
)
|
|
203
|
-
|
|
204
296
|
# Ensure session exists
|
|
205
297
|
session = await self.server.session_service.get_session(
|
|
206
298
|
app_name=app_name, user_id=user_id, session_id=session_id
|
|
@@ -232,10 +324,10 @@ class AgentkitAgentServerApp(BaseAgentkitApp):
|
|
|
232
324
|
# finish span on successful end of stream handled by middleware
|
|
233
325
|
pass
|
|
234
326
|
except Exception as e:
|
|
235
|
-
yield f'data: {{"error": "{str(e)}"}}\n\n'
|
|
236
327
|
telemetry.trace_agent_server_finish(
|
|
237
328
|
path="/invoke", func_result="", exception=e
|
|
238
329
|
)
|
|
330
|
+
yield f'data: {{"error": "{str(e)}"}}\n\n'
|
|
239
331
|
|
|
240
332
|
return StreamingResponse(
|
|
241
333
|
event_generator(),
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/agent_server_app/telemetry.py
RENAMED
|
@@ -105,8 +105,12 @@ class Telemetry:
|
|
|
105
105
|
}
|
|
106
106
|
if exception:
|
|
107
107
|
self.handle_exception(span, exception)
|
|
108
|
-
|
|
109
|
-
|
|
108
|
+
if getattr(exception, "status_code", None):
|
|
109
|
+
attributes["error_type"] = (
|
|
110
|
+
f"{exception.__class__.__name__}_{exception.status_code}"
|
|
111
|
+
)
|
|
112
|
+
else:
|
|
113
|
+
attributes["error_type"] = exception.__class__.__name__
|
|
110
114
|
# only record invoke request latency metrics
|
|
111
115
|
if (
|
|
112
116
|
hasattr(span, "start_time")
|
|
@@ -17,6 +17,7 @@ from __future__ import annotations
|
|
|
17
17
|
from typing import Optional
|
|
18
18
|
|
|
19
19
|
from agentkit.platform.configuration import VolcConfiguration, Endpoint, Credentials
|
|
20
|
+
from agentkit.platform.console_urls import agentkit_enable_services_url
|
|
20
21
|
from agentkit.platform.provider import CloudProvider
|
|
21
22
|
from agentkit.platform.constants import DEFAULT_REGION_RULES
|
|
22
23
|
|
|
@@ -27,6 +28,7 @@ __all__ = [
|
|
|
27
28
|
"CloudProvider",
|
|
28
29
|
"resolve_endpoint",
|
|
29
30
|
"resolve_credentials",
|
|
31
|
+
"agentkit_enable_services_url",
|
|
30
32
|
"DEFAULT_REGION_RULES",
|
|
31
33
|
]
|
|
32
34
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
from typing import Optional
|
|
5
|
+
from urllib.parse import urlencode
|
|
6
|
+
|
|
7
|
+
from agentkit.platform.configuration import VolcConfiguration
|
|
8
|
+
from agentkit.platform.provider import CloudProvider
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def agentkit_enable_services_url(
|
|
12
|
+
*,
|
|
13
|
+
region: Optional[str] = None,
|
|
14
|
+
project_name: Optional[str] = None,
|
|
15
|
+
platform_config: Optional[VolcConfiguration] = None,
|
|
16
|
+
) -> str:
|
|
17
|
+
if platform_config is not None and region is not None:
|
|
18
|
+
raise ValueError("Only one of 'region' or 'platform_config' can be provided.")
|
|
19
|
+
cfg = platform_config or VolcConfiguration(region=region)
|
|
20
|
+
ep = cfg.get_service_endpoint("agentkit")
|
|
21
|
+
|
|
22
|
+
base = (
|
|
23
|
+
"https://console.byteplus.com"
|
|
24
|
+
if cfg.provider == CloudProvider.BYTEPLUS
|
|
25
|
+
else "https://console.volcengine.com"
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
path = f"/agentkit/region:agentkit+{ep.region}/auth"
|
|
29
|
+
|
|
30
|
+
if cfg.provider != CloudProvider.BYTEPLUS:
|
|
31
|
+
return f"{base}{path}"
|
|
32
|
+
|
|
33
|
+
project = project_name or os.getenv("AGENTKIT_CONSOLE_PROJECT_NAME") or "default"
|
|
34
|
+
query = urlencode({"projectName": project})
|
|
35
|
+
return f"{base}{path}?{query}"
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/builders/ve_pipeline.py
RENAMED
|
@@ -64,6 +64,10 @@ class VeCPCRBuilderConfig(AutoSerializableMixin):
|
|
|
64
64
|
default=None,
|
|
65
65
|
metadata={"system": True, "description": "Resolved cloud provider"},
|
|
66
66
|
)
|
|
67
|
+
agentkit_region: str = field(
|
|
68
|
+
default="",
|
|
69
|
+
metadata={"system": True, "description": "AgentKit service region"},
|
|
70
|
+
)
|
|
67
71
|
|
|
68
72
|
tos_bucket: str = field(
|
|
69
73
|
default=AUTO_CREATE_VE,
|
|
@@ -1054,8 +1058,28 @@ class VeCPCRBuilder(Builder):
|
|
|
1054
1058
|
|
|
1055
1059
|
except Exception as e:
|
|
1056
1060
|
if "AccountDisable" in str(e):
|
|
1061
|
+
from agentkit.platform import (
|
|
1062
|
+
VolcConfiguration,
|
|
1063
|
+
agentkit_enable_services_url,
|
|
1064
|
+
)
|
|
1065
|
+
|
|
1066
|
+
provider = getattr(config, "cloud_provider", None) or getattr(
|
|
1067
|
+
getattr(config, "common_config", None), "cloud_provider", None
|
|
1068
|
+
)
|
|
1069
|
+
region_hint = (
|
|
1070
|
+
getattr(config, "agentkit_region", None)
|
|
1071
|
+
or getattr(config, "cp_region", None)
|
|
1072
|
+
or getattr(config, "cr_region", None)
|
|
1073
|
+
or getattr(config, "tos_region", None)
|
|
1074
|
+
)
|
|
1075
|
+
url = agentkit_enable_services_url(
|
|
1076
|
+
platform_config=VolcConfiguration(
|
|
1077
|
+
region=region_hint or None, provider=provider or None
|
|
1078
|
+
)
|
|
1079
|
+
)
|
|
1057
1080
|
raise Exception(
|
|
1058
|
-
"Tos Service is not enabled, please enable it in the console.
|
|
1081
|
+
"Tos Service is not enabled, please enable it in the console. "
|
|
1082
|
+
f"Enable services at: {url}"
|
|
1059
1083
|
)
|
|
1060
1084
|
if "TooManyBuckets" in str(e):
|
|
1061
1085
|
raise Exception(
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/base_executor.py
RENAMED
|
@@ -295,7 +295,13 @@ class BaseExecutor:
|
|
|
295
295
|
|
|
296
296
|
if missing:
|
|
297
297
|
self.logger.warning(f"Services not enabled: {missing}")
|
|
298
|
-
|
|
298
|
+
from agentkit.platform import agentkit_enable_services_url
|
|
299
|
+
|
|
300
|
+
return PreflightResult(
|
|
301
|
+
passed=False,
|
|
302
|
+
missing_services=missing,
|
|
303
|
+
auth_url=agentkit_enable_services_url(region=region),
|
|
304
|
+
)
|
|
299
305
|
|
|
300
306
|
self.logger.debug(f"All required services are enabled: {required_services}")
|
|
301
307
|
return PreflightResult(passed=True, missing_services=[])
|
|
@@ -102,7 +102,13 @@ class LifecycleExecutor(BaseExecutor):
|
|
|
102
102
|
|
|
103
103
|
if missing:
|
|
104
104
|
self.logger.warning(f"Services not enabled: {missing}")
|
|
105
|
-
|
|
105
|
+
from agentkit.platform import agentkit_enable_services_url
|
|
106
|
+
|
|
107
|
+
return PreflightResult(
|
|
108
|
+
passed=False,
|
|
109
|
+
missing_services=missing,
|
|
110
|
+
auth_url=agentkit_enable_services_url(region=region),
|
|
111
|
+
)
|
|
106
112
|
|
|
107
113
|
self.logger.debug(f"All required services are enabled: {required_list}")
|
|
108
114
|
return PreflightResult(passed=True, missing_services=[])
|
|
@@ -200,9 +200,7 @@ class PreflightResult:
|
|
|
200
200
|
|
|
201
201
|
passed: bool
|
|
202
202
|
missing_services: List[str] = field(default_factory=list)
|
|
203
|
-
auth_url: str =
|
|
204
|
-
"https://console.volcengine.com/agentkit/region:agentkit+cn-beijing/auth"
|
|
205
|
-
)
|
|
203
|
+
auth_url: str = ""
|
|
206
204
|
|
|
207
205
|
@property
|
|
208
206
|
def message(self) -> str:
|
|
@@ -301,6 +301,7 @@ class CloudStrategy(Strategy):
|
|
|
301
301
|
return VeCPCRBuilderConfig(
|
|
302
302
|
common_config=common_config,
|
|
303
303
|
cloud_provider=resolved_provider,
|
|
304
|
+
agentkit_region=resolver.resolve("agentkit"),
|
|
304
305
|
cp_region=resolver.resolve("cp"),
|
|
305
306
|
tos_bucket=strategy_config.tos_bucket,
|
|
306
307
|
tos_region=resolver.resolve("tos"),
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentkit-sdk-python
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: Python SDK for transforming any AI agent into a production-ready application. Framework-agnostic primitives for runtime, memory, authentication, and tools with volcengine-managed infrastructure.
|
|
5
5
|
Author-email: Xiangrui Cheng <innsdcc@gmail.com>, Yumeng Bao <baoyumeng.123@gmail.com>, Yaozheng Fang <fangyozheng@gmail.com>, Guodong Li <cu.eric.lee@gmail.com>
|
|
6
6
|
License: Apache License
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/SOURCES.txt
RENAMED
|
@@ -27,6 +27,7 @@ agentkit/client/base_iam_client.py
|
|
|
27
27
|
agentkit/client/base_service_client.py
|
|
28
28
|
agentkit/platform/__init__.py
|
|
29
29
|
agentkit/platform/configuration.py
|
|
30
|
+
agentkit/platform/console_urls.py
|
|
30
31
|
agentkit/platform/constants.py
|
|
31
32
|
agentkit/platform/context.py
|
|
32
33
|
agentkit/platform/provider.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "agentkit-sdk-python"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.4"
|
|
4
4
|
description = "Python SDK for transforming any AI agent into a production-ready application. Framework-agnostic primitives for runtime, memory, authentication, and tools with volcengine-managed infrastructure."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/agent_server_app/__init__.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/agent_server_app/middleware.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/simple_app/__init__.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/simple_app/simple_app.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/apps/simple_app/telemetry.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/client/base_agentkit_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/client/base_service_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/builders/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/builders/local_docker.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_knowledge.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/cli_skills_workflow.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/console_reporter.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/cli/interactive_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/choice_resolvers.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/cloud_provider.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/config_handler.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/config_validator.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/constants.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/dataclass_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/global_config.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/region_defaults.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/region_resolver.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/config/strategy_configs.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/base_images.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/docker/container.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/__init__.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/build_executor.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/executors/init_executor.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/a2a.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/resources/samples/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/runners/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/runners/local_docker.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/runners/ve_agentkit.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/bindings/__init__.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/sdk/bindings/memory.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/strategies/__init__.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/strategies/base_strategy.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/utils/agent_parser.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/__init__.py
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit/toolkit/volcengine/code_pipeline.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/requires.txt
RENAMED
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/agentkit_sdk_python.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
{agentkit_sdk_python-0.5.2 → agentkit_sdk_python-0.5.4}/tests/test_client_uses_platform_context.py
RENAMED
|
File without changes
|