scalebox-sdk 0.1.19__py3-none-any.whl → 0.1.21__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.
scalebox/__init__.py CHANGED
@@ -9,7 +9,7 @@ A multi-language code execution sandbox with support for:
9
9
  - Real-time callbacks and monitoring
10
10
  """
11
11
 
12
- __version__ = "0.1.19"
12
+ __version__ = "0.1.21"
13
13
  __author__ = "ScaleBox Team"
14
14
  __email__ = "dev@scalebox.dev"
15
15
 
@@ -17,6 +17,7 @@ def _get_kwargs(
17
17
  params: dict[str, Any] = {}
18
18
 
19
19
  params["metadata"] = metadata
20
+ params["status"] = "running"
20
21
 
21
22
  params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
22
23