blaxel 0.2.34__py3-none-any.whl → 0.2.35__py3-none-any.whl

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.
Files changed (276) hide show
  1. blaxel/__init__.py +2 -2
  2. blaxel/core/client/api/agents/create_agent.py +64 -19
  3. blaxel/core/client/api/agents/delete_agent.py +44 -15
  4. blaxel/core/client/api/agents/get_agent.py +43 -14
  5. blaxel/core/client/api/agents/list_agents.py +40 -11
  6. blaxel/core/client/api/agents/update_agent.py +60 -19
  7. blaxel/core/client/api/compute/create_sandbox.py +60 -23
  8. blaxel/core/client/api/compute/delete_sandbox.py +40 -19
  9. blaxel/core/client/api/compute/get_sandbox.py +39 -18
  10. blaxel/core/client/api/compute/list_sandboxes.py +40 -19
  11. blaxel/core/client/api/compute/update_sandbox.py +56 -23
  12. blaxel/core/client/api/configurations/get_configuration.py +16 -4
  13. blaxel/core/client/api/customdomains/create_custom_domain.py +12 -0
  14. blaxel/core/client/api/customdomains/list_custom_domains.py +16 -4
  15. blaxel/core/client/api/default/get_template.py +8 -4
  16. blaxel/core/client/api/functions/create_function.py +62 -19
  17. blaxel/core/client/api/functions/delete_function.py +46 -15
  18. blaxel/core/client/api/functions/get_function.py +45 -14
  19. blaxel/core/client/api/functions/list_functions.py +44 -15
  20. blaxel/core/client/api/functions/update_function.py +62 -19
  21. blaxel/core/client/api/images/cleanup_images.py +12 -12
  22. blaxel/core/client/api/images/delete_image.py +12 -8
  23. blaxel/core/client/api/images/delete_image_tag.py +12 -8
  24. blaxel/core/client/api/images/get_image.py +12 -8
  25. blaxel/core/client/api/images/list_images.py +12 -8
  26. blaxel/core/client/api/integrations/create_integration_connection.py +56 -23
  27. blaxel/core/client/api/integrations/delete_integration_connection.py +48 -19
  28. blaxel/core/client/api/integrations/get_integration.py +12 -8
  29. blaxel/core/client/api/integrations/get_integration_connection.py +44 -19
  30. blaxel/core/client/api/integrations/get_integration_connection_model.py +2 -2
  31. blaxel/core/client/api/integrations/list_integration_connections.py +36 -19
  32. blaxel/core/client/api/integrations/update_integration_connection.py +52 -19
  33. blaxel/core/client/api/jobs/create_job.py +20 -12
  34. blaxel/core/client/api/jobs/create_job_execution.py +22 -16
  35. blaxel/core/client/api/jobs/delete_job.py +12 -8
  36. blaxel/core/client/api/jobs/delete_job_execution.py +12 -8
  37. blaxel/core/client/api/jobs/get_job.py +24 -20
  38. blaxel/core/client/api/jobs/get_job_execution.py +8 -4
  39. blaxel/core/client/api/jobs/list_job_executions.py +8 -4
  40. blaxel/core/client/api/jobs/list_jobs.py +12 -8
  41. blaxel/core/client/api/jobs/update_job.py +20 -12
  42. blaxel/core/client/api/locations/list_locations.py +12 -8
  43. blaxel/core/client/api/{default → mcphub}/list_mcp_hub_definitions.py +20 -4
  44. blaxel/core/client/api/models/create_model.py +52 -23
  45. blaxel/core/client/api/models/delete_model.py +40 -19
  46. blaxel/core/client/api/models/get_model.py +40 -19
  47. blaxel/core/client/api/models/list_models.py +40 -19
  48. blaxel/core/client/api/models/update_model.py +52 -23
  49. blaxel/core/client/api/policies/create_policy.py +12 -8
  50. blaxel/core/client/api/policies/delete_policy.py +12 -8
  51. blaxel/core/client/api/policies/get_policy.py +12 -8
  52. blaxel/core/client/api/policies/list_policies.py +12 -8
  53. blaxel/core/client/api/policies/update_policy.py +12 -8
  54. blaxel/core/client/api/public_ipslist/list_public_ips.py +37 -5
  55. blaxel/core/client/api/sandboxhub/__init__.py +0 -0
  56. blaxel/core/client/api/{default → sandboxhub}/list_sandbox_hub_definitions.py +20 -4
  57. blaxel/core/client/api/service_accounts/create_api_key_for_service_account.py +12 -8
  58. blaxel/core/client/api/service_accounts/create_workspace_service_account.py +12 -8
  59. blaxel/core/client/api/service_accounts/delete_api_key_for_service_account.py +6 -4
  60. blaxel/core/client/api/service_accounts/delete_workspace_service_account.py +12 -8
  61. blaxel/core/client/api/service_accounts/get_workspace_service_accounts.py +12 -8
  62. blaxel/core/client/api/service_accounts/list_api_keys_for_service_account.py +12 -8
  63. blaxel/core/client/api/service_accounts/update_workspace_service_account.py +8 -8
  64. blaxel/core/client/api/templates/list_templates.py +12 -8
  65. blaxel/core/client/api/volume_templates/create_volume_template.py +8 -4
  66. blaxel/core/client/api/volume_templates/list_volume_templates.py +8 -4
  67. blaxel/core/client/api/volumes/create_volume.py +56 -23
  68. blaxel/core/client/api/volumes/delete_volume.py +44 -19
  69. blaxel/core/client/api/volumes/get_volume.py +40 -19
  70. blaxel/core/client/api/volumes/list_volumes.py +40 -19
  71. blaxel/core/client/api/workspaces/create_workspace.py +54 -23
  72. blaxel/core/client/api/workspaces/delete_workspace.py +42 -19
  73. blaxel/core/client/api/workspaces/get_workspace.py +42 -19
  74. blaxel/core/client/api/workspaces/invite_workspace_user.py +8 -4
  75. blaxel/core/client/api/workspaces/list_workspace_users.py +12 -8
  76. blaxel/core/client/api/workspaces/list_workspaces.py +36 -19
  77. blaxel/core/client/api/workspaces/update_workspace.py +50 -19
  78. blaxel/core/client/models/__init__.py +76 -146
  79. blaxel/core/client/models/agent.py +43 -47
  80. blaxel/core/client/models/agent_runtime.py +139 -0
  81. blaxel/core/client/models/agent_runtime_generation.py +18 -0
  82. blaxel/core/client/models/agent_spec.py +33 -110
  83. blaxel/core/client/models/api_key.py +5 -4
  84. blaxel/core/client/models/core_event.py +5 -5
  85. blaxel/core/client/models/create_api_key_for_service_account_body.py +2 -1
  86. blaxel/core/client/models/create_job_execution_request.py +1 -1
  87. blaxel/core/client/models/create_job_execution_response.py +13 -9
  88. blaxel/core/client/models/custom_domain.py +19 -36
  89. blaxel/core/client/models/custom_domain_metadata.py +4 -3
  90. blaxel/core/client/models/custom_domain_spec.py +14 -5
  91. blaxel/core/client/models/custom_domain_spec_status.py +19 -0
  92. blaxel/core/client/models/entrypoint.py +39 -13
  93. blaxel/core/client/models/{workspace_labels.py → entrypoint_args_item.py} +6 -6
  94. blaxel/core/client/models/entrypoint_env.py +3 -3
  95. blaxel/core/client/models/{job_metrics_executions_total.py → entrypoint_super_gateway_args_item.py} +6 -6
  96. blaxel/core/client/models/{spec_configuration.py → env.py} +17 -8
  97. blaxel/core/{sandbox/client/models/welcome_response.py → client/models/error.py} +26 -23
  98. blaxel/core/client/models/expiration_policy.py +30 -11
  99. blaxel/core/client/models/expiration_policy_action.py +17 -0
  100. blaxel/core/client/models/expiration_policy_type.py +19 -0
  101. blaxel/core/client/models/flavor.py +13 -5
  102. blaxel/core/client/models/flavor_type.py +18 -0
  103. blaxel/core/client/models/form.py +6 -6
  104. blaxel/core/client/models/function.py +43 -47
  105. blaxel/core/client/models/function_runtime.py +138 -0
  106. blaxel/core/client/models/function_runtime_generation.py +18 -0
  107. blaxel/core/client/models/function_spec.py +27 -73
  108. blaxel/core/client/models/function_spec_transport.py +18 -0
  109. blaxel/core/client/models/image.py +19 -36
  110. blaxel/core/client/models/integration_connection.py +25 -39
  111. blaxel/core/client/models/integration_connection_spec.py +8 -5
  112. blaxel/core/client/models/integration_connection_spec_config.py +1 -1
  113. blaxel/core/client/models/integration_connection_spec_secret.py +1 -1
  114. blaxel/core/client/models/integration_endpoint.py +41 -11
  115. blaxel/core/client/models/integration_endpoint_ignore_models_item.py +45 -0
  116. blaxel/core/client/models/{mcp_definition_entrypoint.py → integration_endpoint_models_item.py} +6 -6
  117. blaxel/core/client/models/job.py +43 -47
  118. blaxel/core/client/models/job_execution.py +30 -37
  119. blaxel/core/client/models/job_execution_metadata.py +3 -3
  120. blaxel/core/client/models/job_execution_spec.py +2 -2
  121. blaxel/core/client/models/job_execution_stats.py +5 -5
  122. blaxel/core/client/models/job_execution_status.py +24 -0
  123. blaxel/core/client/models/job_execution_task.py +12 -4
  124. blaxel/core/client/models/job_execution_task_metadata.py +1 -1
  125. blaxel/core/client/models/job_execution_task_spec.py +2 -2
  126. blaxel/core/client/models/job_execution_task_status.py +23 -0
  127. blaxel/core/client/models/job_runtime.py +172 -0
  128. blaxel/core/client/models/job_runtime_generation.py +18 -0
  129. blaxel/core/client/models/job_spec.py +20 -88
  130. blaxel/core/client/models/location_response.py +5 -5
  131. blaxel/core/client/models/mcp_definition.py +30 -17
  132. blaxel/core/client/models/{job_metrics_tasks_total.py → mcp_definition_categories_item.py} +6 -6
  133. blaxel/core/client/models/metadata.py +23 -17
  134. blaxel/core/client/models/metadata_labels.py +4 -1
  135. blaxel/core/client/models/model.py +43 -47
  136. blaxel/core/client/models/model_runtime.py +99 -0
  137. blaxel/core/client/models/model_runtime_type.py +34 -0
  138. blaxel/core/client/models/model_spec.py +12 -58
  139. blaxel/core/client/models/o_auth.py +23 -6
  140. blaxel/core/client/models/{form_oauth.py → o_auth_scope_item.py} +6 -6
  141. blaxel/core/client/models/pending_invitation_accept.py +2 -1
  142. blaxel/core/client/models/pending_invitation_workspace_details.py +27 -6
  143. blaxel/core/client/models/{metrics_request_total_per_code.py → pending_invitation_workspace_details_emails_item.py} +6 -6
  144. blaxel/core/client/models/policy.py +20 -36
  145. blaxel/core/client/models/policy_location.py +13 -5
  146. blaxel/core/client/models/policy_location_type.py +19 -0
  147. blaxel/core/client/models/policy_max_tokens.py +6 -6
  148. blaxel/core/client/models/policy_resource_type.py +20 -0
  149. blaxel/core/client/models/policy_spec.py +31 -10
  150. blaxel/core/client/models/policy_spec_type.py +19 -0
  151. blaxel/core/client/models/port.py +25 -15
  152. blaxel/core/client/models/port_protocol.py +19 -0
  153. blaxel/core/client/models/preview.py +19 -36
  154. blaxel/core/client/models/preview_metadata.py +12 -10
  155. blaxel/core/client/models/preview_token.py +19 -36
  156. blaxel/core/client/models/preview_token_metadata.py +8 -6
  157. blaxel/core/client/models/repository.py +2 -2
  158. blaxel/core/client/models/revision_configuration.py +3 -3
  159. blaxel/core/client/models/sandbox.py +45 -58
  160. blaxel/core/client/models/sandbox_definition.py +37 -22
  161. blaxel/core/client/models/sandbox_definition_categories_item.py +45 -0
  162. blaxel/core/client/models/sandbox_error.py +148 -0
  163. blaxel/core/client/models/sandbox_error_details.py +45 -0
  164. blaxel/core/client/models/sandbox_lifecycle.py +3 -2
  165. blaxel/core/client/models/sandbox_runtime.py +145 -0
  166. blaxel/core/client/models/sandbox_spec.py +33 -134
  167. blaxel/core/client/models/status.py +25 -0
  168. blaxel/core/client/models/template.py +8 -7
  169. blaxel/core/client/models/template_variable.py +5 -5
  170. blaxel/core/client/models/trigger.py +14 -6
  171. blaxel/core/client/models/trigger_configuration.py +7 -6
  172. blaxel/core/client/models/trigger_type.py +19 -0
  173. blaxel/core/client/models/volume.py +35 -47
  174. blaxel/core/client/models/volume_attachment.py +6 -4
  175. blaxel/core/client/models/volume_spec.py +7 -4
  176. blaxel/core/client/models/volume_state.py +3 -3
  177. blaxel/core/client/models/volume_template.py +19 -33
  178. blaxel/core/client/models/volume_template_state.py +12 -4
  179. blaxel/core/client/models/volume_template_state_status.py +19 -0
  180. blaxel/core/client/models/volume_template_version.py +12 -4
  181. blaxel/core/client/models/volume_template_version_status.py +19 -0
  182. blaxel/core/client/models/workspace.py +35 -25
  183. blaxel/core/client/models/workspace_runtime.py +3 -2
  184. blaxel/core/client/models/workspace_status.py +22 -0
  185. blaxel/core/common/__init__.py +1 -1
  186. blaxel/core/jobs/__init__.py +0 -1
  187. blaxel/core/sandbox/__init__.py +2 -0
  188. blaxel/core/sandbox/client/api/process/post_process.py +8 -4
  189. blaxel/core/sandbox/client/models/__init__.py +0 -2
  190. blaxel/core/sandbox/client/models/process_response.py +16 -0
  191. blaxel/core/sandbox/client/models/process_response_status.py +9 -0
  192. blaxel/core/sandbox/default/__init__.py +2 -0
  193. blaxel/core/sandbox/default/interpreter.py +5 -1
  194. blaxel/core/sandbox/default/preview.py +3 -1
  195. blaxel/core/sandbox/default/sandbox.py +51 -16
  196. blaxel/core/sandbox/sync/process.py +2 -1
  197. blaxel/core/sandbox/sync/sandbox.py +34 -13
  198. blaxel/core/tools/common.py +16 -2
  199. blaxel/core/volume/__init__.py +2 -2
  200. blaxel/core/volume/volume.py +32 -10
  201. blaxel/langgraph/tools.py +34 -2
  202. blaxel/openai/tools.py +33 -1
  203. {blaxel-0.2.34.dist-info → blaxel-0.2.35.dist-info}/METADATA +3 -3
  204. {blaxel-0.2.34.dist-info → blaxel-0.2.35.dist-info}/RECORD +207 -246
  205. blaxel/core/client/models/acl.py +0 -133
  206. blaxel/core/client/models/billable_time_metric.py +0 -89
  207. blaxel/core/client/models/core_spec.py +0 -194
  208. blaxel/core/client/models/core_spec_configurations.py +0 -77
  209. blaxel/core/client/models/histogram_bucket.py +0 -79
  210. blaxel/core/client/models/histogram_stats.py +0 -88
  211. blaxel/core/client/models/integration_model.py +0 -162
  212. blaxel/core/client/models/job_execution_config.py +0 -79
  213. blaxel/core/client/models/job_metrics.py +0 -262
  214. blaxel/core/client/models/jobs_chart_value.py +0 -70
  215. blaxel/core/client/models/jobs_network_chart.py +0 -102
  216. blaxel/core/client/models/jobs_success_failed_chart.py +0 -147
  217. blaxel/core/client/models/jobs_total.py +0 -88
  218. blaxel/core/client/models/last_n_requests_metric.py +0 -97
  219. blaxel/core/client/models/latency_metric.py +0 -148
  220. blaxel/core/client/models/logs_response.py +0 -63
  221. blaxel/core/client/models/logs_response_data.py +0 -99
  222. blaxel/core/client/models/mcp_definition_form.py +0 -45
  223. blaxel/core/client/models/memory_allocation_by_name.py +0 -70
  224. blaxel/core/client/models/memory_allocation_metric.py +0 -61
  225. blaxel/core/client/models/metric.py +0 -79
  226. blaxel/core/client/models/metrics.py +0 -273
  227. blaxel/core/client/models/metrics_models.py +0 -45
  228. blaxel/core/client/models/metrics_rps_per_code.py +0 -45
  229. blaxel/core/client/models/pod_template_spec.py +0 -45
  230. blaxel/core/client/models/request_duration_over_time_metric.py +0 -97
  231. blaxel/core/client/models/request_duration_over_time_metrics.py +0 -84
  232. blaxel/core/client/models/request_total_by_origin_metric.py +0 -129
  233. blaxel/core/client/models/request_total_by_origin_metric_request_total_by_origin.py +0 -45
  234. blaxel/core/client/models/request_total_by_origin_metric_request_total_by_origin_and_code.py +0 -45
  235. blaxel/core/client/models/request_total_metric.py +0 -155
  236. blaxel/core/client/models/request_total_metric_request_total_per_code.py +0 -45
  237. blaxel/core/client/models/request_total_metric_rps_per_code.py +0 -45
  238. blaxel/core/client/models/request_total_response_data.py +0 -97
  239. blaxel/core/client/models/resource.py +0 -99
  240. blaxel/core/client/models/resource_log.py +0 -88
  241. blaxel/core/client/models/resource_log_chart.py +0 -133
  242. blaxel/core/client/models/resource_log_response.py +0 -83
  243. blaxel/core/client/models/resource_metrics.py +0 -618
  244. blaxel/core/client/models/resource_metrics_request_total_per_code.py +0 -45
  245. blaxel/core/client/models/resource_metrics_request_total_per_code_previous.py +0 -45
  246. blaxel/core/client/models/resource_metrics_rps_per_code.py +0 -45
  247. blaxel/core/client/models/resource_metrics_rps_per_code_previous.py +0 -45
  248. blaxel/core/client/models/resource_trace.py +0 -97
  249. blaxel/core/client/models/runtime.py +0 -317
  250. blaxel/core/client/models/runtime_configuration.py +0 -45
  251. blaxel/core/client/models/runtime_startup_probe.py +0 -45
  252. blaxel/core/client/models/sandbox_metrics.py +0 -88
  253. blaxel/core/client/models/serverless_config.py +0 -117
  254. blaxel/core/client/models/serverless_config_configuration.py +0 -45
  255. blaxel/core/client/models/start_sandbox.py +0 -98
  256. blaxel/core/client/models/stop_sandbox.py +0 -98
  257. blaxel/core/client/models/store_agent.py +0 -181
  258. blaxel/core/client/models/store_agent_labels.py +0 -45
  259. blaxel/core/client/models/store_configuration.py +0 -156
  260. blaxel/core/client/models/store_configuration_option.py +0 -79
  261. blaxel/core/client/models/time_to_first_token_over_time_metrics.py +0 -87
  262. blaxel/core/client/models/token_rate_metric.py +0 -106
  263. blaxel/core/client/models/token_rate_metrics.py +0 -124
  264. blaxel/core/client/models/token_total_metric.py +0 -112
  265. blaxel/core/client/models/trace_ids_response.py +0 -45
  266. blaxel/core/client/models/websocket_channel.py +0 -97
  267. blaxel/core/client/models/websocket_message.py +0 -106
  268. blaxel/core/sandbox/client/api/root/delete.py +0 -130
  269. blaxel/core/sandbox/client/api/root/get.py +0 -130
  270. blaxel/core/sandbox/client/api/root/options.py +0 -130
  271. blaxel/core/sandbox/client/api/root/patch.py +0 -130
  272. blaxel/core/sandbox/client/api/root/post.py +0 -130
  273. blaxel/core/sandbox/client/api/root/put.py +0 -130
  274. /blaxel/core/{sandbox/client/api/root → client/api/mcphub}/__init__.py +0 -0
  275. {blaxel-0.2.34.dist-info → blaxel-0.2.35.dist-info}/WHEEL +0 -0
  276. {blaxel-0.2.34.dist-info → blaxel-0.2.35.dist-info}/licenses/LICENSE +0 -0
