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/cli/network_file_system.py +3 -0
- modal/cli/run.py +7 -0
- modal/cli/volume.py +2 -0
- modal/client.pyi +2 -2
- modal/cls.py +50 -9
- modal/cls.pyi +1 -0
- modal/file_io.py +9 -7
- modal/file_io.pyi +5 -8
- {modal-1.0.4.dev7.dist-info → modal-1.0.4.dev12.dist-info}/METADATA +1 -1
- {modal-1.0.4.dev7.dist-info → modal-1.0.4.dev12.dist-info}/RECORD +18 -18
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +170 -170
- modal_proto/api_pb2.pyi +4 -1
- modal_version/__init__.py +1 -1
- {modal-1.0.4.dev7.dist-info → modal-1.0.4.dev12.dist-info}/WHEEL +0 -0
- {modal-1.0.4.dev7.dist-info → modal-1.0.4.dev12.dist-info}/entry_points.txt +0 -0
- {modal-1.0.4.dev7.dist-info → modal-1.0.4.dev12.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.4.dev7.dist-info → modal-1.0.4.dev12.dist-info}/top_level.txt +0 -0
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
File without changes
|
File without changes
|
File without changes
|
File without changes
|