modal 0.73.36__py3-none-any.whl → 0.73.38__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 +1 -0
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- modal/image.py +3 -0
- modal/image.pyi +4 -0
- {modal-0.73.36.dist-info → modal-0.73.38.dist-info}/METADATA +1 -1
- {modal-0.73.36.dist-info → modal-0.73.38.dist-info}/RECORD +15 -15
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +482 -482
- modal_proto/api_pb2.pyi +4 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.73.36.dist-info → modal-0.73.38.dist-info}/LICENSE +0 -0
- {modal-0.73.36.dist-info → modal-0.73.38.dist-info}/WHEEL +0 -0
- {modal-0.73.36.dist-info → modal-0.73.38.dist-info}/entry_points.txt +0 -0
- {modal-0.73.36.dist-info → modal-0.73.38.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -4715,6 +4715,7 @@ class FunctionGetOutputsItem(google.protobuf.message.Message):
|
|
4715
4715
|
TASK_ID_FIELD_NUMBER: builtins.int
|
4716
4716
|
INPUT_STARTED_AT_FIELD_NUMBER: builtins.int
|
4717
4717
|
OUTPUT_CREATED_AT_FIELD_NUMBER: builtins.int
|
4718
|
+
RETRY_COUNT_FIELD_NUMBER: builtins.int
|
4718
4719
|
@property
|
4719
4720
|
def result(self) -> global___GenericResult: ...
|
4720
4721
|
idx: builtins.int
|
@@ -4724,6 +4725,7 @@ class FunctionGetOutputsItem(google.protobuf.message.Message):
|
|
4724
4725
|
task_id: builtins.str
|
4725
4726
|
input_started_at: builtins.float
|
4726
4727
|
output_created_at: builtins.float
|
4728
|
+
retry_count: builtins.int
|
4727
4729
|
def __init__(
|
4728
4730
|
self,
|
4729
4731
|
*,
|
@@ -4734,9 +4736,10 @@ class FunctionGetOutputsItem(google.protobuf.message.Message):
|
|
4734
4736
|
task_id: builtins.str = ...,
|
4735
4737
|
input_started_at: builtins.float = ...,
|
4736
4738
|
output_created_at: builtins.float = ...,
|
4739
|
+
retry_count: builtins.int = ...,
|
4737
4740
|
) -> None: ...
|
4738
4741
|
def HasField(self, field_name: typing_extensions.Literal["result", b"result"]) -> builtins.bool: ...
|
4739
|
-
def ClearField(self, field_name: typing_extensions.Literal["data_format", b"data_format", "idx", b"idx", "input_id", b"input_id", "input_started_at", b"input_started_at", "output_created_at", b"output_created_at", "result", b"result", "task_id", b"task_id"]) -> None: ...
|
4742
|
+
def ClearField(self, field_name: typing_extensions.Literal["data_format", b"data_format", "idx", b"idx", "input_id", b"input_id", "input_started_at", b"input_started_at", "output_created_at", b"output_created_at", "result", b"result", "retry_count", b"retry_count", "task_id", b"task_id"]) -> None: ...
|
4740
4743
|
|
4741
4744
|
global___FunctionGetOutputsItem = FunctionGetOutputsItem
|
4742
4745
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|