@@ -45,9 +45,10 @@ def sync_detailed(
45
45
  *,
46
46
  client: Client,
47
47
  ) -> Response[Job]:
48
- """Delete job
48
+ """Delete batch job
49
49
 
50
- Deletes a job by name.
50
+ Permanently deletes a batch job definition and cancels any running executions. Historical execution
51
+ data will be retained for a limited time.
51
52
 
52
53
  Args:
53
54
  job_id (str):
@@ -76,9 +77,10 @@ def sync(
76
77
  *,
77
78
  client: Client,
78
79
  ) -> Job | None:
79
- """Delete job
80
+ """Delete batch job
80
81
 
81
- Deletes a job by name.
82
+ Permanently deletes a batch job definition and cancels any running executions. Historical execution
83
+ data will be retained for a limited time.
82
84
 
83
85
  Args:
84
86
  job_id (str):
@@ -102,9 +104,10 @@ async def asyncio_detailed(
102
104
  *,
103
105
  client: Client,
104
106
  ) -> Response[Job]:
105
- """Delete job
107
+ """Delete batch job
106
108
 
107
- Deletes a job by name.
109
+ Permanently deletes a batch job definition and cancels any running executions. Historical execution
110
+ data will be retained for a limited time.
108
111
 
109
112
  Args:
