modal 1.0.6.dev8__py3-none-any.whl → 1.0.6.dev9__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/_utils/blob_utils.py +22 -9
- modal/_utils/function_utils.py +9 -2
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- {modal-1.0.6.dev8.dist-info → modal-1.0.6.dev9.dist-info}/METADATA +1 -1
- {modal-1.0.6.dev8.dist-info → modal-1.0.6.dev9.dist-info}/RECORD +14 -14
- modal_proto/api.proto +2 -0
- modal_proto/api_pb2.py +494 -494
- modal_proto/api_pb2.pyi +7 -1
- modal_version/__init__.py +1 -1
- {modal-1.0.6.dev8.dist-info → modal-1.0.6.dev9.dist-info}/WHEEL +0 -0
- {modal-1.0.6.dev8.dist-info → modal-1.0.6.dev9.dist-info}/entry_points.txt +0 -0
- {modal-1.0.6.dev8.dist-info → modal-1.0.6.dev9.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.6.dev8.dist-info → modal-1.0.6.dev9.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
|
@@ -5740,17 +5740,23 @@ class FunctionPutInputsItem(google.protobuf.message.Message):
|
|
|
5740
5740
|
|
|
5741
5741
|
IDX_FIELD_NUMBER: builtins.int
|
|
5742
5742
|
INPUT_FIELD_NUMBER: builtins.int
|
|
5743
|
+
R2_FAILED_FIELD_NUMBER: builtins.int
|
|
5744
|
+
R2_LATENCY_MS_FIELD_NUMBER: builtins.int
|
|
5743
5745
|
idx: builtins.int
|
|
5744
5746
|
@property
|
|
5745
5747
|
def input(self) -> global___FunctionInput: ...
|
|
5748
|
+
r2_failed: builtins.bool
|
|
5749
|
+
r2_latency_ms: builtins.int
|
|
5746
5750
|
def __init__(
|
|
5747
5751
|
self,
|
|
5748
5752
|
*,
|
|
5749
5753
|
idx: builtins.int = ...,
|
|
5750
5754
|
input: global___FunctionInput | None = ...,
|
|
5755
|
+
r2_failed: builtins.bool = ...,
|
|
5756
|
+
r2_latency_ms: builtins.int = ...,
|
|
5751
5757
|
) -> None: ...
|
|
5752
5758
|
def HasField(self, field_name: typing_extensions.Literal["input", b"input"]) -> builtins.bool: ...
|
|
5753
|
-
def ClearField(self, field_name: typing_extensions.Literal["idx", b"idx", "input", b"input"]) -> None: ...
|
|
5759
|
+
def ClearField(self, field_name: typing_extensions.Literal["idx", b"idx", "input", b"input", "r2_failed", b"r2_failed", "r2_latency_ms", b"r2_latency_ms"]) -> None: ...
|
|
5754
5760
|
|
|
5755
5761
|
global___FunctionPutInputsItem = FunctionPutInputsItem
|
|
5756
5762
|
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|