modal 0.72.23__py3-none-any.whl → 0.72.25__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/app.py +5 -10
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- {modal-0.72.23.dist-info → modal-0.72.25.dist-info}/METADATA +1 -1
- {modal-0.72.23.dist-info → modal-0.72.25.dist-info}/RECORD +13 -13
- modal_proto/api.proto +2 -0
- modal_proto/api_pb2.py +696 -696
- modal_proto/api_pb2.pyi +5 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.72.23.dist-info → modal-0.72.25.dist-info}/LICENSE +0 -0
- {modal-0.72.23.dist-info → modal-0.72.25.dist-info}/WHEEL +0 -0
- {modal-0.72.23.dist-info → modal-0.72.25.dist-info}/entry_points.txt +0 -0
- {modal-0.72.23.dist-info → modal-0.72.25.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -1898,6 +1898,7 @@ class CheckpointInfo(google.protobuf.message.Message):
|
|
1898
1898
|
SIZE_FIELD_NUMBER: builtins.int
|
1899
1899
|
CHECKSUM_IS_FILE_INDEX_FIELD_NUMBER: builtins.int
|
1900
1900
|
ORIGINAL_TASK_ID_FIELD_NUMBER: builtins.int
|
1901
|
+
SNAPSHOT_VERSION_FIELD_NUMBER: builtins.int
|
1901
1902
|
checksum: builtins.str
|
1902
1903
|
status: global___CheckpointStatus.ValueType
|
1903
1904
|
checkpoint_id: builtins.str
|
@@ -1905,6 +1906,8 @@ class CheckpointInfo(google.protobuf.message.Message):
|
|
1905
1906
|
size: builtins.int
|
1906
1907
|
checksum_is_file_index: builtins.bool
|
1907
1908
|
original_task_id: builtins.str
|
1909
|
+
snapshot_version: builtins.int
|
1910
|
+
"""snapshot version used to take the checkpoint"""
|
1908
1911
|
def __init__(
|
1909
1912
|
self,
|
1910
1913
|
*,
|
@@ -1915,8 +1918,9 @@ class CheckpointInfo(google.protobuf.message.Message):
|
|
1915
1918
|
size: builtins.int = ...,
|
1916
1919
|
checksum_is_file_index: builtins.bool = ...,
|
1917
1920
|
original_task_id: builtins.str = ...,
|
1921
|
+
snapshot_version: builtins.int = ...,
|
1918
1922
|
) -> None: ...
|
1919
|
-
def ClearField(self, field_name: typing_extensions.Literal["checkpoint_id", b"checkpoint_id", "checksum", b"checksum", "checksum_is_file_index", b"checksum_is_file_index", "original_task_id", b"original_task_id", "runtime_fingerprint", b"runtime_fingerprint", "size", b"size", "status", b"status"]) -> None: ...
|
1923
|
+
def ClearField(self, field_name: typing_extensions.Literal["checkpoint_id", b"checkpoint_id", "checksum", b"checksum", "checksum_is_file_index", b"checksum_is_file_index", "original_task_id", b"original_task_id", "runtime_fingerprint", b"runtime_fingerprint", "size", b"size", "snapshot_version", b"snapshot_version", "status", b"status"]) -> None: ...
|
1920
1924
|
|
1921
1925
|
global___CheckpointInfo = CheckpointInfo
|
1922
1926
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|