110
113
  job_id (str):
@@ -131,9 +134,10 @@ async def asyncio(
131
134
  *,
132
135
  client: Client,
133
136
  ) -> Job | None:
134
- """Delete job
137
+ """Delete batch job
135
138
 
136
- Deletes a job by name.
139
+ Permanently deletes a batch job definition and cancels any running executions. Historical execution
140
+ data will be retained for a limited time.
137
141
 
138
142
  Args:
139
143
  job_id (str):
@@ -58,9 +58,10 @@ def sync_detailed(
58
58
  *,
59
59
  client: Client,
60
60
  ) -> Response[Union[Any, JobExecution]]:
61
- """Delete job execution
61
+ """Cancel job execution
62
62
 
63
- Stop an execution for a job by name.
63
+ Cancels a running job execution. Tasks already in progress will complete, but no new tasks will be
64
+ started. The execution status changes to 'cancelling' then 'cancelled'.
64
65
 
65
66
  Args:
66
67
  job_id (str):
@@ -92,9 +93,10 @@ def sync(
92
93
  *,
93
94
  client: Client,
94
95
  ) -> Union[Any, JobExecution] | None:
95
- """Delete job execution
96
+ """Cancel job execution
96
97
 
97
- Stop an execution for a job by name.
98
+ Cancels a running job execution. Tasks already in progress will complete, but no new tasks will be
99
+ started. The execution status changes to 'cancelling' then 'cancelled'.
98
100
 
