modal 1.0.5.dev3__py3-none-any.whl → 1.0.5.dev5__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/_functions.py +5 -4
- modal/_partial_function.py +1 -1
- modal/app.py +4 -4
- modal/app.pyi +8 -8
- modal/cli/run.py +2 -1
- modal/client.pyi +2 -2
- modal/cls.py +3 -3
- modal/cls.pyi +6 -6
- modal/dict.py +1 -1
- modal/dict.pyi +2 -2
- modal/exception.py +2 -2
- modal/functions.pyi +10 -8
- modal/gpu.py +1 -1
- modal/image.py +1 -1
- modal/image.pyi +2 -2
- modal/partial_function.pyi +1 -1
- modal/proxy.py +1 -1
- modal/proxy.pyi +2 -2
- modal/queue.py +1 -1
- modal/queue.pyi +2 -2
- modal/sandbox.py +7 -7
- modal/sandbox.pyi +11 -11
- modal/schedule.py +1 -1
- modal/secret.py +2 -2
- modal/secret.pyi +4 -4
- modal/volume.py +1 -1
- modal/volume.pyi +3 -3
- {modal-1.0.5.dev3.dist-info → modal-1.0.5.dev5.dist-info}/METADATA +1 -1
- {modal-1.0.5.dev3.dist-info → modal-1.0.5.dev5.dist-info}/RECORD +37 -37
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +279 -279
- modal_proto/api_pb2.pyi +6 -1
- modal_version/__init__.py +1 -1
- {modal-1.0.5.dev3.dist-info → modal-1.0.5.dev5.dist-info}/WHEEL +0 -0
- {modal-1.0.5.dev3.dist-info → modal-1.0.5.dev5.dist-info}/entry_points.txt +0 -0
- {modal-1.0.5.dev3.dist-info → modal-1.0.5.dev5.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.5.dev3.dist-info → modal-1.0.5.dev5.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -8041,11 +8041,15 @@ class SandboxInfo(google.protobuf.message.Message):
|
|
8041
8041
|
CREATED_AT_FIELD_NUMBER: builtins.int
|
8042
8042
|
TASK_INFO_FIELD_NUMBER: builtins.int
|
8043
8043
|
APP_ID_FIELD_NUMBER: builtins.int
|
8044
|
+
TAGS_FIELD_NUMBER: builtins.int
|
8044
8045
|
id: builtins.str
|
8045
8046
|
created_at: builtins.float
|
8046
8047
|
@property
|
8047
8048
|
def task_info(self) -> global___TaskInfo: ...
|
8048
8049
|
app_id: builtins.str
|
8050
|
+
@property
|
8051
|
+
def tags(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SandboxTag]:
|
8052
|
+
"""TODO: Not yet exposed in client library."""
|
8049
8053
|
def __init__(
|
8050
8054
|
self,
|
8051
8055
|
*,
|
@@ -8053,9 +8057,10 @@ class SandboxInfo(google.protobuf.message.Message):
|
|
8053
8057
|
created_at: builtins.float = ...,
|
8054
8058
|
task_info: global___TaskInfo | None = ...,
|
8055
8059
|
app_id: builtins.str = ...,
|
8060
|
+
tags: collections.abc.Iterable[global___SandboxTag] | None = ...,
|
8056
8061
|
) -> None: ...
|
8057
8062
|
def HasField(self, field_name: typing_extensions.Literal["task_info", b"task_info"]) -> builtins.bool: ...
|
8058
|
-
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "created_at", b"created_at", "id", b"id", "task_info", b"task_info"]) -> None: ...
|
8063
|
+
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "created_at", b"created_at", "id", b"id", "tags", b"tags", "task_info", b"task_info"]) -> None: ...
|
8059
8064
|
|
8060
8065
|
global___SandboxInfo = SandboxInfo
|
8061
8066
|
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|