agentkit-sdk-python 0.7.7__tar.gz → 0.7.9__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.7.7 → agentkit_sdk_python-0.7.9}/PKG-INFO +1 -1
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/identity/auth.py +2 -2
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/tools/client.py +64 -2
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/tools/types.py +265 -47
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/builders/__init__.py +10 -0
- agentkit_sdk_python-0.7.9/agentkit/toolkit/builders/ve_sandbox_pipeline.py +623 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/__init__.py +4 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli.py +4 -0
- agentkit_sdk_python-0.7.9/agentkit/toolkit/cli/sandbox/cli_build.py +88 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_create.py +71 -7
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_exec.py +130 -6
- agentkit_sdk_python-0.7.9/agentkit/toolkit/cli/sandbox/cli_init_dockerfile.py +125 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/env_config.py +2 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/model_config.py +164 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/sandbox_client.py +37 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/session_create.py +146 -20
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/tool_resolve.py +26 -0
- agentkit_sdk_python-0.7.9/agentkit/toolkit/resources/templates/code-pipeline-sandbox-tos-cr-step.j2 +55 -0
- agentkit_sdk_python-0.7.9/agentkit/toolkit/resources/templates/sandbox/Dockerfile.install-package +14 -0
- agentkit_sdk_python-0.7.9/agentkit/toolkit/resources/templates/sandbox/Dockerfile.install-skills +18 -0
- agentkit_sdk_python-0.7.9/agentkit/toolkit/resources/templates/sandbox/Dockerfile.web-server +44 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/code_pipeline.py +25 -70
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/cr.py +25 -72
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/services/cr_service.py +1 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/ve_sign.py +41 -20
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/version.py +1 -1
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit_sdk_python.egg-info/PKG-INFO +1 -1
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit_sdk_python.egg-info/SOURCES.txt +7 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/pyproject.toml +1 -1
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/LICENSE +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/MANIFEST.in +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/README.md +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/a2a_app/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/a2a_app/a2a_app.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/a2a_app/telemetry.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/agent_server_app/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/agent_server_app/agent_server_app.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/agent_server_app/middleware.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/agent_server_app/origin.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/agent_server_app/telemetry.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/base_app.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/mcp_app/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/mcp_app/mcp_app.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/mcp_app/telemetry.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/simple_app/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/simple_app/simple_app.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/simple_app/simple_app_handlers.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/simple_app/telemetry.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/apps/utils.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/_openapi.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/_redact.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/_sigv4.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/admin.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/credential_hosting.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/errors.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/model_login.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/oauth.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/profile.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/providers.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/resolve.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/session.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/ssl_trust.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/sso.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/store.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/auth/sts.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/client/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/client/base_agentkit_client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/client/base_iam_client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/client/base_service_client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/errors.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/_common.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/langchain.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/langgraph.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/migration.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/serving/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/serving/fastapi_mount.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/frameworks/serving/langserve.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/platform/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/platform/configuration.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/platform/console_urls.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/platform/constants.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/platform/context.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/platform/provider.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/account/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/account/types.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/identity/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/identity/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/identity/types.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/knowledge/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/knowledge/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/knowledge/types.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/mcp/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/mcp/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/mcp/types.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/memory/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/memory/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/memory/types.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/runtime/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/runtime/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/runtime/types.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/skills/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/skills/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/skills/types.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/sdk/tools/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/builders/base.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/builders/local_docker.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/builders/ve_pipeline.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/__main__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_add.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_auth.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_build.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_delete.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_deploy.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_destroy.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_init.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_invoke.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_knowledge.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_launch.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_list.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_logs.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_memory.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_runtime.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_skill.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_skills.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_skills_workflow.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_status.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_tools.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/cli_version.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/console_reporter.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/interactive_config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/a2a_client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/agentkit_client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_file.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_get.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_invoke.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_model_login.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_mount.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_run.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_shell.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/cli_web.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/git_config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/session_sync.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/sandbox/tos_config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/cli/utils.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/choice_resolvers.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/cloud_provider.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/config_handler.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/config_validator.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/constants.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/dataclass_utils.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/docker_build_config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/global_config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/region_defaults.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/region_resolver.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/strategy_configs.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/config/utils.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/context.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/docker/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/docker/base_images.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/docker/container.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/docker/dockerfile/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/docker/dockerfile/manager.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/docker/dockerfile/metadata.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/docker/utils.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/errors.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/base_executor.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/build_executor.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/deploy_executor.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/init_executor.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/invoke_executor.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/lifecycle_executor.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/executors/status_executor.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/harness/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/harness/config_builder.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/harness/deploy.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/harness/env_mapping.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/models.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/reporter.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/a2a.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/agent_server.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/basic.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/basic_stream.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/customer_support_assistant.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/eino_a2a/agent.go +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/eino_a2a/build.sh +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/eino_a2a/go.mod +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/eino_a2a/go.sum +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/eino_a2a/main.go +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/financial_analyst.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/langchain_basic_stream.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/simple_app_veadk.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/simple_mcp_veadk.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_a2a/agent.go +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_a2a/build.sh +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_a2a/go.mod +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_a2a/go.sum +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_a2a/main.go +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_basic/agent.go +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_basic/build.sh +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_basic/go.mod +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_basic/go.sum +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/samples/veadk_go_basic/main.go +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/templates/code-pipeline-tos-cr-step.j2 +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/templates/golang/Dockerfile.j2 +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/templates/python/Dockerfile.j2 +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/wrappers/wrapper_basic.py.jinja2 +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/resources/wrappers/wrapper_stream.py.jinja2 +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/runners/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/runners/base.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/runners/local_docker.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/runners/ve_agentkit.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/bindings/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/bindings/memory.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/builder.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/client.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/deployer.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/initializer.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/invoker.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/lifecycle.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/sdk/status.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/strategies/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/strategies/base_strategy.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/strategies/cloud_strategy.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/strategies/hybrid_strategy.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/strategies/local_strategy.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/utils/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/utils/agent_parser.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/apmplus_logs.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/iam.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/services/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/services/tos_service.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/sts.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/utils/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/toolkit/volcengine/utils/project_archiver.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/__init__.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/global_config_io.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/http_defaults.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/logging_config.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/misc.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/redact.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/request.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit/utils/template_utils.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit_sdk_python.egg-info/dependency_links.txt +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit_sdk_python.egg-info/entry_points.txt +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit_sdk_python.egg-info/requires.txt +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/agentkit_sdk_python.egg-info/top_level.txt +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/setup.cfg +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/tests/test_client_uses_platform_context.py +0 -0
- {agentkit_sdk_python-0.7.7 → agentkit_sdk_python-0.7.9}/tests/test_error_hierarchy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentkit-sdk-python
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.9
|
|
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
|
|
@@ -41,7 +41,7 @@ def requires_api_key(*, provider_name: str, into: str = "api_key"):
|
|
|
41
41
|
endpoint = resolve_endpoint("identity")
|
|
42
42
|
access_key = creds.access_key
|
|
43
43
|
secret_key = creds.secret_key
|
|
44
|
-
session_token = ""
|
|
44
|
+
session_token = getattr(creds, "session_token", None) or None
|
|
45
45
|
|
|
46
46
|
response = ve_request(
|
|
47
47
|
request_body={
|
|
@@ -49,9 +49,9 @@ def requires_api_key(*, provider_name: str, into: str = "api_key"):
|
|
|
49
49
|
"IdentityToken": "identity_token",
|
|
50
50
|
},
|
|
51
51
|
action="GetResourceApiKey",
|
|
52
|
-
header={"X-Security-Token": session_token} if session_token else {},
|
|
53
52
|
ak=access_key,
|
|
54
53
|
sk=secret_key,
|
|
54
|
+
session_token=session_token,
|
|
55
55
|
version=endpoint.api_version,
|
|
56
56
|
service=endpoint.service,
|
|
57
57
|
host=endpoint.host,
|
|
@@ -22,22 +22,32 @@ from agentkit.client import BaseAgentkitClient
|
|
|
22
22
|
from .types import (
|
|
23
23
|
CreateSessionRequest,
|
|
24
24
|
CreateSessionResponse,
|
|
25
|
+
CreateSessionSnapshotRequest,
|
|
26
|
+
CreateSessionSnapshotResponse,
|
|
25
27
|
CreateToolRequest,
|
|
26
28
|
CreateToolResponse,
|
|
27
29
|
DeleteSessionRequest,
|
|
28
30
|
DeleteSessionResponse,
|
|
31
|
+
DeleteSessionSnapshotRequest,
|
|
32
|
+
DeleteSessionSnapshotResponse,
|
|
29
33
|
DeleteToolRequest,
|
|
30
34
|
DeleteToolResponse,
|
|
31
35
|
GetSessionLogsRequest,
|
|
32
36
|
GetSessionLogsResponse,
|
|
33
37
|
GetSessionRequest,
|
|
34
38
|
GetSessionResponse,
|
|
39
|
+
GetSessionSnapshotRequest,
|
|
40
|
+
GetSessionSnapshotResponse,
|
|
35
41
|
GetToolRequest,
|
|
36
42
|
GetToolResponse,
|
|
43
|
+
ListSessionSnapshotsRequest,
|
|
44
|
+
ListSessionSnapshotsResponse,
|
|
37
45
|
ListSessionsRequest,
|
|
38
46
|
ListSessionsResponse,
|
|
39
47
|
ListToolsRequest,
|
|
40
48
|
ListToolsResponse,
|
|
49
|
+
ResumeSessionFromSnapshotRequest,
|
|
50
|
+
ResumeSessionFromSnapshotResponse,
|
|
41
51
|
SetSessionTtlRequest,
|
|
42
52
|
SetSessionTtlResponse,
|
|
43
53
|
UpdateToolRequest,
|
|
@@ -47,16 +57,22 @@ from .types import (
|
|
|
47
57
|
|
|
48
58
|
class AgentkitToolsClient(BaseAgentkitClient):
|
|
49
59
|
"""AgentKit Tools Management Service"""
|
|
60
|
+
|
|
50
61
|
API_ACTIONS: Dict[str, str] = {
|
|
51
62
|
"CreateSession": "CreateSession",
|
|
63
|
+
"CreateSessionSnapshot": "CreateSessionSnapshot",
|
|
52
64
|
"CreateTool": "CreateTool",
|
|
53
65
|
"DeleteSession": "DeleteSession",
|
|
66
|
+
"DeleteSessionSnapshot": "DeleteSessionSnapshot",
|
|
54
67
|
"DeleteTool": "DeleteTool",
|
|
55
68
|
"GetSession": "GetSession",
|
|
56
69
|
"GetSessionLogs": "GetSessionLogs",
|
|
70
|
+
"GetSessionSnapshot": "GetSessionSnapshot",
|
|
57
71
|
"GetTool": "GetTool",
|
|
72
|
+
"ListSessionSnapshots": "ListSessionSnapshots",
|
|
58
73
|
"ListSessions": "ListSessions",
|
|
59
74
|
"ListTools": "ListTools",
|
|
75
|
+
"ResumeSessionFromSnapshot": "ResumeSessionFromSnapshot",
|
|
60
76
|
"SetSessionTtl": "SetSessionTtl",
|
|
61
77
|
"UpdateTool": "UpdateTool",
|
|
62
78
|
}
|
|
@@ -76,7 +92,6 @@ class AgentkitToolsClient(BaseAgentkitClient):
|
|
|
76
92
|
service_name="tools",
|
|
77
93
|
)
|
|
78
94
|
|
|
79
|
-
|
|
80
95
|
def create_session(self, request: CreateSessionRequest) -> CreateSessionResponse:
|
|
81
96
|
return self._invoke_api(
|
|
82
97
|
api_action="CreateSession",
|
|
@@ -84,6 +99,15 @@ class AgentkitToolsClient(BaseAgentkitClient):
|
|
|
84
99
|
response_type=CreateSessionResponse,
|
|
85
100
|
)
|
|
86
101
|
|
|
102
|
+
def create_session_snapshot(
|
|
103
|
+
self, request: CreateSessionSnapshotRequest
|
|
104
|
+
) -> CreateSessionSnapshotResponse:
|
|
105
|
+
return self._invoke_api(
|
|
106
|
+
api_action="CreateSessionSnapshot",
|
|
107
|
+
request=request,
|
|
108
|
+
response_type=CreateSessionSnapshotResponse,
|
|
109
|
+
)
|
|
110
|
+
|
|
87
111
|
def create_tool(self, request: CreateToolRequest) -> CreateToolResponse:
|
|
88
112
|
return self._invoke_api(
|
|
89
113
|
api_action="CreateTool",
|
|
@@ -98,6 +122,15 @@ class AgentkitToolsClient(BaseAgentkitClient):
|
|
|
98
122
|
response_type=DeleteSessionResponse,
|
|
99
123
|
)
|
|
100
124
|
|
|
125
|
+
def delete_session_snapshot(
|
|
126
|
+
self, request: DeleteSessionSnapshotRequest
|
|
127
|
+
) -> DeleteSessionSnapshotResponse:
|
|
128
|
+
return self._invoke_api(
|
|
129
|
+
api_action="DeleteSessionSnapshot",
|
|
130
|
+
request=request,
|
|
131
|
+
response_type=DeleteSessionSnapshotResponse,
|
|
132
|
+
)
|
|
133
|
+
|
|
101
134
|
def delete_tool(self, request: DeleteToolRequest) -> DeleteToolResponse:
|
|
102
135
|
return self._invoke_api(
|
|
103
136
|
api_action="DeleteTool",
|
|
@@ -112,13 +145,24 @@ class AgentkitToolsClient(BaseAgentkitClient):
|
|
|
112
145
|
response_type=GetSessionResponse,
|
|
113
146
|
)
|
|
114
147
|
|
|
115
|
-
def get_session_logs(
|
|
148
|
+
def get_session_logs(
|
|
149
|
+
self, request: GetSessionLogsRequest
|
|
150
|
+
) -> GetSessionLogsResponse:
|
|
116
151
|
return self._invoke_api(
|
|
117
152
|
api_action="GetSessionLogs",
|
|
118
153
|
request=request,
|
|
119
154
|
response_type=GetSessionLogsResponse,
|
|
120
155
|
)
|
|
121
156
|
|
|
157
|
+
def get_session_snapshot(
|
|
158
|
+
self, request: GetSessionSnapshotRequest
|
|
159
|
+
) -> GetSessionSnapshotResponse:
|
|
160
|
+
return self._invoke_api(
|
|
161
|
+
api_action="GetSessionSnapshot",
|
|
162
|
+
request=request,
|
|
163
|
+
response_type=GetSessionSnapshotResponse,
|
|
164
|
+
)
|
|
165
|
+
|
|
122
166
|
def get_tool(self, request: GetToolRequest) -> GetToolResponse:
|
|
123
167
|
return self._invoke_api(
|
|
124
168
|
api_action="GetTool",
|
|
@@ -126,6 +170,15 @@ class AgentkitToolsClient(BaseAgentkitClient):
|
|
|
126
170
|
response_type=GetToolResponse,
|
|
127
171
|
)
|
|
128
172
|
|
|
173
|
+
def list_session_snapshots(
|
|
174
|
+
self, request: ListSessionSnapshotsRequest
|
|
175
|
+
) -> ListSessionSnapshotsResponse:
|
|
176
|
+
return self._invoke_api(
|
|
177
|
+
api_action="ListSessionSnapshots",
|
|
178
|
+
request=request,
|
|
179
|
+
response_type=ListSessionSnapshotsResponse,
|
|
180
|
+
)
|
|
181
|
+
|
|
129
182
|
def list_sessions(self, request: ListSessionsRequest) -> ListSessionsResponse:
|
|
130
183
|
return self._invoke_api(
|
|
131
184
|
api_action="ListSessions",
|
|
@@ -140,6 +193,15 @@ class AgentkitToolsClient(BaseAgentkitClient):
|
|
|
140
193
|
response_type=ListToolsResponse,
|
|
141
194
|
)
|
|
142
195
|
|
|
196
|
+
def resume_session_from_snapshot(
|
|
197
|
+
self, request: ResumeSessionFromSnapshotRequest
|
|
198
|
+
) -> ResumeSessionFromSnapshotResponse:
|
|
199
|
+
return self._invoke_api(
|
|
200
|
+
api_action="ResumeSessionFromSnapshot",
|
|
201
|
+
request=request,
|
|
202
|
+
response_type=ResumeSessionFromSnapshotResponse,
|
|
203
|
+
)
|
|
204
|
+
|
|
143
205
|
def set_session_ttl(self, request: SetSessionTtlRequest) -> SetSessionTtlResponse:
|
|
144
206
|
return self._invoke_api(
|
|
145
207
|
api_action="SetSessionTtl",
|