99
101
  Args:
100
102
  job_id (str):
@@ -121,9 +123,10 @@ async def asyncio_detailed(
121
123
  *,
122
124
  client: Client,
123
125
  ) -> Response[Union[Any, JobExecution]]:
124
- """Delete job execution
126
+ """Cancel job execution
125
127
 
126
- Stop an execution for a job by name.
128
+ Cancels a running job execution. Tasks already in progress will complete, but no new tasks will be
129
+ started. The execution status changes to 'cancelling' then 'cancelled'.
127
130
 
128
131
  Args:
129
132
  job_id (str):
@@ -153,9 +156,10 @@ async def asyncio(
153
156
  *,
154
157
  client: Client,
155
158
  ) -> Union[Any, JobExecution] | None:
156
- """Delete job execution
159
+ """Cancel job execution
157
160
 
158
- Stop an execution for a job by name.
161
+ Cancels a running job execution. Tasks already in progress will complete, but no new tasks will be
162
+ started. The execution status changes to 'cancelling' then 'cancelled'.
159
163
 
160
164
  Args:
161
165
  job_id (str):
@@ -5,7 +5,7 @@ import httpx
5
5
 
6
6
  from ... import errors
7
7
  from ...client import Client
8
- from ...models.model import Model
8
+ from ...models.job import Job
9
9
  from ...types import UNSET, Response, Unset
