blaxel 0.1.9rc35__tar.gz → 0.1.9rc37__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.
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/PKG-INFO +1 -4
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/definition.yml +413 -37
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_googleadk.py +0 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_pydantic.py +0 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/bl_agents.py +1 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/fastapi_crewai.py +1 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/fastapi_google_adk.py +1 -2
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/fastapi_langchain.py +1 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/fastapi_llamaindex.py +2 -3
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/fastapi_openai.py +1 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/fastapi_pydantic.py +2 -2
- blaxel-0.1.9rc37/integrationtest/global_hash.py +3 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/pyproject.toml +2 -2
- blaxel-0.1.9rc37/src/blaxel/agents/__init__.py +139 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/authentication/__init__.py +3 -4
- blaxel-0.1.9rc37/src/blaxel/client/api/compute/create_sandbox.py +166 -0
- blaxel-0.1.9rc37/src/blaxel/client/api/compute/delete_sandbox.py +154 -0
- blaxel-0.1.9rc37/src/blaxel/client/api/compute/get_sandbox.py +154 -0
- blaxel-0.1.9rc37/src/blaxel/client/api/compute/list_sandboxes.py +135 -0
- blaxel-0.1.9rc37/src/blaxel/client/api/compute/start_sandbox.py +157 -0
- blaxel-0.1.9rc37/src/blaxel/client/api/compute/stop_sandbox.py +157 -0
- blaxel-0.1.9rc37/src/blaxel/client/api/compute/update_sandbox.py +179 -0
- blaxel-0.1.9rc37/src/blaxel/client/api/default/list_sandbox_hub_definitions.py +123 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/functions/list_function_revisions.py +16 -11
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/knowledgebases/list_knowledgebase_revisions.py +16 -11
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/models/list_model_revisions.py +16 -11
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/templates/list_templates.py +16 -11
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/__init__.py +32 -2
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/agent_spec.py +25 -69
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/core_spec.py +1 -45
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/function_spec.py +1 -45
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/last_n_requests_metric.py +18 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/metrics.py +20 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/model_spec.py +1 -45
- blaxel-0.1.9rc37/src/blaxel/client/models/port.py +79 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_total_metric.py +12 -1
- blaxel-0.1.9rc37/src/blaxel/client/models/request_total_response_data.py +97 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/resource_log.py +9 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/resource_metrics.py +144 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/resource_metrics_request_total_per_code_previous.py +45 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/resource_metrics_rps_per_code_previous.py +45 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/runtime.py +83 -7
- blaxel-0.1.9rc37/src/blaxel/client/models/runtime_configuration.py +45 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/sandbox.py +129 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/sandbox_definition.py +181 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/sandbox_spec.py +208 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/sandboxes.py +129 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/serverless_config.py +29 -1
- blaxel-0.1.9rc37/src/blaxel/client/models/serverless_config_configuration.py +45 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/start_sandbox.py +94 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/stop_sandbox.py +94 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/trigger.py +98 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/trigger_configuration.py +45 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/workspace.py +20 -0
- blaxel-0.1.9rc37/src/blaxel/client/models/workspace_runtime.py +61 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/common/autoload.py +0 -4
- blaxel-0.1.9rc37/src/blaxel/common/internal.py +75 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/common/settings.py +6 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/instrumentation/exporters.py +3 -6
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/instrumentation/manager.py +5 -3
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/mcp/client.py +1 -3
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/mcp/server.py +4 -4
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/__init__.py +2 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/custom/langchain/gemini.py +41 -18
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/custom/llamaindex/cohere.py +25 -16
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/custom/pydantic/gemini.py +0 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/livekit.py +1 -1
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/__init__.py +63 -22
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/langchain.py +1 -2
- blaxel-0.1.9rc37/templates/endpoint_init.py.jinja +0 -0
- blaxel-0.1.9rc35/src/blaxel/agents/__init__.py +0 -102
- blaxel-0.1.9rc35/src/blaxel/client/models/agent_chain.py +0 -88
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/.github/workflows/dev.yaml +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/.github/workflows/prod.yaml +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/.gitignore +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/LICENSE +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/Makefile +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/README.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/blaxel.toml +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/doc.sh +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/agents.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/agents/create_agent.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/agents/delete_agent.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/agents/get_agent.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/agents/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/agents/list_agent_revisions.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/agents/list_agents.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/agents/update_agent.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/configurations/get_configuration.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/configurations/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/default/get_template.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/default/get_template_contents.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/default/get_template_file_contents.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/default/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/default/list_mcp_hub_definitions.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/functions/create_function.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/functions/delete_function.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/functions/get_function.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/functions/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/functions/list_function_revisions.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/functions/list_functions.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/functions/update_function.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/create_integration_connection.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/delete_integration_connection.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/get_integration.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/get_integration_connection.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/get_integration_connection_model.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/get_integration_connection_model_endpoint_configurations.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/list_integration_connection_models.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/list_integration_connections.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/integrations/update_integration_connection.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/invitations/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/invitations/list_all_pending_invitations.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/knowledgebases/create_knowledgebase.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/knowledgebases/delete_knowledgebase.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/knowledgebases/get_knowledgebase.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/knowledgebases/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/knowledgebases/list_knowledgebase_revisions.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/knowledgebases/list_knowledgebases.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/knowledgebases/update_knowledgebase.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/locations/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/locations/list_locations.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/models/create_model.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/models/delete_model.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/models/get_model.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/models/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/models/list_model_revisions.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/models/list_models.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/models/update_model.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/policies/create_policy.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/policies/delete_policy.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/policies/get_policy.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/policies/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/policies/list_policies.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/policies/update_policy.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/create_private_cluster.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/delete_private_cluster.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/get_private_cluster.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/get_private_cluster_health.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/list_private_clusters.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/update_private_cluster.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/privateclusters/update_private_cluster_health.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/create_api_key_for_service_account.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/create_workspace_service_account.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/delete_api_key_for_service_account.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/delete_workspace_service_account.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/get_workspace_service_accounts.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/list_api_keys_for_service_account.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/service_accounts/update_workspace_service_account.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/templates/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/templates/list_templates.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/accept_workspace_invitation.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/create_worspace.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/decline_workspace_invitation.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/delete_workspace.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/get_workspace.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/invite_workspace_user.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/leave_workspace.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/list_workspace_users.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/list_workspaces.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/remove_workspace_user.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/update_workspace.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/api/workspaces/update_workspace_user_role.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/authentication/apikey.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/authentication/authentication.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/authentication/clientcredentials.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/authentication/credentials.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/authentication/device_mode.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/authentication/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/client.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/common/error.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/common/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/common/instrumentation.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/common/logger.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/common/secrets.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/common/settings.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/common/utils.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/deploy/deploy.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/deploy/format.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/deploy/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/deploy/parser.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/errors.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/functions.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/knowledgebases/chroma.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/knowledgebases/embeddings.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/knowledgebases/factory.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/knowledgebases/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/knowledgebases/pinecone.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/knowledgebases/qdrant.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/knowledgebases/types.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/acl.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/agent.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/agent_chain.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/agent_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/api_key.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/configuration.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/continent.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/core_event.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/core_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/core_spec_configurations.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/country.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/create_api_key_for_service_account_body.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/create_workspace_service_account_body.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/create_workspace_service_account_response_200.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/delete_workspace_service_account_response_200.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/entrypoint.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/entrypoint_env.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/flavor.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/form.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/form_config.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/form_oauth.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/form_secrets.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/function.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/function_kit.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/function_schema.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/function_schema_not.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/function_schema_or_bool.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/function_schema_properties.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/function_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/get_workspace_service_accounts_response_200_item.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/histogram_bucket.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/histogram_stats.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/integration_connection.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/integration_connection_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/integration_connection_spec_config.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/integration_connection_spec_secret.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/integration_model.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/integration_repository.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/invite_workspace_user_body.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/knowledgebase.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/knowledgebase_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/knowledgebase_spec_options.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/last_n_requests_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/latency_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/location_response.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/mcp_definition.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/mcp_definition_entrypoint.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/mcp_definition_form.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/memory_allocation_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/metadata.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/metadata_labels.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/metrics.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/metrics_models.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/metrics_request_total_per_code.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/metrics_rps_per_code.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/model.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/model_private_cluster.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/model_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/o_auth.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/owner_fields.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/pending_invitation.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/pending_invitation_accept.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/pending_invitation_render.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/pending_invitation_render_invited_by.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/pending_invitation_render_workspace.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/pending_invitation_workspace_details.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/pod_template_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/policy.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/policy_location.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/policy_max_tokens.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/policy_spec.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/private_cluster.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/private_location.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/repository.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_duration_over_time_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_duration_over_time_metrics.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_total_by_origin_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_total_by_origin_metric_request_total_by_origin.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_total_by_origin_metric_request_total_by_origin_and_code.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_total_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_total_metric_request_total_per_code.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/request_total_metric_rps_per_code.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/resource_log.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/resource_metrics.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/resource_metrics_request_total_per_code.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/resource_metrics_rps_per_code.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/revision_configuration.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/revision_metadata.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/runtime.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/runtime_startup_probe.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/serverless_config.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/spec_configuration.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/store_agent.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/store_agent_labels.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/store_configuration.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/store_configuration_option.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/template.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/template_variable.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/time_fields.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/time_to_first_token_over_time_metrics.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/token_rate_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/token_rate_metrics.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/token_total_metric.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/trace_ids_response.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/update_workspace_service_account_body.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/update_workspace_service_account_response_200.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/update_workspace_user_role_body.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/websocket_channel.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/workspace.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/workspace_labels.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/models/workspace_user.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/run.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/serve/app.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/serve/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/serve/middlewares/accesslog.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/serve/middlewares/index.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/serve/middlewares/processtime.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel/types.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/docs/blaxel-docs.md +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_crewai.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_langchain.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_langgraph.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_livekit.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_llamaindex.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/agent_openai.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/bl_models.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/bl_tools.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/client.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/env.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/mcp_client.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/integrationtest/mcp_server.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/openapi-python-client.yml +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/authentication/apikey.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/authentication/clientcredentials.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/authentication/devicemode.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/authentication/oauth.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/authentication/types.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/cache/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/cache/cache.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/agents/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/agents/create_agent.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/agents/delete_agent.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/agents/get_agent.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/agents/list_agent_revisions.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/agents/list_agents.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/agents/update_agent.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/configurations → blaxel-0.1.9rc37/src/blaxel/client/api/compute}/__init__.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/default → blaxel-0.1.9rc37/src/blaxel/client/api/configurations}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/configurations/get_configuration.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/functions → blaxel-0.1.9rc37/src/blaxel/client/api/default}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/default/get_template.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/default/get_template_contents.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/default/get_template_file_contents.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/default/list_mcp_hub_definitions.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/integrations → blaxel-0.1.9rc37/src/blaxel/client/api/functions}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/functions/create_function.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/functions/delete_function.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/functions/get_function.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/functions/list_functions.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/functions/update_function.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/invitations → blaxel-0.1.9rc37/src/blaxel/client/api/integrations}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/create_integration_connection.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/delete_integration_connection.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/get_integration.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/get_integration_connection.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/get_integration_connection_model.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/get_integration_connection_model_endpoint_configurations.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/list_integration_connection_models.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/list_integration_connections.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/integrations/update_integration_connection.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/knowledgebases → blaxel-0.1.9rc37/src/blaxel/client/api/invitations}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/invitations/list_all_pending_invitations.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/locations → blaxel-0.1.9rc37/src/blaxel/client/api/knowledgebases}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/knowledgebases/create_knowledgebase.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/knowledgebases/delete_knowledgebase.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/knowledgebases/get_knowledgebase.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/knowledgebases/list_knowledgebases.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/knowledgebases/update_knowledgebase.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/models → blaxel-0.1.9rc37/src/blaxel/client/api/locations}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/locations/list_locations.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/policies → blaxel-0.1.9rc37/src/blaxel/client/api/models}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/models/create_model.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/models/delete_model.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/models/get_model.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/models/list_models.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/models/update_model.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/privateclusters → blaxel-0.1.9rc37/src/blaxel/client/api/policies}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/policies/create_policy.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/policies/delete_policy.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/policies/get_policy.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/policies/list_policies.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/policies/update_policy.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/service_accounts → blaxel-0.1.9rc37/src/blaxel/client/api/privateclusters}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/privateclusters/create_private_cluster.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/privateclusters/delete_private_cluster.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/privateclusters/get_private_cluster.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/privateclusters/get_private_cluster_health.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/privateclusters/list_private_clusters.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/privateclusters/update_private_cluster.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/privateclusters/update_private_cluster_health.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/templates → blaxel-0.1.9rc37/src/blaxel/client/api/service_accounts}/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/service_accounts/create_api_key_for_service_account.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/service_accounts/create_workspace_service_account.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/service_accounts/delete_api_key_for_service_account.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/service_accounts/delete_workspace_service_account.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/service_accounts/get_workspace_service_accounts.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/service_accounts/list_api_keys_for_service_account.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/service_accounts/update_workspace_service_account.py +0 -0
- {blaxel-0.1.9rc35/src/blaxel/client/api/workspaces → blaxel-0.1.9rc37/src/blaxel/client/api/templates}/__init__.py +0 -0
- /blaxel-0.1.9rc35/templates/endpoint_init.py.jinja → /blaxel-0.1.9rc37/src/blaxel/client/api/workspaces/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/accept_workspace_invitation.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/create_worspace.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/decline_workspace_invitation.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/delete_workspace.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/get_workspace.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/invite_workspace_user.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/leave_workspace.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/list_workspace_users.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/list_workspaces.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/remove_workspace_user.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/update_workspace.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/api/workspaces/update_workspace_user_role.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/client.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/errors.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/acl.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/agent.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/api_key.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/configuration.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/continent.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/core_event.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/core_spec_configurations.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/country.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/create_api_key_for_service_account_body.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/create_workspace_service_account_body.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/create_workspace_service_account_response_200.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/delete_workspace_service_account_response_200.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/entrypoint.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/entrypoint_env.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/flavor.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/form.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/form_config.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/form_oauth.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/form_secrets.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/function.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/function_kit.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/function_schema.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/function_schema_not.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/function_schema_or_bool.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/function_schema_properties.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/get_workspace_service_accounts_response_200_item.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/histogram_bucket.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/histogram_stats.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/integration_connection.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/integration_connection_spec.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/integration_connection_spec_config.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/integration_connection_spec_secret.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/integration_model.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/integration_repository.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/invite_workspace_user_body.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/knowledgebase.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/knowledgebase_spec.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/knowledgebase_spec_options.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/latency_metric.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/location_response.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/mcp_definition.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/mcp_definition_entrypoint.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/mcp_definition_form.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/memory_allocation_metric.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/metadata.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/metadata_labels.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/metric.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/metrics_models.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/metrics_request_total_per_code.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/metrics_rps_per_code.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/model.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/model_private_cluster.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/o_auth.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/owner_fields.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/pending_invitation.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/pending_invitation_accept.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/pending_invitation_render.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/pending_invitation_render_invited_by.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/pending_invitation_render_workspace.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/pending_invitation_workspace_details.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/pod_template_spec.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/policy.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/policy_location.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/policy_max_tokens.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/policy_spec.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/private_cluster.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/private_location.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/repository.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_duration_over_time_metric.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_duration_over_time_metrics.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_total_by_origin_metric.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_total_by_origin_metric_request_total_by_origin.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_total_by_origin_metric_request_total_by_origin_and_code.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_total_metric_request_total_per_code.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/request_total_metric_rps_per_code.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/resource_metrics_request_total_per_code.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/resource_metrics_rps_per_code.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/revision_configuration.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/revision_metadata.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/runtime_startup_probe.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/spec_configuration.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/store_agent.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/store_agent_labels.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/store_configuration.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/store_configuration_option.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/template.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/template_variable.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/time_fields.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/time_to_first_token_over_time_metrics.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/token_rate_metric.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/token_rate_metrics.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/token_total_metric.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/trace_ids_response.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/update_workspace_service_account_body.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/update_workspace_service_account_response_200.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/update_workspace_user_role_body.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/websocket_channel.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/workspace_labels.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/models/workspace_user.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/py.typed +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/client/types.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/common/env.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/common/logger.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/instrumentation/log.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/instrumentation/map.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/instrumentation/span.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/mcp/__init__.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/crewai.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/googleadk.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/langchain.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/llamaindex.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/openai.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/models/pydantic.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/common.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/crewai.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/googleadk.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/livekit.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/llamaindex.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/openai.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/pydantic.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/src/blaxel/tools/types.py +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/.gitignore.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/README.md.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/api_init.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/client.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/endpoint_macros.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/endpoint_module.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/errors.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/helpers.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/int_enum.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/literal_enum.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/model.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/models_init.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/package_init.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/any_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/boolean_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/const_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/date_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/datetime_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/enum_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/file_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/float_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/helpers.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/int_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/list_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/literal_enum_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/model_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/property_macros.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/union_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/property_templates/uuid_property.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/pyproject.toml.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/pyproject_ruff.toml.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/setup.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/str_enum.py.jinja +0 -0
- {blaxel-0.1.9rc35 → blaxel-0.1.9rc37}/templates/types.py.jinja +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: blaxel
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.9rc37
|
4
4
|
Summary: Add your description here
|
5
5
|
Author-email: cploujoux <cploujoux@blaxel.ai>
|
6
6
|
License-File: LICENSE
|
@@ -25,9 +25,6 @@ Requires-Dist: pyyaml<6.1.0,>=6.0.2
|
|
25
25
|
Requires-Dist: requests<2.33.0,>=2.32.3
|
26
26
|
Requires-Dist: tomli>=2.2.1
|
27
27
|
Requires-Dist: websockets<15.0.0
|
28
|
-
Provides-Extra: crewai
|
29
|
-
Requires-Dist: crewai>=0.102.0; extra == 'crewai'
|
30
|
-
Requires-Dist: opentelemetry-instrumentation-crewai>=0.39.0; extra == 'crewai'
|
31
28
|
Provides-Extra: google-adk
|
32
29
|
Requires-Dist: google-adk>=0.2.0; extra == 'google-adk'
|
33
30
|
Requires-Dist: litellm>=1.63.11; extra == 'google-adk'
|
@@ -40,37 +40,12 @@ components:
|
|
40
40
|
status:
|
41
41
|
type: string
|
42
42
|
description: Agent status
|
43
|
-
AgentChain:
|
44
|
-
type: object
|
45
|
-
description: Agent chain configuration
|
46
|
-
properties:
|
47
|
-
description:
|
48
|
-
type: string
|
49
|
-
description: Description of the agent in case you want to override the default
|
50
|
-
one
|
51
|
-
enabled:
|
52
|
-
type: boolean
|
53
|
-
description: Whether the agent chain is enabled
|
54
|
-
name:
|
55
|
-
type: string
|
56
|
-
description: The name of the agent to chain to
|
57
|
-
prompt:
|
58
|
-
type: string
|
59
|
-
description: Prompt of the agent in case you want to override the default
|
60
|
-
one
|
61
|
-
AgentChains:
|
62
|
-
type: array
|
63
|
-
description: Agent chain
|
64
|
-
items:
|
65
|
-
$ref: '#/components/schemas/AgentChain'
|
66
43
|
AgentSpec:
|
67
44
|
type: object
|
68
45
|
description: Agent specification
|
69
46
|
allOf:
|
70
47
|
- $ref: '#/components/schemas/CoreSpec'
|
71
48
|
- properties:
|
72
|
-
agentChain:
|
73
|
-
$ref: '#/components/schemas/AgentChains'
|
74
49
|
description:
|
75
50
|
type: string
|
76
51
|
description: Description, small description computed from the prompt
|
@@ -90,6 +65,8 @@ components:
|
|
90
65
|
storeId:
|
91
66
|
type: string
|
92
67
|
description: Store id
|
68
|
+
triggers:
|
69
|
+
$ref: '#/components/schemas/Triggers'
|
93
70
|
ApiKey:
|
94
71
|
type: object
|
95
72
|
description: Long-lived API key for accessing Blaxel
|
@@ -182,13 +159,11 @@ components:
|
|
182
159
|
$ref: '#/components/schemas/SpecConfiguration'
|
183
160
|
enabled:
|
184
161
|
type: boolean
|
185
|
-
description: Enable or disable the
|
162
|
+
description: Enable or disable the resource
|
186
163
|
flavors:
|
187
164
|
$ref: '#/components/schemas/Flavors'
|
188
165
|
integrationConnections:
|
189
166
|
$ref: '#/components/schemas/IntegrationConnectionsList'
|
190
|
-
podTemplate:
|
191
|
-
$ref: '#/components/schemas/PodTemplateSpec'
|
192
167
|
policies:
|
193
168
|
$ref: '#/components/schemas/PoliciesList'
|
194
169
|
privateClusters:
|
@@ -201,8 +176,6 @@ components:
|
|
201
176
|
sandbox:
|
202
177
|
type: boolean
|
203
178
|
description: Sandbox mode
|
204
|
-
serverlessConfig:
|
205
|
-
$ref: '#/components/schemas/ServerlessConfig'
|
206
179
|
Country:
|
207
180
|
type: object
|
208
181
|
description: Configuration
|
@@ -550,6 +523,12 @@ components:
|
|
550
523
|
date:
|
551
524
|
type: string
|
552
525
|
description: Timestamp
|
526
|
+
statusCode:
|
527
|
+
type: string
|
528
|
+
description: Status code
|
529
|
+
workloadId:
|
530
|
+
type: string
|
531
|
+
description: Workload ID
|
553
532
|
workloadType:
|
554
533
|
type: string
|
555
534
|
description: Workload type
|
@@ -699,6 +678,13 @@ components:
|
|
699
678
|
type: array
|
700
679
|
description: Historical requests for all resources globally
|
701
680
|
items: {}
|
681
|
+
items:
|
682
|
+
type: array
|
683
|
+
description: Historical requests for all resources globally
|
684
|
+
items: {}
|
685
|
+
lastNRequests:
|
686
|
+
type: integer
|
687
|
+
description: Metric value
|
702
688
|
models:
|
703
689
|
type: object
|
704
690
|
description: Metrics for models
|
@@ -941,6 +927,24 @@ components:
|
|
941
927
|
type:
|
942
928
|
type: string
|
943
929
|
description: Policy type, can be location or flavor
|
930
|
+
Port:
|
931
|
+
type: object
|
932
|
+
description: A port for a resource
|
933
|
+
properties:
|
934
|
+
name:
|
935
|
+
type: string
|
936
|
+
description: The name of the port
|
937
|
+
protocol:
|
938
|
+
type: string
|
939
|
+
description: The protocol of the port
|
940
|
+
target:
|
941
|
+
type: integer
|
942
|
+
description: The target port of the port
|
943
|
+
Ports:
|
944
|
+
type: array
|
945
|
+
description: Set of ports for a resource
|
946
|
+
items:
|
947
|
+
$ref: '#/components/schemas/Port'
|
944
948
|
PrivateCluster:
|
945
949
|
type: object
|
946
950
|
description: A private cluster where models can be located on.
|
@@ -1040,6 +1044,10 @@ components:
|
|
1040
1044
|
type: object
|
1041
1045
|
description: Metrics for request total
|
1042
1046
|
properties:
|
1047
|
+
items:
|
1048
|
+
type: array
|
1049
|
+
description: Historical requests for all resources globally
|
1050
|
+
items: {}
|
1043
1051
|
requestTotal:
|
1044
1052
|
type: number
|
1045
1053
|
description: Number of requests for all resources globally
|
@@ -1052,6 +1060,25 @@ components:
|
|
1052
1060
|
rpsPerCode:
|
1053
1061
|
type: object
|
1054
1062
|
description: Number of requests for all resources globally
|
1063
|
+
RequestTotalResponseData:
|
1064
|
+
type: object
|
1065
|
+
description: Request total response data
|
1066
|
+
properties:
|
1067
|
+
requestTotal:
|
1068
|
+
type: number
|
1069
|
+
description: Request total
|
1070
|
+
statusCode:
|
1071
|
+
type: string
|
1072
|
+
description: Status code
|
1073
|
+
workloadId:
|
1074
|
+
type: string
|
1075
|
+
description: Workload ID
|
1076
|
+
workloadType:
|
1077
|
+
type: string
|
1078
|
+
description: Workload type
|
1079
|
+
workspace:
|
1080
|
+
type: string
|
1081
|
+
description: Workspace
|
1055
1082
|
ResourceLog:
|
1056
1083
|
type: object
|
1057
1084
|
description: Log for a resource deployment (eg. model deployment, function deployment)
|
@@ -1065,11 +1092,18 @@ components:
|
|
1065
1092
|
timestamp:
|
1066
1093
|
type: string
|
1067
1094
|
description: The timestamp of the log
|
1095
|
+
trace_id:
|
1096
|
+
type: string
|
1097
|
+
description: Trace ID of the log
|
1068
1098
|
ResourceMetrics:
|
1069
1099
|
type: object
|
1070
1100
|
description: Metrics for a single resource deployment (eg. model deployment,
|
1071
1101
|
function deployment)
|
1072
1102
|
properties:
|
1103
|
+
inferenceErrorsGlobal:
|
1104
|
+
$ref: '#/components/schemas/ArrayMetric'
|
1105
|
+
description: Historical requests (in last 24 hours) for the model deployment
|
1106
|
+
globally
|
1073
1107
|
inferenceGlobal:
|
1074
1108
|
$ref: '#/components/schemas/ArrayMetric'
|
1075
1109
|
description: Historical requests (in last 24 hours) for the model deployment
|
@@ -1082,6 +1116,10 @@ components:
|
|
1082
1116
|
$ref: '#/components/schemas/LatencyMetric'
|
1083
1117
|
description: Historical requests (in last 24 hours) for the model deployment
|
1084
1118
|
globally
|
1119
|
+
latencyPrevious:
|
1120
|
+
$ref: '#/components/schemas/LatencyMetric'
|
1121
|
+
description: Historical requests (in last 24 hours) for the model deployment
|
1122
|
+
globally
|
1085
1123
|
memoryAllocation:
|
1086
1124
|
$ref: '#/components/schemas/MemoryAllocationMetric'
|
1087
1125
|
description: Memory allocation metrics for the resource
|
@@ -1102,9 +1140,21 @@ components:
|
|
1102
1140
|
$ref: '#/components/schemas/RequestTotalByOriginMetric'
|
1103
1141
|
description: Historical requests (in last 24 hours) for the model deployment
|
1104
1142
|
globally
|
1143
|
+
requestTotalByOriginPrevious:
|
1144
|
+
$ref: '#/components/schemas/RequestTotalByOriginMetric'
|
1145
|
+
description: Historical requests for the previous period for the model deployment
|
1146
|
+
globally
|
1105
1147
|
requestTotalPerCode:
|
1106
1148
|
type: object
|
1107
1149
|
description: Number of requests for the resource globally per code
|
1150
|
+
requestTotalPerCodePrevious:
|
1151
|
+
type: object
|
1152
|
+
description: Number of requests for the resource globally per code for the
|
1153
|
+
previous period
|
1154
|
+
requestTotalPrevious:
|
1155
|
+
type: number
|
1156
|
+
description: Number of requests for the resource globally for the previous
|
1157
|
+
period
|
1108
1158
|
rps:
|
1109
1159
|
type: number
|
1110
1160
|
description: Number of requests per second for the resource globally
|
@@ -1112,6 +1162,14 @@ components:
|
|
1112
1162
|
type: object
|
1113
1163
|
description: Number of requests per second for the resource globally per
|
1114
1164
|
code
|
1165
|
+
rpsPerCodePrevious:
|
1166
|
+
type: object
|
1167
|
+
description: Number of requests per second for the resource globally per
|
1168
|
+
code for the previous period
|
1169
|
+
rpsPrevious:
|
1170
|
+
type: number
|
1171
|
+
description: Number of requests per second for the resource globally for
|
1172
|
+
the previous period
|
1115
1173
|
tokenRate:
|
1116
1174
|
$ref: '#/components/schemas/TokenRateMetrics'
|
1117
1175
|
description: Historical requests (in last 24 hours) for the model deployment
|
@@ -1176,6 +1234,9 @@ components:
|
|
1176
1234
|
type: array
|
1177
1235
|
description: The command to run the deployment
|
1178
1236
|
items: {}
|
1237
|
+
configuration:
|
1238
|
+
type: object
|
1239
|
+
description: The configuration for the deployment
|
1179
1240
|
cpu:
|
1180
1241
|
type: integer
|
1181
1242
|
description: The CPU for the deployment in cores, only available for private
|
@@ -1189,35 +1250,125 @@ components:
|
|
1189
1250
|
description: The env variables to set in the deployment. Should be a list
|
1190
1251
|
of Kubernetes EnvVar types
|
1191
1252
|
items: {}
|
1253
|
+
generation:
|
1254
|
+
type: string
|
1255
|
+
description: The generation of the deployment
|
1192
1256
|
image:
|
1193
1257
|
type: string
|
1194
1258
|
description: The Docker image for the deployment
|
1259
|
+
maxScale:
|
1260
|
+
type: integer
|
1261
|
+
description: The minimum number of replicas for the deployment. Can be 0
|
1262
|
+
or 1 (in which case the deployment is always running in at least one location).
|
1195
1263
|
memory:
|
1196
1264
|
type: integer
|
1197
1265
|
description: The memory for the deployment in MB
|
1198
1266
|
metricPort:
|
1199
1267
|
type: integer
|
1200
1268
|
description: The port to serve the metrics on
|
1269
|
+
minScale:
|
1270
|
+
type: integer
|
1271
|
+
description: The maximum number of replicas for the deployment.
|
1201
1272
|
model:
|
1202
1273
|
type: string
|
1203
1274
|
description: The slug name of the origin model at HuggingFace.
|
1204
1275
|
organization:
|
1205
1276
|
type: string
|
1206
1277
|
description: The organization of the model
|
1207
|
-
|
1208
|
-
|
1209
|
-
description: The
|
1278
|
+
ports:
|
1279
|
+
$ref: '#/components/schemas/Ports'
|
1280
|
+
description: The exposed ports of the resource
|
1210
1281
|
startupProbe:
|
1211
1282
|
type: object
|
1212
1283
|
description: The readiness probe. Should be a Kubernetes Probe type
|
1284
|
+
timeout:
|
1285
|
+
type: integer
|
1286
|
+
description: The timeout for the deployment in seconds
|
1213
1287
|
type:
|
1214
1288
|
type: string
|
1215
1289
|
description: The type of origin for the deployment (hf_private_endpoint,
|
1216
1290
|
hf_public_endpoint)
|
1291
|
+
Sandbox:
|
1292
|
+
type: object
|
1293
|
+
description: Micro VM for running agentic tasks
|
1294
|
+
properties:
|
1295
|
+
events:
|
1296
|
+
$ref: '#/components/schemas/CoreEvents'
|
1297
|
+
metadata:
|
1298
|
+
$ref: '#/components/schemas/Metadata'
|
1299
|
+
spec:
|
1300
|
+
$ref: '#/components/schemas/SandboxSpec'
|
1301
|
+
status:
|
1302
|
+
type: string
|
1303
|
+
description: Sandbox status
|
1304
|
+
SandboxDefinition:
|
1305
|
+
type: object
|
1306
|
+
description: Sandbox definition for admin store operations
|
1307
|
+
properties:
|
1308
|
+
categories:
|
1309
|
+
type: array
|
1310
|
+
description: Categories of the defintion
|
1311
|
+
items: {}
|
1312
|
+
coming_soon:
|
1313
|
+
type: boolean
|
1314
|
+
description: If the definition is coming soon
|
1315
|
+
description:
|
1316
|
+
type: string
|
1317
|
+
description: Description of the defintion
|
1318
|
+
displayName:
|
1319
|
+
type: string
|
1320
|
+
description: Display name of the definition
|
1321
|
+
enterprise:
|
1322
|
+
type: boolean
|
1323
|
+
description: If the definition is enterprise
|
1324
|
+
icon:
|
1325
|
+
type: string
|
1326
|
+
description: Icon of the definition
|
1327
|
+
image:
|
1328
|
+
type: string
|
1329
|
+
description: Image of the Sandbox definition
|
1330
|
+
longDescription:
|
1331
|
+
type: string
|
1332
|
+
description: Long description of the defintion
|
1333
|
+
memory:
|
1334
|
+
type: integer
|
1335
|
+
description: Memory of the Sandbox definition in MB
|
1336
|
+
name:
|
1337
|
+
type: string
|
1338
|
+
description: Name of the artifact
|
1339
|
+
ports:
|
1340
|
+
$ref: '#/components/schemas/Ports'
|
1341
|
+
url:
|
1342
|
+
type: string
|
1343
|
+
description: URL of the definition
|
1344
|
+
SandboxSpec:
|
1345
|
+
type: object
|
1346
|
+
description: Sandbox specification
|
1347
|
+
allOf:
|
1348
|
+
- $ref: '#/components/schemas/CoreSpec'
|
1349
|
+
- {}
|
1350
|
+
SandboxStoreDefinitionName:
|
1351
|
+
description: Name of a Sandbox definition
|
1352
|
+
Sandboxes:
|
1353
|
+
description: Micro VM for running agentic tasks
|
1354
|
+
properties:
|
1355
|
+
events:
|
1356
|
+
$ref: '#/components/schemas/CoreEvents'
|
1357
|
+
metadata:
|
1358
|
+
$ref: '#/components/schemas/Metadata'
|
1359
|
+
spec:
|
1360
|
+
$ref: '#/components/schemas/SandboxSpec'
|
1361
|
+
status:
|
1362
|
+
description: Sandbox status
|
1363
|
+
type: string
|
1364
|
+
type: object
|
1217
1365
|
ServerlessConfig:
|
1218
1366
|
type: object
|
1219
1367
|
description: Configuration for a serverless deployment
|
1220
1368
|
properties:
|
1369
|
+
configuration:
|
1370
|
+
type: object
|
1371
|
+
description: The configuration for the deployment
|
1221
1372
|
maxScale:
|
1222
1373
|
type: integer
|
1223
1374
|
description: The minimum number of replicas for the deployment. Can be 0
|
@@ -1239,6 +1390,30 @@ components:
|
|
1239
1390
|
value:
|
1240
1391
|
type: string
|
1241
1392
|
description: Configuration value
|
1393
|
+
StartSandbox:
|
1394
|
+
type: object
|
1395
|
+
description: Response when starting a Sandbox
|
1396
|
+
properties:
|
1397
|
+
message:
|
1398
|
+
type: string
|
1399
|
+
description: Human readable message about the start operation
|
1400
|
+
metadata:
|
1401
|
+
$ref: '#/components/schemas/Metadata'
|
1402
|
+
status:
|
1403
|
+
type: string
|
1404
|
+
description: Status of the Sandbox start operation
|
1405
|
+
StopSandbox:
|
1406
|
+
type: object
|
1407
|
+
description: Response when stopping a Sandbox
|
1408
|
+
properties:
|
1409
|
+
message:
|
1410
|
+
type: string
|
1411
|
+
description: Human readable message about the stop operation
|
1412
|
+
metadata:
|
1413
|
+
$ref: '#/components/schemas/Metadata'
|
1414
|
+
status:
|
1415
|
+
type: string
|
1416
|
+
description: Status of the Sandbox stop operation
|
1242
1417
|
StoreAgent:
|
1243
1418
|
type: object
|
1244
1419
|
description: Store agent
|
@@ -1457,6 +1632,24 @@ components:
|
|
1457
1632
|
TraceIdsResponse:
|
1458
1633
|
type: object
|
1459
1634
|
description: Trace IDs response
|
1635
|
+
Trigger:
|
1636
|
+
type: object
|
1637
|
+
description: Trigger configuration
|
1638
|
+
properties:
|
1639
|
+
configuration:
|
1640
|
+
type: object
|
1641
|
+
description: The configuration of the trigger
|
1642
|
+
id:
|
1643
|
+
type: string
|
1644
|
+
description: The id of the trigger
|
1645
|
+
type:
|
1646
|
+
type: string
|
1647
|
+
description: The type of trigger, can be http or http-async
|
1648
|
+
Triggers:
|
1649
|
+
type: array
|
1650
|
+
description: Triggers to use your agent
|
1651
|
+
items:
|
1652
|
+
$ref: '#/components/schemas/Trigger'
|
1460
1653
|
WebsocketChannel:
|
1461
1654
|
type: object
|
1462
1655
|
description: WebSocket connection details
|
@@ -1491,6 +1684,15 @@ components:
|
|
1491
1684
|
region:
|
1492
1685
|
type: string
|
1493
1686
|
description: Workspace write region
|
1687
|
+
runtime:
|
1688
|
+
$ref: '#/components/schemas/WorkspaceRuntime'
|
1689
|
+
WorkspaceRuntime:
|
1690
|
+
type: object
|
1691
|
+
description: Workspace runtime
|
1692
|
+
properties:
|
1693
|
+
generation:
|
1694
|
+
type: string
|
1695
|
+
description: Workspace generation
|
1494
1696
|
WorkspaceUser:
|
1495
1697
|
type: object
|
1496
1698
|
description: Workspace user
|
@@ -1779,7 +1981,8 @@ paths:
|
|
1779
1981
|
content:
|
1780
1982
|
application/json:
|
1781
1983
|
schema:
|
1782
|
-
|
1984
|
+
items:
|
1985
|
+
$ref: '#/components/schemas/RevisionMetadata'
|
1783
1986
|
type: array
|
1784
1987
|
description: successful operation
|
1785
1988
|
security:
|
@@ -2090,7 +2293,8 @@ paths:
|
|
2090
2293
|
content:
|
2091
2294
|
application/json:
|
2092
2295
|
schema:
|
2093
|
-
|
2296
|
+
items:
|
2297
|
+
$ref: '#/components/schemas/RevisionMetadata'
|
2094
2298
|
type: array
|
2095
2299
|
description: successful operation
|
2096
2300
|
security:
|
@@ -2252,7 +2456,8 @@ paths:
|
|
2252
2456
|
content:
|
2253
2457
|
application/json:
|
2254
2458
|
schema:
|
2255
|
-
|
2459
|
+
items:
|
2460
|
+
$ref: '#/components/schemas/RevisionMetadata'
|
2256
2461
|
type: array
|
2257
2462
|
description: successful operation
|
2258
2463
|
security:
|
@@ -2541,6 +2746,176 @@ paths:
|
|
2541
2746
|
summary: List pending invitations
|
2542
2747
|
tags:
|
2543
2748
|
- invitations
|
2749
|
+
/sandbox/hub:
|
2750
|
+
get:
|
2751
|
+
operationId: ListSandboxHubDefinitions
|
2752
|
+
responses:
|
2753
|
+
"200":
|
2754
|
+
content:
|
2755
|
+
application/json:
|
2756
|
+
schema:
|
2757
|
+
items:
|
2758
|
+
$ref: '#/components/schemas/SandboxDefinition'
|
2759
|
+
type: array
|
2760
|
+
description: successful operation
|
2761
|
+
security:
|
2762
|
+
- BearerAuth:
|
2763
|
+
- sandboxhub:list
|
2764
|
+
/sandboxes:
|
2765
|
+
get:
|
2766
|
+
description: Returns a list of all Sandboxes in the workspace.
|
2767
|
+
operationId: ListSandboxes
|
2768
|
+
responses:
|
2769
|
+
"200":
|
2770
|
+
content:
|
2771
|
+
application/json:
|
2772
|
+
schema:
|
2773
|
+
items:
|
2774
|
+
$ref: '#/components/schemas/Sandbox'
|
2775
|
+
type: array
|
2776
|
+
description: successful operation
|
2777
|
+
security:
|
2778
|
+
- BearerAuth:
|
2779
|
+
- sandboxes:list
|
2780
|
+
summary: List Sandboxes
|
2781
|
+
tags:
|
2782
|
+
- compute
|
2783
|
+
post:
|
2784
|
+
description: Creates a Sandbox.
|
2785
|
+
operationId: CreateSandbox
|
2786
|
+
requestBody:
|
2787
|
+
content:
|
2788
|
+
application/json:
|
2789
|
+
schema:
|
2790
|
+
$ref: '#/components/schemas/Sandbox'
|
2791
|
+
required: true
|
2792
|
+
responses:
|
2793
|
+
"200":
|
2794
|
+
content:
|
2795
|
+
application/json:
|
2796
|
+
schema:
|
2797
|
+
$ref: '#/components/schemas/Sandbox'
|
2798
|
+
description: successful operation
|
2799
|
+
security:
|
2800
|
+
- BearerAuth:
|
2801
|
+
- sandboxes:create
|
2802
|
+
summary: Create Sandbox
|
2803
|
+
tags:
|
2804
|
+
- compute
|
2805
|
+
/sandboxes/{sandboxName}:
|
2806
|
+
delete:
|
2807
|
+
description: Deletes a Sandbox by name.
|
2808
|
+
operationId: DeleteSandbox
|
2809
|
+
responses:
|
2810
|
+
"200":
|
2811
|
+
content:
|
2812
|
+
application/json:
|
2813
|
+
schema:
|
2814
|
+
$ref: '#/components/schemas/Sandbox'
|
2815
|
+
description: successful operation
|
2816
|
+
security:
|
2817
|
+
- BearerAuth:
|
2818
|
+
- sandboxes:delete
|
2819
|
+
summary: Delete Sandbox
|
2820
|
+
tags:
|
2821
|
+
- compute
|
2822
|
+
get:
|
2823
|
+
description: Returns a Sandbox by name.
|
2824
|
+
operationId: GetSandbox
|
2825
|
+
responses:
|
2826
|
+
"200":
|
2827
|
+
content:
|
2828
|
+
application/json:
|
2829
|
+
schema:
|
2830
|
+
$ref: '#/components/schemas/Sandbox'
|
2831
|
+
description: successful operation
|
2832
|
+
security:
|
2833
|
+
- BearerAuth:
|
2834
|
+
- sandboxes:get
|
2835
|
+
summary: Get Sandbox
|
2836
|
+
tags:
|
2837
|
+
- compute
|
2838
|
+
parameters:
|
2839
|
+
- description: Name of the Sandbox
|
2840
|
+
in: path
|
2841
|
+
name: sandboxName
|
2842
|
+
required: true
|
2843
|
+
schema:
|
2844
|
+
type: string
|
2845
|
+
put:
|
2846
|
+
description: Update a Sandbox by name.
|
2847
|
+
operationId: UpdateSandbox
|
2848
|
+
requestBody:
|
2849
|
+
content:
|
2850
|
+
application/json:
|
2851
|
+
schema:
|
2852
|
+
$ref: '#/components/schemas/Sandbox'
|
2853
|
+
required: true
|
2854
|
+
responses:
|
2855
|
+
"200":
|
2856
|
+
content:
|
2857
|
+
application/json:
|
2858
|
+
schema:
|
2859
|
+
$ref: '#/components/schemas/Sandbox'
|
2860
|
+
description: successful operation
|
2861
|
+
security:
|
2862
|
+
- BearerAuth:
|
2863
|
+
- sandboxes:update
|
2864
|
+
summary: Update Sandbox
|
2865
|
+
tags:
|
2866
|
+
- compute
|
2867
|
+
/sandboxes/{sandboxName}/start:
|
2868
|
+
put:
|
2869
|
+
description: Starts a Sandbox by name.
|
2870
|
+
operationId: StartSandbox
|
2871
|
+
parameters:
|
2872
|
+
- description: Name of the Sandbox
|
2873
|
+
in: path
|
2874
|
+
name: sandboxName
|
2875
|
+
required: true
|
2876
|
+
schema:
|
2877
|
+
type: string
|
2878
|
+
responses:
|
2879
|
+
"200":
|
2880
|
+
content:
|
2881
|
+
application/json:
|
2882
|
+
schema:
|
2883
|
+
$ref: '#/components/schemas/StartSandbox'
|
2884
|
+
description: successful operation
|
2885
|
+
"409":
|
2886
|
+
description: Sandbox is already running
|
2887
|
+
security:
|
2888
|
+
- BearerAuth:
|
2889
|
+
- sandboxes:control
|
2890
|
+
summary: Start Sandbox
|
2891
|
+
tags:
|
2892
|
+
- compute
|
2893
|
+
/sandboxes/{sandboxName}/stop:
|
2894
|
+
put:
|
2895
|
+
description: Stops a Sandbox by name.
|
2896
|
+
operationId: StopSandbox
|
2897
|
+
parameters:
|
2898
|
+
- description: Name of the Sandbox
|
2899
|
+
in: path
|
2900
|
+
name: sandboxName
|
2901
|
+
required: true
|
2902
|
+
schema:
|
2903
|
+
type: string
|
2904
|
+
responses:
|
2905
|
+
"200":
|
2906
|
+
content:
|
2907
|
+
application/json:
|
2908
|
+
schema:
|
2909
|
+
$ref: '#/components/schemas/StopSandbox'
|
2910
|
+
description: successful operation
|
2911
|
+
"409":
|
2912
|
+
description: Sandbox is not running
|
2913
|
+
security:
|
2914
|
+
- BearerAuth:
|
2915
|
+
- sandboxes:control
|
2916
|
+
summary: Stop Sandbox
|
2917
|
+
tags:
|
2918
|
+
- compute
|
2544
2919
|
/service_accounts:
|
2545
2920
|
get:
|
2546
2921
|
description: Returns a list of all service accounts in the workspace.
|
@@ -2808,7 +3183,8 @@ paths:
|
|
2808
3183
|
content:
|
2809
3184
|
application/json:
|
2810
3185
|
schema:
|
2811
|
-
|
3186
|
+
items:
|
3187
|
+
$ref: '#/components/schemas/Template'
|
2812
3188
|
type: array
|
2813
3189
|
description: successful operation
|
2814
3190
|
security:
|
@@ -35,7 +35,7 @@ async def log_requests(request: Request, call_next):
|
|
35
35
|
response: Response = await call_next(request)
|
36
36
|
|
37
37
|
process_time = (time.time() - start_time) * 1000
|
38
|
-
formatted_process_time = '{
|
38
|
+
formatted_process_time = f'{process_time:.2f}'
|
39
39
|
rid_header = response.headers.get("X-Request-Id")
|
40
40
|
request_id = rid_header or response.headers.get("X-Blaxel-Request-Id")
|
41
41
|
logger.info(f"{request.method} {request.url.path} {response.status_code} {formatted_process_time}ms rid={request_id}")
|