modal 0.73.2__py3-none-any.whl → 0.73.4__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 +1602 -0
- modal/_runtime/user_code_imports.py +1 -1
- modal/_utils/mount_utils.py +1 -1
- modal/app.py +2 -1
- modal/app.pyi +4 -3
- modal/cli/run.py +2 -1
- modal/client.pyi +2 -2
- modal/cls.py +1 -1
- modal/cls.pyi +9 -8
- modal/experimental.py +1 -1
- modal/functions.py +6 -1607
- modal/functions.pyi +30 -309
- modal/image.py +3 -3
- modal/image.pyi +2 -1
- modal/parallel_map.pyi +2 -2
- modal/partial_function.py +1 -1
- modal/partial_function.pyi +2 -1
- modal/runner.py +1 -1
- modal/runner.pyi +3 -3
- {modal-0.73.2.dist-info → modal-0.73.4.dist-info}/METADATA +2 -2
- {modal-0.73.2.dist-info → modal-0.73.4.dist-info}/RECORD +29 -28
- modal_proto/api.proto +1 -2
- modal_proto/api_pb2.py +436 -436
- modal_proto/api_pb2.pyi +6 -4
- modal_version/_version_generated.py +1 -1
- {modal-0.73.2.dist-info → modal-0.73.4.dist-info}/LICENSE +0 -0
- {modal-0.73.2.dist-info → modal-0.73.4.dist-info}/WHEEL +0 -0
- {modal-0.73.2.dist-info → modal-0.73.4.dist-info}/entry_points.txt +0 -0
- {modal-0.73.2.dist-info → modal-0.73.4.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -5278,15 +5278,17 @@ class FunctionRetryInputsRequest(google.protobuf.message.Message):
|
|
5278
5278
|
global___FunctionRetryInputsRequest = FunctionRetryInputsRequest
|
5279
5279
|
|
5280
5280
|
class FunctionRetryInputsResponse(google.protobuf.message.Message):
|
5281
|
-
"""TODO(ryan): Eventually this will return entry ids, which client
|
5282
|
-
will send back to server to check for lost inputs.
|
5283
|
-
"""
|
5284
|
-
|
5285
5281
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
5286
5282
|
|
5283
|
+
INPUT_JWTS_FIELD_NUMBER: builtins.int
|
5284
|
+
@property
|
5285
|
+
def input_jwts(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
5287
5286
|
def __init__(
|
5288
5287
|
self,
|
5288
|
+
*,
|
5289
|
+
input_jwts: collections.abc.Iterable[builtins.str] | None = ...,
|
5289
5290
|
) -> None: ...
|
5291
|
+
def ClearField(self, field_name: typing_extensions.Literal["input_jwts", b"input_jwts"]) -> None: ...
|
5290
5292
|
|
5291
5293
|
global___FunctionRetryInputsResponse = FunctionRetryInputsResponse
|
5292
5294
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|