10
10
 
11
11
 
@@ -29,9 +29,9 @@ def _get_kwargs(
29
29
  return _kwargs
30
30
 
31
31
 
32
- def _parse_response(*, client: Client, response: httpx.Response) -> Model | None:
32
+ def _parse_response(*, client: Client, response: httpx.Response) -> Job | None:
33
33
  if response.status_code == 200:
34
- response_200 = Model.from_dict(response.json())
34
+ response_200 = Job.from_dict(response.json())
35
35
 
36
36
  return response_200
37
37
  if client.raise_on_unexpected_status:
@@ -40,7 +40,7 @@ def _parse_response(*, client: Client, response: httpx.Response) -> Model | None
40
40
  return None
41
41
 
42
42
 
43
- def _build_response(*, client: Client, response: httpx.Response) -> Response[Model]:
43
+ def _build_response(*, client: Client, response: httpx.Response) -> Response[Job]:
44
44
  return Response(
45
45
  status_code=HTTPStatus(response.status_code),
46
46
  content=response.content,
@@ -54,10 +54,11 @@ def sync_detailed(
54
54
  *,
55
55
  client: Client,
56
56
  show_secrets: Union[Unset, bool] = UNSET,
57
- ) -> Response[Model]:
58
- """Get job
57
+ ) -> Response[Job]:
58
+ """Get batch job
59
59
 
60
- Returns a job by name.
60
+ Returns detailed information about a batch job including its runtime configuration, execution
61
+ history, and deployment status.
61
62
 
62
63
  Args:
63
64
  job_id (str):
@@ -68,7 +69,7 @@ def sync_detailed(
68
69
  httpx.TimeoutException: If the request takes longer than Client.timeout.
69
70
 
70
71
  Returns:
71
- Response[Model]
72
+ Response[Job]
72
73
  """
73
74
 
74
75
  kwargs = _get_kwargs(
@@ -88,10 +89,11 @@ def sync(
88
89
  *,
89
90
  client: Client,
90
91
  show_secrets: Union[Unset, bool] = UNSET,
91
- ) -> Model | None:
92
- """Get job
92
+ ) -> Job | None:
93
+ """Get batch job
93
94
 
94
- Returns a job by name.
95
+ Returns detailed information about a batch job including its runtime configuration, execution
96
+ history, and deployment status.
95
97
 
96
98
  Args:
97
99
  job_id (str):
@@ -102,7 +104,7 @@ def sync(
102
104
  httpx.TimeoutException: If the request takes longer than Client.timeout.
103
105
 
104
106
  Returns:
105
- Model
107
+ Job
106
108
  """
107
109
 
108
110
  return sync_detailed(
@@ -117,10 +119,11 @@ async def asyncio_detailed(
117
119
  *,
118
120
  client: Client,
119
121
  show_secrets: Union[Unset, bool] = UNSET,
120
- ) -> Response[Model]:
121
- """Get job
122
+ ) -> Response[Job]:
123
+ """Get batch job
122
124
 
123
- Returns a job by name.
125
+ Returns detailed information about a batch job including its runtime configuration, execution
126
+ history, and deployment status.
124
127
 
125
128
  Args:
126
129
  job_id (str):
@@ -131,7 +134,7 @@ async def asyncio_detailed(
131
134
  httpx.TimeoutException: If the request takes longer than Client.timeout.
132
135
 
133
136
  Returns:
134
- Response[Model]
137
+ Response[Job]
135
138
  """
136
139
 
137
140
  kwargs = _get_kwargs(
@@ -149,10 +152,11 @@ async def asyncio(
149
152
  *,
150
153
  client: Client,
151
154
  show_secrets: Union[Unset, bool] = UNSET,
152
- ) -> Model | None:
153
- """Get job
155
+ ) -> Job | None:
156
+ """Get batch job
154
157
 
155
- Returns a job by name.
158
+ Returns detailed information about a batch job including its runtime configuration, execution
159
+ history, and deployment status.
156
160
 
157
161
  Args:
158
162
  job_id (str):
@@ -163,7 +167,7 @@ async def asyncio(
163
167
  httpx.TimeoutException: If the request takes longer than Client.timeout.
164
168
 
165
169
  Returns:
166
- Model
170
+ Job
167
171
  """
168
172
 
169
173
  return (
@@ -60,7 +60,8 @@ def sync_detailed(
60
60
  ) -> Response[Union[Any, JobExecution]]:
61
61
  """Get job execution
62
62
 
63
- Returns an execution for a job by name.
63
+ Returns detailed information about a specific job execution including status, task statistics
64
+ (success/failure/running counts), and timing information.
64
65
 
65
66
  Args:
66
67
  job_id (str):
@@ -94,7 +95,8 @@ def sync(
94
95
  ) -> Union[Any, JobExecution] | None:
95
96
  """Get job execution
96
97
 
97
- Returns an execution for a job by name.
98
+ Returns detailed information about a specific job execution including status, task statistics
99
+ (success/failure/running counts), and timing information.
98
100
 
99
101
  Args:
100
102
  job_id (str):
@@ -123,7 +125,8 @@ async def asyncio_detailed(
123
125
  ) -> Response[Union[Any, JobExecution]]:
124
126
  """Get job execution
125
127
 
126
- Returns an execution for a job by name.
128
+ Returns detailed information about a specific job execution including status, task statistics
129
+ (success/failure/running counts), and timing information.
127
130
 
128
131
  Args:
129
132
  job_id (str):
@@ -155,7 +158,8 @@ async def asyncio(
155
158
  ) -> Union[Any, JobExecution] | None:
156
159
  """Get job execution
157
160
 
158
- Returns an execution for a job by name.
161
+ Returns detailed information about a specific job execution including status, task statistics
162
+ (success/failure/running counts), and timing information.
159
163
 
160
164
  Args:
161
165
  job_id (str):
@@ -76,7 +76,8 @@ def sync_detailed(
76
76
  ) -> Response[Union[Any, list["JobExecution"]]]:
77
77
  """List job executions
78
78
 
79
- Returns a list of all executions for a job by name.
79
+ Returns paginated list of executions for a batch job, sorted by creation time. Each execution
80
+ contains status, task counts, and timing information.
80
81
 
81
82
  Args:
82
83
  job_id (str):
@@ -113,7 +114,8 @@ def sync(
113
114
  ) -> Union[Any, list["JobExecution"]] | None:
114
115
  """List job executions
115
116
 
116
- Returns a list of all executions for a job by name.
117
+ Returns paginated list of executions for a batch job, sorted by creation time. Each execution
118
+ contains status, task counts, and timing information.
117
119
 
118
120
  Args:
119
121
  job_id (str):
@@ -145,7 +147,8 @@ async def asyncio_detailed(
145
147
  ) -> Response[Union[Any, list["JobExecution"]]]:
146
148
  """List job executions
147
149
 
148
- Returns a list of all executions for a job by name.
150
+ Returns paginated list of executions for a batch job, sorted by creation time. Each execution
151
+ contains status, task counts, and timing information.
149
152
 
150
153
  Args:
151
154
  job_id (str):
@@ -180,7 +183,8 @@ async def asyncio(
180
183
  ) -> Union[Any, list["JobExecution"]] | None:
181
184
  """List job executions
182
185
 
183
- Returns a list of all executions for a job by name.
186
+ Returns paginated list of executions for a batch job, sorted by creation time. Each execution
187
+ contains status, task counts, and timing information.
184
188
 
185
189
  Args:
186
190
  job_id (str):
@@ -47,9 +47,10 @@ def sync_detailed(
47
47
  *,
48
48
  client: Client,
49
49
  ) -> Response[list["Job"]]:
50
- """List jobs
50
+ """List batch jobs
51
51
 
52
- Returns a list of all jobs in the workspace.
52
+ Returns all batch job definitions in the workspace. Each job can be triggered to run multiple
53
+ parallel tasks with configurable concurrency and retry settings.
53
54
 
54
55
  Raises:
55
56
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -72,9 +73,10 @@ def sync(
72
73
  *,
73
74
  client: Client,
74
75
  ) -> list["Job"] | None:
75
- """List jobs
76
+ """List batch jobs
76
77
 
77
- Returns a list of all jobs in the workspace.
78
+ Returns all batch job definitions in the workspace. Each job can be triggered to run multiple
79
+ parallel tasks with configurable concurrency and retry settings.
78
80
 
79
81
  Raises:
80
82
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -93,9 +95,10 @@ async def asyncio_detailed(
93
95
  *,
94
96
  client: Client,
95
97
  ) -> Response[list["Job"]]:
96
- """List jobs
98
+ """List batch jobs
97
99
 
98
- Returns a list of all jobs in the workspace.
100
+ Returns all batch job definitions in the workspace. Each job can be triggered to run multiple
101
+ parallel tasks with configurable concurrency and retry settings.
99
102
 
100
103
  Raises:
101
104
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -116,9 +119,10 @@ async def asyncio(
116
119
  *,
117
120
  client: Client,
118
121
  ) -> list["Job"] | None:
119
- """List jobs
122
+ """List batch jobs
120
123
 
121
- Returns a list of all jobs in the workspace.
124
+ Returns all batch job definitions in the workspace. Each job can be triggered to run multiple
125
+ parallel tasks with configurable concurrency and retry settings.
122
126
 
123
127
  Raises:
124
128
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -59,13 +59,15 @@ def sync_detailed(
59
59
  client: Client,
60
60
  body: Job,
61
61
  ) -> Response[Job]:
62
- """Create or update job
62
+ """Update batch job
63
63
 
64
- Update a job by name.
64
+ Updates a batch job's configuration. Changes affect new executions; running executions continue with
65
+ their original configuration.
65
66
 
66
67
  Args:
67
68
  job_id (str):
68
- body (Job): Job
69
+ body (Job): Batch processing job definition for running parallel AI tasks. Jobs can
70
+ execute multiple tasks concurrently with configurable parallelism, retries, and timeouts.
69
71
 
70
72
  Raises:
71
73
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -93,13 +95,15 @@ def sync(
93
95
  client: Client,
94
96
  body: Job,
95
97
  ) -> Job | None:
96
- """Create or update job
98
+ """Update batch job
97
99
 
98
- Update a job by name.
100
+ Updates a batch job's configuration. Changes affect new executions; running executions continue with
101
+ their original configuration.
99
102
 
100
103
  Args:
101
104
  job_id (str):
102
- body (Job): Job
105
+ body (Job): Batch processing job definition for running parallel AI tasks. Jobs can
106
+ execute multiple tasks concurrently with configurable parallelism, retries, and timeouts.
103
107
 
104
108
  Raises:
105
109
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -122,13 +126,15 @@ async def asyncio_detailed(
122
126
  client: Client,
123
127
  body: Job,
124
128
  ) -> Response[Job]:
125
- """Create or update job
129
+ """Update batch job
126
130
 
127
- Update a job by name.
131
+ Updates a batch job's configuration. Changes affect new executions; running executions continue with
132
+ their original configuration.
128
133
 
129
134
  Args:
130
135
  job_id (str):
131
- body (Job): Job
136
+ body (Job): Batch processing job definition for running parallel AI tasks. Jobs can
137
+ execute multiple tasks concurrently with configurable parallelism, retries, and timeouts.
132
138
 
133
139
  Raises:
134
140
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -154,13 +160,15 @@ async def asyncio(
154
160
  client: Client,
155
161
  body: Job,
156
162
  ) -> Job | None:
157
- """Create or update job
163
+ """Update batch job
158
164
 
159
- Update a job by name.
165
+ Updates a batch job's configuration. Changes affect new executions; running executions continue with
166
+ their original configuration.
160
167
 
161
168
  Args:
162
169
  job_id (str):
163
- body (Job): Job
170
+ body (Job): Batch processing job definition for running parallel AI tasks. Jobs can
171
+ execute multiple tasks concurrently with configurable parallelism, retries, and timeouts.
164
172
 
165
173
  Raises:
166
174
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -49,9 +49,10 @@ def sync_detailed(
49
49
  *,
50
50
  client: Client,
51
51
  ) -> Response[list["LocationResponse"]]:
52
- """List locations
52
+ """List deployment regions
53
53
 
54
- Returns a list of all locations available with status.
54
+ Returns all deployment regions with their current availability status and supported hardware
55
+ flavors. Use this to discover where resources can be deployed.
55
56
 
56
57
  Raises:
57
58
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -74,9 +75,10 @@ def sync(
74
75
  *,
75
76
  client: Client,
76
77
  ) -> list["LocationResponse"] | None:
77
- """List locations
78
+ """List deployment regions
78
79
 
79
- Returns a list of all locations available with status.
80
+ Returns all deployment regions with their current availability status and supported hardware
81
+ flavors. Use this to discover where resources can be deployed.
80
82
 
81
83
  Raises:
82
84
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -95,9 +97,10 @@ async def asyncio_detailed(
95
97
  *,
96
98
  client: Client,
97
99
  ) -> Response[list["LocationResponse"]]:
98
- """List locations
100
+ """List deployment regions
99
101
 
100
- Returns a list of all locations available with status.
102
+ Returns all deployment regions with their current availability status and supported hardware
103
+ flavors. Use this to discover where resources can be deployed.
101
104
 
102
105
  Raises:
103
106
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -118,9 +121,10 @@ async def asyncio(
118
121
  *,
119
122
  client: Client,
120
123
  ) -> list["LocationResponse"] | None:
121
- """List locations
124
+ """List deployment regions
122
125
 
123
- Returns a list of all locations available with status.
126
+ Returns all deployment regions with their current availability status and supported hardware
127
+ flavors. Use this to discover where resources can be deployed.
124
128
 
125
129
  Raises:
126
130
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -47,7 +47,11 @@ def sync_detailed(
47
47
  *,
48
48
  client: Client,
49
49
  ) -> Response[list["MCPDefinition"]]:
50
- """
50
+ """List MCP Hub servers
51
+
52
+ Returns all pre-built MCP server definitions available in the Blaxel Hub. These can be deployed
53
+ directly to your workspace with pre-configured tools and integrations.
54
+
51
55
  Raises:
52
56
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
53
57
  httpx.TimeoutException: If the request takes longer than Client.timeout.
@@ -69,7 +73,11 @@ def sync(
69
73
  *,
70
74
  client: Client,
71
75
  ) -> list["MCPDefinition"] | None:
72
- """
76
+ """List MCP Hub servers
77
+
78
+ Returns all pre-built MCP server definitions available in the Blaxel Hub. These can be deployed
79
+ directly to your workspace with pre-configured tools and integrations.
80
+
73
81
  Raises:
74
82
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
75
83
  httpx.TimeoutException: If the request takes longer than Client.timeout.
@@ -87,7 +95,11 @@ async def asyncio_detailed(
87
95
  *,
88
96
  client: Client,
89
97
  ) -> Response[list["MCPDefinition"]]:
90
- """
98
+ """List MCP Hub servers
99
+
100
+ Returns all pre-built MCP server definitions available in the Blaxel Hub. These can be deployed
101
+ directly to your workspace with pre-configured tools and integrations.
102
+
91
103
  Raises:
92
104
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
93
105
  httpx.TimeoutException: If the request takes longer than Client.timeout.
@@ -107,7 +119,11 @@ async def asyncio(
107
119
  *,
108
120
  client: Client,
109
121
  ) -> list["MCPDefinition"] | None:
110
- """
122
+ """List MCP Hub servers
123
+
124
+ Returns all pre-built MCP server definitions available in the Blaxel Hub. These can be deployed
125
+ directly to your workspace with pre-configured tools and integrations.
126
+
111
127
  Raises:
112
128
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
113
129
  httpx.TimeoutException: If the request takes longer than Client.timeout.