modal 1.1.1.dev40__py3-none-any.whl → 1.1.1.dev44__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.

Potentially problematic release.


This version of modal might be problematic. Click here for more details.

modal_proto/api_pb2.pyi CHANGED
@@ -9788,6 +9788,7 @@ class TaskInfo(google.protobuf.message.Message):
9788
9788
  GPU_TYPE_FIELD_NUMBER: builtins.int
9789
9789
  SANDBOX_ID_FIELD_NUMBER: builtins.int
9790
9790
  SNAPSHOT_BEHAVIOR_FIELD_NUMBER: builtins.int
9791
+ GPU_CONFIG_FIELD_NUMBER: builtins.int
9791
9792
  id: builtins.str
9792
9793
  started_at: builtins.float
9793
9794
  finished_at: builtins.float
@@ -9797,6 +9798,8 @@ class TaskInfo(google.protobuf.message.Message):
9797
9798
  gpu_type: builtins.str
9798
9799
  sandbox_id: builtins.str
9799
9800
  snapshot_behavior: global___TaskSnapshotBehavior.ValueType
9801
+ @property
9802
+ def gpu_config(self) -> global___GPUConfig: ...
9800
9803
  def __init__(
9801
9804
  self,
9802
9805
  *,
@@ -9808,9 +9811,10 @@ class TaskInfo(google.protobuf.message.Message):
9808
9811
  gpu_type: builtins.str = ...,
9809
9812
  sandbox_id: builtins.str = ...,
9810
9813
  snapshot_behavior: global___TaskSnapshotBehavior.ValueType = ...,
9814
+ gpu_config: global___GPUConfig | None = ...,
9811
9815
  ) -> None: ...
9812
- def HasField(self, field_name: typing_extensions.Literal["result", b"result"]) -> builtins.bool: ...
9813
- 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", "snapshot_behavior", b"snapshot_behavior", "started_at", b"started_at"]) -> None: ...
9816
+ def HasField(self, field_name: typing_extensions.Literal["gpu_config", b"gpu_config", "result", b"result"]) -> builtins.bool: ...
9817
+ def ClearField(self, field_name: typing_extensions.Literal["enqueued_at", b"enqueued_at", "finished_at", b"finished_at", "gpu_config", b"gpu_config", "gpu_type", b"gpu_type", "id", b"id", "result", b"result", "sandbox_id", b"sandbox_id", "snapshot_behavior", b"snapshot_behavior", "started_at", b"started_at"]) -> None: ...
9814
9818
 
9815
9819
  global___TaskInfo = TaskInfo
9816
9820
 
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.1.1.dev40"
4
+ __version__ = "1.1.1.dev44"