blaxel 0.1.16rc60__tar.gz → 0.1.18__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.18/PKG-INFO +169 -0
- blaxel-0.1.18/README.md +101 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/sandbox.py +9 -28
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/sandbox_502.py +4 -25
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/sandbox_preview.py +3 -25
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/sandbox_small.py +3 -3
- blaxel-0.1.18/integrationtest/utils.py +41 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/pyproject.toml +7 -1
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/authentication/clientcredentials.py +1 -1
- blaxel-0.1.18/src/blaxel/client/api/jobs/create_job.py +166 -0
- blaxel-0.1.16rc60/src/blaxel/client/api/default/get_template_contents.py → blaxel-0.1.18/src/blaxel/client/api/jobs/delete_job.py +44 -31
- blaxel-0.1.18/src/blaxel/client/api/jobs/get_job.py +154 -0
- blaxel-0.1.18/src/blaxel/client/api/jobs/list_job_revisions.py +159 -0
- blaxel-0.1.18/src/blaxel/client/api/jobs/list_jobs.py +135 -0
- blaxel-0.1.18/src/blaxel/client/api/jobs/update_job.py +179 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/__init__.py +34 -0
- blaxel-0.1.18/src/blaxel/client/models/job.py +129 -0
- blaxel-0.1.18/src/blaxel/client/models/job_execution_config.py +79 -0
- blaxel-0.1.18/src/blaxel/client/models/job_metrics.py +199 -0
- blaxel-0.1.18/src/blaxel/client/models/job_metrics_executions_chart.py +45 -0
- blaxel-0.1.18/src/blaxel/client/models/job_metrics_executions_total.py +45 -0
- blaxel-0.1.18/src/blaxel/client/models/job_metrics_tasks_chart.py +45 -0
- blaxel-0.1.18/src/blaxel/client/models/job_metrics_tasks_total.py +45 -0
- blaxel-0.1.18/src/blaxel/client/models/job_spec.py +208 -0
- blaxel-0.1.18/src/blaxel/client/models/jobs_chart.py +94 -0
- blaxel-0.1.18/src/blaxel/client/models/jobs_chart_value.py +70 -0
- blaxel-0.1.18/src/blaxel/client/models/jobs_executions.py +88 -0
- blaxel-0.1.18/src/blaxel/client/models/jobs_network_chart.py +94 -0
- blaxel-0.1.18/src/blaxel/client/models/jobs_success_failed_chart.py +139 -0
- blaxel-0.1.18/src/blaxel/client/models/jobs_tasks.py +88 -0
- blaxel-0.1.18/src/blaxel/client/models/jobs_total.py +97 -0
- blaxel-0.1.18/src/blaxel/client/models/preview_spec.py +142 -0
- blaxel-0.1.18/src/blaxel/client/models/preview_spec_request_headers.py +48 -0
- blaxel-0.1.18/src/blaxel/client/models/preview_spec_response_headers.py +45 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/runtime.py +18 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/serverless_config.py +9 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/common/internal.py +0 -2
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/common/logger.py +14 -6
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/jobs/__init__.py +4 -8
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/filesystem/delete_filesystem_path.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/filesystem/get_filesystem_path.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/filesystem/get_watch_filesystem_path.py +22 -1
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/filesystem/put_filesystem_path.py +8 -4
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/network/delete_network_process_pid_monitor.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/network/get_network_process_pid_ports.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/network/post_network_process_pid_monitor.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/delete_process_identifier.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/delete_process_identifier_kill.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/get_process_identifier_logs.py +16 -16
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/get_process_identifier_logs_stream.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/get_ws_process_identifier_logs_stream.py +8 -8
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/post_process.py +4 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/__init__.py +4 -2
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/directory.py +9 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/file.py +9 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/file_with_content.py +9 -0
- blaxel-0.1.18/src/blaxel/sandbox/client/models/process_logs.py +78 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/process_response.py +12 -4
- blaxel-0.1.18/src/blaxel/sandbox/client/models/process_response_status.py +12 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/subdirectory.py +9 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/preview.py +13 -17
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/process.py +8 -9
- blaxel-0.1.18/templates/endpoint_init.py.jinja +0 -0
- blaxel-0.1.16rc60/PKG-INFO +0 -397
- blaxel-0.1.16rc60/README.md +0 -333
- blaxel-0.1.16rc60/src/blaxel/client/api/default/get_template_file_contents.py +0 -153
- blaxel-0.1.16rc60/src/blaxel/client/models/preview_spec.py +0 -88
- blaxel-0.1.16rc60/src/blaxel/sandbox/client/models/get_process_identifier_logs_response_200.py +0 -45
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/.github/workflows/dev.yaml +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/.github/workflows/prod.yaml +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/.gitignore +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/LICENSE +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/Makefile +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/blaxel.toml +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/doc.sh +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/agents.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/agents/create_agent.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/agents/delete_agent.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/agents/get_agent.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/agents/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/agents/list_agent_revisions.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/agents/list_agents.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/agents/update_agent.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/configurations/get_configuration.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/configurations/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/default/get_template.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/default/get_template_contents.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/default/get_template_file_contents.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/default/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/default/list_mcp_hub_definitions.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/functions/create_function.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/functions/delete_function.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/functions/get_function.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/functions/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/functions/list_function_revisions.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/functions/list_functions.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/functions/update_function.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/create_integration_connection.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/delete_integration_connection.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/get_integration.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/get_integration_connection.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/get_integration_connection_model.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/get_integration_connection_model_endpoint_configurations.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/list_integration_connection_models.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/list_integration_connections.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/integrations/update_integration_connection.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/invitations/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/invitations/list_all_pending_invitations.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/knowledgebases/create_knowledgebase.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/knowledgebases/delete_knowledgebase.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/knowledgebases/get_knowledgebase.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/knowledgebases/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/knowledgebases/list_knowledgebase_revisions.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/knowledgebases/list_knowledgebases.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/knowledgebases/update_knowledgebase.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/locations/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/locations/list_locations.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/models/create_model.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/models/delete_model.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/models/get_model.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/models/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/models/list_model_revisions.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/models/list_models.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/models/update_model.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/policies/create_policy.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/policies/delete_policy.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/policies/get_policy.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/policies/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/policies/list_policies.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/policies/update_policy.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/create_private_cluster.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/delete_private_cluster.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/get_private_cluster.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/get_private_cluster_health.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/list_private_clusters.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/update_private_cluster.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/privateclusters/update_private_cluster_health.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/create_api_key_for_service_account.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/create_workspace_service_account.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/delete_api_key_for_service_account.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/delete_workspace_service_account.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/get_workspace_service_accounts.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/list_api_keys_for_service_account.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/service_accounts/update_workspace_service_account.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/templates/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/templates/list_templates.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/accept_workspace_invitation.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/create_worspace.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/decline_workspace_invitation.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/delete_workspace.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/get_workspace.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/invite_workspace_user.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/leave_workspace.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/list_workspace_users.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/list_workspaces.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/remove_workspace_user.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/update_workspace.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/api/workspaces/update_workspace_user_role.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/authentication/apikey.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/authentication/authentication.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/authentication/clientcredentials.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/authentication/credentials.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/authentication/device_mode.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/authentication/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/client.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/common/error.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/common/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/common/instrumentation.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/common/logger.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/common/secrets.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/common/settings.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/common/utils.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/deploy/deploy.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/deploy/format.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/deploy/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/deploy/parser.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/errors.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/functions.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/knowledgebases/chroma.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/knowledgebases/embeddings.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/knowledgebases/factory.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/knowledgebases/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/knowledgebases/pinecone.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/knowledgebases/qdrant.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/knowledgebases/types.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/acl.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/agent.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/agent_chain.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/agent_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/api_key.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/configuration.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/continent.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/core_event.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/core_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/core_spec_configurations.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/country.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/create_api_key_for_service_account_body.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/create_workspace_service_account_body.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/create_workspace_service_account_response_200.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/delete_workspace_service_account_response_200.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/entrypoint.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/entrypoint_env.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/flavor.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/form.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/form_config.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/form_oauth.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/form_secrets.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/function.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/function_kit.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/function_schema.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/function_schema_not.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/function_schema_or_bool.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/function_schema_properties.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/function_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/get_workspace_service_accounts_response_200_item.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/histogram_bucket.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/histogram_stats.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/integration_connection.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/integration_connection_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/integration_connection_spec_config.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/integration_connection_spec_secret.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/integration_model.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/integration_repository.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/invite_workspace_user_body.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/knowledgebase.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/knowledgebase_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/knowledgebase_spec_options.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/last_n_requests_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/latency_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/location_response.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/mcp_definition.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/mcp_definition_entrypoint.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/mcp_definition_form.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/memory_allocation_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/metadata.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/metadata_labels.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/metrics.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/metrics_models.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/metrics_request_total_per_code.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/metrics_rps_per_code.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/model.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/model_private_cluster.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/model_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/o_auth.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/owner_fields.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/pending_invitation.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/pending_invitation_accept.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/pending_invitation_render.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/pending_invitation_render_invited_by.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/pending_invitation_render_workspace.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/pending_invitation_workspace_details.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/pod_template_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/policy.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/policy_location.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/policy_max_tokens.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/policy_spec.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/private_cluster.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/private_location.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/repository.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_duration_over_time_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_duration_over_time_metrics.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_total_by_origin_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_total_by_origin_metric_request_total_by_origin.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_total_by_origin_metric_request_total_by_origin_and_code.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_total_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_total_metric_request_total_per_code.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/request_total_metric_rps_per_code.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/resource_log.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/resource_metrics.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/resource_metrics_request_total_per_code.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/resource_metrics_rps_per_code.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/revision_configuration.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/revision_metadata.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/runtime.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/runtime_startup_probe.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/serverless_config.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/spec_configuration.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/store_agent.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/store_agent_labels.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/store_configuration.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/store_configuration_option.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/template.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/template_variable.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/time_fields.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/time_to_first_token_over_time_metrics.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/token_rate_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/token_rate_metrics.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/token_total_metric.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/trace_ids_response.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/update_workspace_service_account_body.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/update_workspace_service_account_response_200.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/update_workspace_user_role_body.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/websocket_channel.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/workspace.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/workspace_labels.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/models/workspace_user.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/run.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/serve/app.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/serve/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/serve/middlewares/accesslog.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/serve/middlewares/index.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/serve/middlewares/processtime.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel/types.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/docs/blaxel-docs.md +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_crewai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_googleadk.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_langchain.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_langgraph.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_livekit.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_llamaindex.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_openai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/agent_pydantic.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/bl_agents.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/bl_jobs.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/bl_models.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/bl_tools.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/client.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/env.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/fastapi_crewai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/fastapi_google_adk.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/fastapi_langchain.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/fastapi_llamaindex.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/fastapi_openai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/fastapi_pydantic.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/global_hash.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/load_test.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/mcp_client.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/mcp_creation.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/integrationtest/mcp_server.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/openapi-python-client.yml +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/agents/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/authentication/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/authentication/apikey.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/authentication/devicemode.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/authentication/oauth.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/authentication/types.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/cache/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/cache/cache.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/agents/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/agents/create_agent.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/agents/delete_agent.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/agents/get_agent.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/agents/list_agent_revisions.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/agents/list_agents.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/agents/update_agent.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/create_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/create_sandbox_preview.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/create_sandbox_preview_token.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/delete_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/delete_sandbox_preview.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/delete_sandbox_preview_token.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/get_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/get_sandbox_preview.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/list_sandbox_preview_tokens.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/list_sandbox_previews.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/list_sandboxes.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/start_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/stop_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/update_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/compute/update_sandbox_preview.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/configurations/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/configurations/get_configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/default/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/default/get_template.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/default/list_mcp_hub_definitions.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/default/list_sandbox_hub_definitions.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/functions/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/functions/create_function.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/functions/delete_function.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/functions/get_function.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/functions/list_function_revisions.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/functions/list_functions.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/functions/update_function.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/create_integration_connection.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/delete_integration_connection.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/get_integration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/get_integration_connection.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/get_integration_connection_model.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/get_integration_connection_model_endpoint_configurations.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/list_integration_connection_models.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/list_integration_connections.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/integrations/update_integration_connection.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/invitations/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/invitations/list_all_pending_invitations.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/knowledgebases → blaxel-0.1.18/src/blaxel/client/api/jobs}/__init__.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/locations → blaxel-0.1.18/src/blaxel/client/api/knowledgebases}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/knowledgebases/create_knowledgebase.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/knowledgebases/delete_knowledgebase.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/knowledgebases/get_knowledgebase.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/knowledgebases/list_knowledgebase_revisions.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/knowledgebases/list_knowledgebases.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/knowledgebases/update_knowledgebase.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/models → blaxel-0.1.18/src/blaxel/client/api/locations}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/locations/list_locations.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/policies → blaxel-0.1.18/src/blaxel/client/api/models}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/models/create_model.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/models/delete_model.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/models/get_model.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/models/list_model_revisions.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/models/list_models.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/models/update_model.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/privateclusters → blaxel-0.1.18/src/blaxel/client/api/policies}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/policies/create_policy.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/policies/delete_policy.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/policies/get_policy.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/policies/list_policies.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/policies/update_policy.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/service_accounts → blaxel-0.1.18/src/blaxel/client/api/privateclusters}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/privateclusters/create_private_cluster.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/privateclusters/delete_private_cluster.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/privateclusters/get_private_cluster.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/privateclusters/get_private_cluster_health.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/privateclusters/list_private_clusters.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/privateclusters/update_private_cluster.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/privateclusters/update_private_cluster_health.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/templates → blaxel-0.1.18/src/blaxel/client/api/service_accounts}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/service_accounts/create_api_key_for_service_account.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/service_accounts/create_workspace_service_account.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/service_accounts/delete_api_key_for_service_account.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/service_accounts/delete_workspace_service_account.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/service_accounts/get_workspace_service_accounts.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/service_accounts/list_api_keys_for_service_account.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/service_accounts/update_workspace_service_account.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/client/api/workspaces → blaxel-0.1.18/src/blaxel/client/api/templates}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/templates/list_templates.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/sandbox/client/api/filesystem → blaxel-0.1.18/src/blaxel/client/api/workspaces}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/accept_workspace_invitation.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/check_workspace_availability.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/create_worspace.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/decline_workspace_invitation.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/delete_workspace.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/get_workspace.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/invite_workspace_user.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/leave_workspace.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/list_workspace_users.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/list_workspaces.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/remove_workspace_user.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/update_workspace.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/api/workspaces/update_workspace_user_role.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/client.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/errors.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/acl.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/agent.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/agent_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/api_key.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/check_workspace_availability_body.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/continent.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/core_event.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/core_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/core_spec_configurations.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/country.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/create_api_key_for_service_account_body.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/create_workspace_service_account_body.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/create_workspace_service_account_response_200.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/delete_sandbox_preview_token_response_200.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/delete_workspace_service_account_response_200.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/entrypoint.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/entrypoint_env.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/flavor.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/form.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/form_config.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/form_oauth.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/form_secrets.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/function.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/function_kit.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/function_schema.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/function_schema_not.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/function_schema_or_bool.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/function_schema_properties.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/function_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/get_workspace_service_accounts_response_200_item.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/histogram_bucket.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/histogram_stats.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_additional_infos.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_connection.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_connection_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_connection_spec_config.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_connection_spec_secret.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_endpoint.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_endpoint_token.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_endpoints.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_headers.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_model.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_organization.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_query_params.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/integration_repository.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/invite_workspace_user_body.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/knowledgebase.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/knowledgebase_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/knowledgebase_spec_options.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/last_n_requests_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/latency_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/location_response.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/mcp_definition.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/mcp_definition_entrypoint.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/mcp_definition_form.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/memory_allocation_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/metadata.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/metadata_labels.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/metrics.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/metrics_models.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/metrics_request_total_per_code.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/metrics_rps_per_code.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/model.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/model_private_cluster.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/model_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/o_auth.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/owner_fields.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/pending_invitation.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/pending_invitation_accept.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/pending_invitation_render.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/pending_invitation_render_invited_by.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/pending_invitation_render_workspace.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/pending_invitation_workspace_details.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/pod_template_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/policy.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/policy_location.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/policy_max_tokens.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/policy_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/port.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/preview.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/preview_metadata.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/preview_token.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/preview_token_metadata.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/preview_token_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/private_cluster.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/private_location.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/repository.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_duration_over_time_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_duration_over_time_metrics.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_total_by_origin_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_total_by_origin_metric_request_total_by_origin.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_total_by_origin_metric_request_total_by_origin_and_code.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_total_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_total_metric_request_total_per_code.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_total_metric_rps_per_code.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/request_total_response_data.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/resource_log.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/resource_metrics.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/resource_metrics_request_total_per_code.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/resource_metrics_request_total_per_code_previous.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/resource_metrics_rps_per_code.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/resource_metrics_rps_per_code_previous.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/revision_configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/revision_metadata.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/runtime_configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/runtime_startup_probe.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/sandbox_definition.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/sandbox_spec.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/serverless_config_configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/spec_configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/start_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/stop_sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/store_agent.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/store_agent_labels.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/store_configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/store_configuration_option.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/template.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/template_variable.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/time_fields.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/time_to_first_token_over_time_metrics.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/token_rate_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/token_rate_metrics.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/token_total_metric.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/trace_ids_response.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/trigger.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/trigger_configuration.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/update_workspace_service_account_body.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/update_workspace_service_account_response_200.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/update_workspace_user_role_body.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/websocket_channel.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/workspace.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/workspace_labels.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/workspace_runtime.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/models/workspace_user.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/py.typed +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/client/types.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/common/autoload.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/common/env.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/common/settings.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/instrumentation/exporters.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/instrumentation/log.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/instrumentation/manager.py +1 -1
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/instrumentation/map.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/instrumentation/span.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/mcp/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/mcp/client.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/mcp/server.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/crewai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/custom/langchain/gemini.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/custom/llamaindex/cohere.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/custom/pydantic/gemini.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/googleadk.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/langchain.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/livekit.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/llamaindex.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/openai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/models/pydantic.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/base.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/__init__.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/sandbox/client/api/network → blaxel-0.1.18/src/blaxel/sandbox/client/api/filesystem}/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/filesystem/get_ws_watch_filesystem_path.py +0 -0
- {blaxel-0.1.16rc60/src/blaxel/sandbox/client/api/process → blaxel-0.1.18/src/blaxel/sandbox/client/api/network}/__init__.py +0 -0
- /blaxel-0.1.16rc60/templates/endpoint_init.py.jinja → /blaxel-0.1.18/src/blaxel/sandbox/client/api/process/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/get_process.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/api/process/get_process_identifier.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/client.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/errors.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/delete_network_process_pid_monitor_response_200.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/error_response.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/file_request.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/get_network_process_pid_ports_response_200.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/port_monitor_request.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/post_network_process_pid_monitor_response_200.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/process_kill_request.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/process_request.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/models/success_response.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/py.typed +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/client/types.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/filesystem.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/sandbox/sandbox.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/__init__.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/common.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/crewai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/googleadk.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/langchain.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/livekit.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/llamaindex.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/openai.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/pydantic.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/src/blaxel/tools/types.py +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/.gitignore.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/README.md.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/api_init.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/client.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/endpoint_macros.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/endpoint_module.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/errors.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/helpers.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/int_enum.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/literal_enum.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/model.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/models_init.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/package_init.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/any_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/boolean_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/const_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/date_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/datetime_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/enum_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/file_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/float_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/helpers.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/int_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/list_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/literal_enum_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/model_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/property_macros.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/union_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/property_templates/uuid_property.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/pyproject.toml.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/pyproject_ruff.toml.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/setup.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/str_enum.py.jinja +0 -0
- {blaxel-0.1.16rc60 → blaxel-0.1.18}/templates/types.py.jinja +0 -0
blaxel-0.1.18/PKG-INFO
ADDED
@@ -0,0 +1,169 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: blaxel
|
3
|
+
Version: 0.1.18
|
4
|
+
Summary: Add your description here
|
5
|
+
Project-URL: Homepage, https://blaxel.ai
|
6
|
+
Project-URL: Documentation, https://docs.blaxel.ai
|
7
|
+
Project-URL: Repository, https://github.com/blaxel-ai/sdk-python
|
8
|
+
Project-URL: Changelog, https://docs.blaxel.ai/changelog
|
9
|
+
Author-email: cploujoux <cploujoux@blaxel.ai>
|
10
|
+
License-File: LICENSE
|
11
|
+
Requires-Python: >=3.10
|
12
|
+
Requires-Dist: attrs>=21.3.0
|
13
|
+
Requires-Dist: httpx>=0.27.0
|
14
|
+
Requires-Dist: mcp<=1.7.1
|
15
|
+
Requires-Dist: opentelemetry-api>=1.28.0
|
16
|
+
Requires-Dist: opentelemetry-exporter-otlp>=1.28.0
|
17
|
+
Requires-Dist: opentelemetry-instrumentation-anthropic==0.40.6
|
18
|
+
Requires-Dist: opentelemetry-instrumentation-cohere==0.40.6
|
19
|
+
Requires-Dist: opentelemetry-instrumentation-fastapi==0.54b1
|
20
|
+
Requires-Dist: opentelemetry-instrumentation-ollama==0.40.6
|
21
|
+
Requires-Dist: opentelemetry-instrumentation-openai==0.40.6
|
22
|
+
Requires-Dist: opentelemetry-instrumentation-system-metrics
|
23
|
+
Requires-Dist: opentelemetry-sdk>=1.28.0
|
24
|
+
Requires-Dist: pydantic<2.11.0,>=2.10.3
|
25
|
+
Requires-Dist: pyjwt>=2.10.1
|
26
|
+
Requires-Dist: python-dateutil>=2.8.0
|
27
|
+
Requires-Dist: pyyaml<6.1.0,>=6.0.2
|
28
|
+
Requires-Dist: requests<2.33.0,>=2.32.3
|
29
|
+
Requires-Dist: tomli>=2.2.1
|
30
|
+
Requires-Dist: websockets<15.0.0
|
31
|
+
Provides-Extra: crewai
|
32
|
+
Requires-Dist: crewai>=0.120.1; extra == 'crewai'
|
33
|
+
Requires-Dist: opentelemetry-instrumentation-crewai>=0.40.6; extra == 'crewai'
|
34
|
+
Provides-Extra: google-adk
|
35
|
+
Requires-Dist: google-adk>=0.2.0; extra == 'google-adk'
|
36
|
+
Requires-Dist: litellm>=1.63.11; extra == 'google-adk'
|
37
|
+
Provides-Extra: langchain
|
38
|
+
Requires-Dist: langchain-anthropic>=0.3.10; extra == 'langchain'
|
39
|
+
Requires-Dist: langchain-cerebras>=0.5.0; extra == 'langchain'
|
40
|
+
Requires-Dist: langchain-cohere>=0.4.3; extra == 'langchain'
|
41
|
+
Requires-Dist: langchain-community<0.4.0,>=0.3.3; extra == 'langchain'
|
42
|
+
Requires-Dist: langchain-core<0.4.0,>=0.3.13; extra == 'langchain'
|
43
|
+
Requires-Dist: langchain-deepseek-official>=0.1.0.post1; extra == 'langchain'
|
44
|
+
Requires-Dist: langchain-openai>=0.3.10; extra == 'langchain'
|
45
|
+
Requires-Dist: langchain-xai>=0.2.2; extra == 'langchain'
|
46
|
+
Requires-Dist: langgraph<0.3.0,>=0.2.40; extra == 'langchain'
|
47
|
+
Requires-Dist: opentelemetry-instrumentation-langchain>=0.35.0; extra == 'langchain'
|
48
|
+
Requires-Dist: pillow>=10.0.0; extra == 'langchain'
|
49
|
+
Provides-Extra: livekit
|
50
|
+
Requires-Dist: livekit-agents[anthropic,cartesia,deepgram,elevenlabs,groq,openai,silero,turn-detector]~=1.0; extra == 'livekit'
|
51
|
+
Requires-Dist: livekit-plugins-noise-cancellation~=0.2; extra == 'livekit'
|
52
|
+
Provides-Extra: llamaindex
|
53
|
+
Requires-Dist: llama-index-llms-anthropic>=0.6.10; extra == 'llamaindex'
|
54
|
+
Requires-Dist: llama-index-llms-cerebras>=0.2.2; extra == 'llamaindex'
|
55
|
+
Requires-Dist: llama-index-llms-cohere>=0.4.0; extra == 'llamaindex'
|
56
|
+
Requires-Dist: llama-index-llms-deepseek>=0.1.1; extra == 'llamaindex'
|
57
|
+
Requires-Dist: llama-index-llms-google-genai>=0.1.7; extra == 'llamaindex'
|
58
|
+
Requires-Dist: llama-index-llms-groq>=0.3.1; extra == 'llamaindex'
|
59
|
+
Requires-Dist: llama-index-llms-mistralai>=0.4.0; extra == 'llamaindex'
|
60
|
+
Requires-Dist: llama-index-llms-openai>=0.3.28; extra == 'llamaindex'
|
61
|
+
Requires-Dist: llama-index>=0.12.26; extra == 'llamaindex'
|
62
|
+
Requires-Dist: opentelemetry-instrumentation-llamaindex>=0.35.0; extra == 'llamaindex'
|
63
|
+
Provides-Extra: openai-agents
|
64
|
+
Requires-Dist: openai-agents>=0.0.7; extra == 'openai-agents'
|
65
|
+
Provides-Extra: pydantic-ai
|
66
|
+
Requires-Dist: pydantic-ai>=0.0.48; extra == 'pydantic-ai'
|
67
|
+
Description-Content-Type: text/markdown
|
68
|
+
|
69
|
+
# Blaxel Python SDK
|
70
|
+
|
71
|
+
<p align="center">
|
72
|
+
<img src="https://blaxel.ai/logo-bg.png" alt="Blaxel"/>
|
73
|
+
</p>
|
74
|
+
|
75
|
+
**Blaxel is a computing platform for AI agent builders, with all the services and infrastructure to build and deploy agents efficiently.** This repository contains the Python SDK to create and manage resources on Blaxel.
|
76
|
+
|
77
|
+
## Table of Contents
|
78
|
+
|
79
|
+
- [Installation](#installation)
|
80
|
+
- [Authentication](#authentication)
|
81
|
+
- [Features](#features)
|
82
|
+
- [Quickstart](#quickstart)
|
83
|
+
- [Contributing](#contributing)
|
84
|
+
- [License](#license)
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
## Installation
|
89
|
+
|
90
|
+
Install Blaxel SDK which lets you manage Blaxel resources.
|
91
|
+
|
92
|
+
```bash
|
93
|
+
## Using pip
|
94
|
+
pip install blaxel
|
95
|
+
|
96
|
+
## Using uv
|
97
|
+
uv pip install blaxel
|
98
|
+
|
99
|
+
## Using uv add
|
100
|
+
uv add blaxel
|
101
|
+
```
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
### Authentication
|
106
|
+
|
107
|
+
The Blaxel SDK authenticates with your workspace using credentials from these sources, in priority order:
|
108
|
+
1. When running on Blaxel, authentication is handled automatically
|
109
|
+
2. Variables in your .env file (`BL_WORKSPACE` and `BL_API_KEY`, or see [this page](https://docs.blaxel.ai/Agents/Variables-and-secrets) for other authentication options).
|
110
|
+
3. Environment variables from your machine
|
111
|
+
4. Configuration file created locally when you log in through Blaxel CLI (or deploy on Blaxel)
|
112
|
+
|
113
|
+
When developing locally, the recommended method is to just log in to your workspace with Blaxel CLI. This allows you to run Blaxel SDK functions that will automatically connect to your workspace without additional setup. When you deploy on Blaxel, this connection persists automatically.
|
114
|
+
|
115
|
+
When running Blaxel SDK from a remote server that is not Blaxel-hosted, we recommend using environment variables as described in the third option above.
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
## Features
|
120
|
+
- Agents & MCP servers
|
121
|
+
- [Create MCP servers](https://docs.blaxel.ai/Functions/Create-MCP-server)
|
122
|
+
- [Connect to MCP servers and model APIs hosted on Blaxel](https://docs.blaxel.ai/Agents/Develop-an-agent-ts)
|
123
|
+
- [Call agents from another agent](https://docs.blaxel.ai/Agents/Develop-an-agent-ts#connect-to-another-agent-multi-agent-chaining)
|
124
|
+
- [Deploy on Blaxel](https://docs.blaxel.ai/Agents/Deploy-an-agent)
|
125
|
+
- Sandboxes
|
126
|
+
- [Create and update sandboxes and sandbox previews](https://docs.blaxel.ai/Sandboxes/Overview)
|
127
|
+
- [Run filesystem operations and processes on a sandbox](https://docs.blaxel.ai/Sandboxes/Processes)
|
128
|
+
- [Use environment variables or secrets](https://docs.blaxel.ai/Agents/Variables-and-secrets)
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
## Quickstart
|
133
|
+
|
134
|
+
Blaxel CLI gives you a quick way to create new applications: agents, MCP servers, jobs, etc - and deploy them to Blaxel.
|
135
|
+
|
136
|
+
**Prerequisites**:
|
137
|
+
- **Node.js:** v18 or later.
|
138
|
+
- **Blaxel CLI:** Make sure you have Blaxel CLI installed. If not, [install it](https://docs.blaxel.ai/cli-reference/introduction):
|
139
|
+
```bash
|
140
|
+
curl -fsSL \
|
141
|
+
https://raw.githubusercontent.com/blaxel-ai/toolkit/main/install.sh \
|
142
|
+
| BINDIR=/usr/local/bin sudo -E sh
|
143
|
+
```
|
144
|
+
- **Blaxel login:** Login to Blaxel:
|
145
|
+
```bash
|
146
|
+
bl login YOUR-WORKSPACE
|
147
|
+
```
|
148
|
+
|
149
|
+
```bash
|
150
|
+
bl create-agent-app myfolder
|
151
|
+
cd myfolder
|
152
|
+
bl deploy
|
153
|
+
```
|
154
|
+
|
155
|
+
Also available:
|
156
|
+
- `bl create-mcp-server`
|
157
|
+
- `bl create-job`
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
## Contributing
|
162
|
+
|
163
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
## License
|
168
|
+
|
169
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
blaxel-0.1.18/README.md
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
# Blaxel Python SDK
|
2
|
+
|
3
|
+
<p align="center">
|
4
|
+
<img src="https://blaxel.ai/logo-bg.png" alt="Blaxel"/>
|
5
|
+
</p>
|
6
|
+
|
7
|
+
**Blaxel is a computing platform for AI agent builders, with all the services and infrastructure to build and deploy agents efficiently.** This repository contains the Python SDK to create and manage resources on Blaxel.
|
8
|
+
|
9
|
+
## Table of Contents
|
10
|
+
|
11
|
+
- [Installation](#installation)
|
12
|
+
- [Authentication](#authentication)
|
13
|
+
- [Features](#features)
|
14
|
+
- [Quickstart](#quickstart)
|
15
|
+
- [Contributing](#contributing)
|
16
|
+
- [License](#license)
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
## Installation
|
21
|
+
|
22
|
+
Install Blaxel SDK which lets you manage Blaxel resources.
|
23
|
+
|
24
|
+
```bash
|
25
|
+
## Using pip
|
26
|
+
pip install blaxel
|
27
|
+
|
28
|
+
## Using uv
|
29
|
+
uv pip install blaxel
|
30
|
+
|
31
|
+
## Using uv add
|
32
|
+
uv add blaxel
|
33
|
+
```
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
### Authentication
|
38
|
+
|
39
|
+
The Blaxel SDK authenticates with your workspace using credentials from these sources, in priority order:
|
40
|
+
1. When running on Blaxel, authentication is handled automatically
|
41
|
+
2. Variables in your .env file (`BL_WORKSPACE` and `BL_API_KEY`, or see [this page](https://docs.blaxel.ai/Agents/Variables-and-secrets) for other authentication options).
|
42
|
+
3. Environment variables from your machine
|
43
|
+
4. Configuration file created locally when you log in through Blaxel CLI (or deploy on Blaxel)
|
44
|
+
|
45
|
+
When developing locally, the recommended method is to just log in to your workspace with Blaxel CLI. This allows you to run Blaxel SDK functions that will automatically connect to your workspace without additional setup. When you deploy on Blaxel, this connection persists automatically.
|
46
|
+
|
47
|
+
When running Blaxel SDK from a remote server that is not Blaxel-hosted, we recommend using environment variables as described in the third option above.
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
## Features
|
52
|
+
- Agents & MCP servers
|
53
|
+
- [Create MCP servers](https://docs.blaxel.ai/Functions/Create-MCP-server)
|
54
|
+
- [Connect to MCP servers and model APIs hosted on Blaxel](https://docs.blaxel.ai/Agents/Develop-an-agent-ts)
|
55
|
+
- [Call agents from another agent](https://docs.blaxel.ai/Agents/Develop-an-agent-ts#connect-to-another-agent-multi-agent-chaining)
|
56
|
+
- [Deploy on Blaxel](https://docs.blaxel.ai/Agents/Deploy-an-agent)
|
57
|
+
- Sandboxes
|
58
|
+
- [Create and update sandboxes and sandbox previews](https://docs.blaxel.ai/Sandboxes/Overview)
|
59
|
+
- [Run filesystem operations and processes on a sandbox](https://docs.blaxel.ai/Sandboxes/Processes)
|
60
|
+
- [Use environment variables or secrets](https://docs.blaxel.ai/Agents/Variables-and-secrets)
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
## Quickstart
|
65
|
+
|
66
|
+
Blaxel CLI gives you a quick way to create new applications: agents, MCP servers, jobs, etc - and deploy them to Blaxel.
|
67
|
+
|
68
|
+
**Prerequisites**:
|
69
|
+
- **Node.js:** v18 or later.
|
70
|
+
- **Blaxel CLI:** Make sure you have Blaxel CLI installed. If not, [install it](https://docs.blaxel.ai/cli-reference/introduction):
|
71
|
+
```bash
|
72
|
+
curl -fsSL \
|
73
|
+
https://raw.githubusercontent.com/blaxel-ai/toolkit/main/install.sh \
|
74
|
+
| BINDIR=/usr/local/bin sudo -E sh
|
75
|
+
```
|
76
|
+
- **Blaxel login:** Login to Blaxel:
|
77
|
+
```bash
|
78
|
+
bl login YOUR-WORKSPACE
|
79
|
+
```
|
80
|
+
|
81
|
+
```bash
|
82
|
+
bl create-agent-app myfolder
|
83
|
+
cd myfolder
|
84
|
+
bl deploy
|
85
|
+
```
|
86
|
+
|
87
|
+
Also available:
|
88
|
+
- `bl create-mcp-server`
|
89
|
+
- `bl create-job`
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
## Contributing
|
94
|
+
|
95
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
## License
|
100
|
+
|
101
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
@@ -1,44 +1,21 @@
|
|
1
1
|
import asyncio
|
2
2
|
import logging
|
3
3
|
import os
|
4
|
+
import traceback
|
5
|
+
|
6
|
+
from utils import create_or_get_sandbox
|
4
7
|
|
5
|
-
from blaxel.client.models import Metadata, Port, Runtime, Sandbox, SandboxSpec
|
6
8
|
from blaxel.sandbox.base import ResponseError
|
7
9
|
from blaxel.sandbox.client.models import ProcessRequest
|
8
|
-
from blaxel.sandbox.sandbox import SandboxInstance
|
9
10
|
|
10
11
|
logger = logging.getLogger(__name__)
|
11
12
|
|
12
13
|
|
13
|
-
async def create_sandbox(sandbox_name: str):
|
14
|
-
# Create sandbox
|
15
|
-
image = "blaxel/prod-base:latest"
|
16
|
-
logger.info(f"Creating sandbox {sandbox_name} with image {image}")
|
17
|
-
sandbox = await SandboxInstance.create(Sandbox(
|
18
|
-
metadata=Metadata(name=sandbox_name),
|
19
|
-
spec=SandboxSpec(
|
20
|
-
runtime=Runtime(
|
21
|
-
image=image,
|
22
|
-
memory=2048,
|
23
|
-
cpu=2,
|
24
|
-
ports=[
|
25
|
-
Port(name="sandbox-api", target=8080, protocol="HTTP")
|
26
|
-
]
|
27
|
-
)
|
28
|
-
)
|
29
|
-
))
|
30
|
-
logger.info("Waiting for sandbox to be deployed")
|
31
|
-
await sandbox.wait(max_wait=120000, interval=1000)
|
32
|
-
logger.info("Sandbox deployed")
|
33
|
-
return sandbox
|
34
|
-
|
35
14
|
async def main():
|
36
15
|
user = os.environ.get("USER")
|
37
16
|
sandbox_name = "sandbox-test-3"
|
38
|
-
sandbox = None
|
39
17
|
try:
|
40
|
-
sandbox = await
|
41
|
-
sandbox = await SandboxInstance.get(sandbox_name)
|
18
|
+
sandbox = await create_or_get_sandbox(sandbox_name)
|
42
19
|
|
43
20
|
# Filesystem tests
|
44
21
|
await sandbox.fs.write(f"/Users/{user}/Downloads/test", "Hello world")
|
@@ -72,9 +49,13 @@ async def main():
|
|
72
49
|
await sandbox.process.kill("test")
|
73
50
|
except ResponseError as e:
|
74
51
|
logger.info(f"That is expected => {e.error}")
|
52
|
+
except Exception as e:
|
53
|
+
logger.error(f"Error => {e}")
|
54
|
+
tb_str = traceback.format_exception(type(e), e, e.__traceback__)
|
55
|
+
logger.error(f"Stacktrace: {''.join(tb_str)}")
|
75
56
|
finally:
|
76
57
|
logger.info("Deleting sandbox")
|
77
|
-
await SandboxInstance.delete(sandbox_name)
|
58
|
+
# await SandboxInstance.delete(sandbox_name)
|
78
59
|
|
79
60
|
if __name__ == "__main__":
|
80
61
|
asyncio.run(main())
|
@@ -3,7 +3,8 @@ import logging
|
|
3
3
|
import random
|
4
4
|
import string
|
5
5
|
|
6
|
-
from
|
6
|
+
from utils import create_or_get_sandbox
|
7
|
+
|
7
8
|
from blaxel.sandbox.client.models import ProcessRequest
|
8
9
|
from blaxel.sandbox.sandbox import SandboxInstance
|
9
10
|
|
@@ -14,28 +15,6 @@ def random_string(length: int):
|
|
14
15
|
return ''.join(random.choices(string.ascii_letters + string.digits, k=length)).lower()
|
15
16
|
|
16
17
|
|
17
|
-
async def create_sandbox(sandbox_name: str):
|
18
|
-
# Create sandbox
|
19
|
-
image = "blaxel/prod-base:latest"
|
20
|
-
logger.info(f"Creating sandbox {sandbox_name} with image {image}")
|
21
|
-
sandbox = await SandboxInstance.create(Sandbox(
|
22
|
-
metadata=Metadata(name=sandbox_name),
|
23
|
-
spec=SandboxSpec(
|
24
|
-
runtime=Runtime(
|
25
|
-
image=image,
|
26
|
-
memory=2048,
|
27
|
-
cpu=2,
|
28
|
-
ports=[
|
29
|
-
Port(name="sandbox-api", target=8080, protocol="HTTP")
|
30
|
-
]
|
31
|
-
)
|
32
|
-
)
|
33
|
-
))
|
34
|
-
logger.info("Waiting for sandbox to be deployed")
|
35
|
-
await sandbox.wait(max_wait=120000, interval=1000)
|
36
|
-
logger.info("Sandbox deployed")
|
37
|
-
return sandbox
|
38
|
-
|
39
18
|
async def run_process_with_retry(sandbox: SandboxInstance, command: str):
|
40
19
|
for _ in range(2):
|
41
20
|
try:
|
@@ -55,7 +34,7 @@ async def main():
|
|
55
34
|
sandbox_name = random_string(10)
|
56
35
|
try:
|
57
36
|
print(f"Creating sandbox {sandbox_name}")
|
58
|
-
sandbox = await
|
37
|
+
sandbox = await create_or_get_sandbox(sandbox_name)
|
59
38
|
sandbox = await SandboxInstance.get(sandbox_name)
|
60
39
|
await run_process_with_retry(sandbox, 'pwd')
|
61
40
|
await SandboxInstance.delete(sandbox_name)
|
@@ -67,7 +46,7 @@ async def main():
|
|
67
46
|
sandbox_name = random_string(10)
|
68
47
|
try:
|
69
48
|
print(f"Creating sandbox {sandbox_name}")
|
70
|
-
sandbox = await
|
49
|
+
sandbox = await create_or_get_sandbox(sandbox_name)
|
71
50
|
sandbox = await SandboxInstance.get(sandbox_name)
|
72
51
|
await run_process_with_retry(sandbox, 'pwd')
|
73
52
|
await SandboxInstance.delete(sandbox_name)
|
@@ -3,36 +3,14 @@ import logging
|
|
3
3
|
from datetime import datetime, timedelta, timezone
|
4
4
|
|
5
5
|
import aiohttp
|
6
|
+
from utils import create_or_get_sandbox
|
6
7
|
|
7
|
-
from blaxel.client.models import
|
8
|
-
Runtime, Sandbox, SandboxSpec)
|
8
|
+
from blaxel.client.models import Metadata, Preview, PreviewSpec
|
9
9
|
from blaxel.common.settings import settings
|
10
10
|
from blaxel.sandbox.sandbox import SandboxInstance
|
11
11
|
|
12
12
|
logger = logging.getLogger(__name__)
|
13
13
|
|
14
|
-
async def create_sandbox(sandbox_name: str):
|
15
|
-
# Create sandbox
|
16
|
-
image = "blaxel/prod-base:latest"
|
17
|
-
logger.info(f"Creating sandbox {sandbox_name} with image {image}")
|
18
|
-
sandbox = await SandboxInstance.create(Sandbox(
|
19
|
-
metadata=Metadata(name=sandbox_name),
|
20
|
-
spec=SandboxSpec(
|
21
|
-
runtime=Runtime(
|
22
|
-
image=image,
|
23
|
-
memory=2048,
|
24
|
-
cpu=2,
|
25
|
-
ports=[
|
26
|
-
Port(name="sandbox-api", target=8080, protocol="HTTP")
|
27
|
-
]
|
28
|
-
)
|
29
|
-
)
|
30
|
-
))
|
31
|
-
logger.info("Waiting for sandbox to be deployed")
|
32
|
-
await sandbox.wait(max_wait=120000, interval=1000)
|
33
|
-
logger.info("Sandbox deployed")
|
34
|
-
return sandbox
|
35
|
-
|
36
14
|
async def test_public_preview(sandbox: SandboxInstance):
|
37
15
|
try:
|
38
16
|
# Create a public preview
|
@@ -120,7 +98,7 @@ async def main():
|
|
120
98
|
sandbox_name = "sandbox-preview-test"
|
121
99
|
sandbox = None
|
122
100
|
try:
|
123
|
-
sandbox = await
|
101
|
+
sandbox = await create_or_get_sandbox(sandbox_name)
|
124
102
|
await test_public_preview(sandbox)
|
125
103
|
await test_private_preview(sandbox)
|
126
104
|
finally:
|
@@ -2,14 +2,14 @@ import asyncio
|
|
2
2
|
import json
|
3
3
|
import logging
|
4
4
|
|
5
|
-
from
|
5
|
+
from utils import create_or_get_sandbox
|
6
6
|
|
7
7
|
logger = logging.getLogger(__name__)
|
8
8
|
|
9
9
|
|
10
10
|
async def main():
|
11
|
-
sandbox_name = "
|
12
|
-
sandbox = await
|
11
|
+
sandbox_name = "sandbox-test-3"
|
12
|
+
sandbox = await create_or_get_sandbox(sandbox_name)
|
13
13
|
result = await sandbox.fs.ls("/root")
|
14
14
|
print(json.dumps(result.to_dict(), indent=4))
|
15
15
|
# Filesystem tests
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import logging
|
2
|
+
import os
|
3
|
+
|
4
|
+
from blaxel.client.models import Metadata, Port, Runtime, Sandbox, SandboxSpec
|
5
|
+
from blaxel.sandbox.sandbox import SandboxInstance
|
6
|
+
|
7
|
+
logger = logging.getLogger(__name__)
|
8
|
+
|
9
|
+
async def local_sandbox(sandbox_name: str):
|
10
|
+
os.environ[f"BL_SANDBOX_{sandbox_name.replace('-', '_').upper()}_URL"] = "http://localhost:8080"
|
11
|
+
sandbox = SandboxInstance(Sandbox(
|
12
|
+
metadata=Metadata(name=sandbox_name),
|
13
|
+
))
|
14
|
+
return sandbox
|
15
|
+
|
16
|
+
async def create_or_get_sandbox(sandbox_name: str):
|
17
|
+
# Create sandbox
|
18
|
+
# return await local_sandbox(sandbox_name)
|
19
|
+
try:
|
20
|
+
sandbox = await SandboxInstance.get(sandbox_name)
|
21
|
+
return sandbox
|
22
|
+
except Exception:
|
23
|
+
image = "blaxel/prod-base:latest"
|
24
|
+
logger.info(f"Creating sandbox {sandbox_name} with image {image}")
|
25
|
+
sandbox = await SandboxInstance.create(Sandbox(
|
26
|
+
metadata=Metadata(name=sandbox_name),
|
27
|
+
spec=SandboxSpec(
|
28
|
+
runtime=Runtime(
|
29
|
+
image=image,
|
30
|
+
memory=2048,
|
31
|
+
cpu=2,
|
32
|
+
ports=[
|
33
|
+
Port(name="sandbox-api", target=8080, protocol="HTTP")
|
34
|
+
]
|
35
|
+
)
|
36
|
+
)
|
37
|
+
))
|
38
|
+
logger.info("Waiting for sandbox to be deployed")
|
39
|
+
await sandbox.wait(max_wait=120000, interval=1000)
|
40
|
+
logger.info("Sandbox deployed")
|
41
|
+
return sandbox
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "blaxel"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.18"
|
4
4
|
description = "Add your description here"
|
5
5
|
readme = "README.md"
|
6
6
|
authors = [{ name = "cploujoux", email = "cploujoux@blaxel.ai" }]
|
@@ -92,3 +92,9 @@ ignore = ["UP006", "UP007", "UP035"]
|
|
92
92
|
|
93
93
|
[tool.hatch.build.targets.wheel]
|
94
94
|
packages = ["src/blaxel"]
|
95
|
+
|
96
|
+
[project.urls]
|
97
|
+
Homepage = "https://blaxel.ai"
|
98
|
+
Documentation = "https://docs.blaxel.ai"
|
99
|
+
Repository = "https://github.com/blaxel-ai/sdk-python"
|
100
|
+
Changelog = "https://docs.blaxel.ai/changelog"
|
@@ -4,10 +4,10 @@ authentication for Blaxel. It manages token refreshing and authentication flows
|
|
4
4
|
client credentials and refresh tokens.
|
5
5
|
"""
|
6
6
|
|
7
|
+
import time
|
7
8
|
from dataclasses import dataclass
|
8
9
|
from datetime import datetime, timedelta
|
9
10
|
from typing import Generator, Optional
|
10
|
-
import time
|
11
11
|
|
12
12
|
import requests
|
13
13
|
from httpx import Request, Response
|
@@ -0,0 +1,166 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import Client
|
8
|
+
from ...models.job import Job
|
9
|
+
from ...types import Response
|
10
|
+
|
11
|
+
|
12
|
+
def _get_kwargs(
|
13
|
+
*,
|
14
|
+
body: Job,
|
15
|
+
) -> dict[str, Any]:
|
16
|
+
headers: dict[str, Any] = {}
|
17
|
+
|
18
|
+
_kwargs: dict[str, Any] = {
|
19
|
+
"method": "post",
|
20
|
+
"url": "/jobs",
|
21
|
+
}
|
22
|
+
|
23
|
+
if type(body) == dict:
|
24
|
+
_body = body
|
25
|
+
else:
|
26
|
+
_body = body.to_dict()
|
27
|
+
|
28
|
+
_kwargs["json"] = _body
|
29
|
+
headers["Content-Type"] = "application/json"
|
30
|
+
|
31
|
+
_kwargs["headers"] = headers
|
32
|
+
return _kwargs
|
33
|
+
|
34
|
+
|
35
|
+
def _parse_response(*, client: Client, response: httpx.Response) -> Optional[Job]:
|
36
|
+
if response.status_code == 200:
|
37
|
+
response_200 = Job.from_dict(response.json())
|
38
|
+
|
39
|
+
return response_200
|
40
|
+
if client.raise_on_unexpected_status:
|
41
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
42
|
+
else:
|
43
|
+
return None
|
44
|
+
|
45
|
+
|
46
|
+
def _build_response(*, client: Client, response: httpx.Response) -> Response[Job]:
|
47
|
+
return Response(
|
48
|
+
status_code=HTTPStatus(response.status_code),
|
49
|
+
content=response.content,
|
50
|
+
headers=response.headers,
|
51
|
+
parsed=_parse_response(client=client, response=response),
|
52
|
+
)
|
53
|
+
|
54
|
+
|
55
|
+
def sync_detailed(
|
56
|
+
*,
|
57
|
+
client: Union[Client],
|
58
|
+
body: Job,
|
59
|
+
) -> Response[Job]:
|
60
|
+
"""Create job
|
61
|
+
|
62
|
+
Creates a job.
|
63
|
+
|
64
|
+
Args:
|
65
|
+
body (Job): Job
|
66
|
+
|
67
|
+
Raises:
|
68
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
69
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
70
|
+
|
71
|
+
Returns:
|
72
|
+
Response[Job]
|
73
|
+
"""
|
74
|
+
|
75
|
+
kwargs = _get_kwargs(
|
76
|
+
body=body,
|
77
|
+
)
|
78
|
+
|
79
|
+
response = client.get_httpx_client().request(
|
80
|
+
**kwargs,
|
81
|
+
)
|
82
|
+
|
83
|
+
return _build_response(client=client, response=response)
|
84
|
+
|
85
|
+
|
86
|
+
def sync(
|
87
|
+
*,
|
88
|
+
client: Union[Client],
|
89
|
+
body: Job,
|
90
|
+
) -> Optional[Job]:
|
91
|
+
"""Create job
|
92
|
+
|
93
|
+
Creates a job.
|
94
|
+
|
95
|
+
Args:
|
96
|
+
body (Job): Job
|
97
|
+
|
98
|
+
Raises:
|
99
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
100
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
101
|
+
|
102
|
+
Returns:
|
103
|
+
Job
|
104
|
+
"""
|
105
|
+
|
106
|
+
return sync_detailed(
|
107
|
+
client=client,
|
108
|
+
body=body,
|
109
|
+
).parsed
|
110
|
+
|
111
|
+
|
112
|
+
async def asyncio_detailed(
|
113
|
+
*,
|
114
|
+
client: Union[Client],
|
115
|
+
body: Job,
|
116
|
+
) -> Response[Job]:
|
117
|
+
"""Create job
|
118
|
+
|
119
|
+
Creates a job.
|
120
|
+
|
121
|
+
Args:
|
122
|
+
body (Job): Job
|
123
|
+
|
124
|
+
Raises:
|
125
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
126
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
127
|
+
|
128
|
+
Returns:
|
129
|
+
Response[Job]
|
130
|
+
"""
|
131
|
+
|
132
|
+
kwargs = _get_kwargs(
|
133
|
+
body=body,
|
134
|
+
)
|
135
|
+
|
136
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
137
|
+
|
138
|
+
return _build_response(client=client, response=response)
|
139
|
+
|
140
|
+
|
141
|
+
async def asyncio(
|
142
|
+
*,
|
143
|
+
client: Union[Client],
|
144
|
+
body: Job,
|
145
|
+
) -> Optional[Job]:
|
146
|
+
"""Create job
|
147
|
+
|
148
|
+
Creates a job.
|
149
|
+
|
150
|
+
Args:
|
151
|
+
body (Job): Job
|
152
|
+
|
153
|
+
Raises:
|
154
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
155
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
156
|
+
|
157
|
+
Returns:
|
158
|
+
Job
|
159
|
+
"""
|
160
|
+
|
161
|
+
return (
|
162
|
+
await asyncio_detailed(
|
163
|
+
client=client,
|
164
|
+
body=body,
|
165
|
+
)
|
166
|
+
).parsed
|