modal 1.0.4.dev7__py3-none-any.whl → 1.0.4.dev12__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.
modal_proto/api_pb2.pyi CHANGED
@@ -9058,6 +9058,7 @@ class TaskInfo(google.protobuf.message.Message):
9058
9058
  RESULT_FIELD_NUMBER: builtins.int
9059
9059
  ENQUEUED_AT_FIELD_NUMBER: builtins.int
9060
9060
  GPU_TYPE_FIELD_NUMBER: builtins.int
9061
+ SANDBOX_ID_FIELD_NUMBER: builtins.int
9061
9062
  id: builtins.str
9062
9063
  started_at: builtins.float
9063
9064
  finished_at: builtins.float
@@ -9065,6 +9066,7 @@ class TaskInfo(google.protobuf.message.Message):
9065
9066
  def result(self) -> global___GenericResult: ...
9066
9067
  enqueued_at: builtins.float
9067
9068
  gpu_type: builtins.str
9069
+ sandbox_id: builtins.str
9068
9070
  def __init__(
9069
9071
  self,
9070
9072
  *,
@@ -9074,9 +9076,10 @@ class TaskInfo(google.protobuf.message.Message):
9074
9076
  result: global___GenericResult | None = ...,
9075
9077
  enqueued_at: builtins.float = ...,
9076
9078
  gpu_type: builtins.str = ...,
9079
+ sandbox_id: builtins.str = ...,
9077
9080
  ) -> None: ...
9078
9081
  def HasField(self, field_name: typing_extensions.Literal["result", b"result"]) -> builtins.bool: ...
9079
- def ClearField(self, field_name: typing_extensions.Literal["enqueued_at", b"enqueued_at", "finished_at", b"finished_at", "gpu_type", b"gpu_type", "id", b"id", "result", b"result", "started_at", b"started_at"]) -> None: ...
9082
+ def ClearField(self, field_name: typing_extensions.Literal["enqueued_at", b"enqueued_at", "finished_at", b"finished_at", "gpu_type", b"gpu_type", "id", b"id", "result", b"result", "sandbox_id", b"sandbox_id", "started_at", b"started_at"]) -> None: ...
9080
9083
 
9081
9084
  global___TaskInfo = TaskInfo
9082
9085
 
modal_version/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # Copyright Modal Labs 2025
2
2
  """Supplies the current version of the modal client library."""
3
3
 
4
- __version__ = "1.0.4.dev7"
4
+ __version__ = "1.0.4.dev12"