modal 0.73.103__py3-none-any.whl → 0.73.105__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 +4 -0
- modal/client.pyi +2 -2
- modal/image.py +27 -0
- modal/image.pyi +2 -0
- {modal-0.73.103.dist-info → modal-0.73.105.dist-info}/METADATA +1 -1
- {modal-0.73.103.dist-info → modal-0.73.105.dist-info}/RECORD +14 -14
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +460 -460
- modal_proto/api_pb2.pyi +4 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.73.103.dist-info → modal-0.73.105.dist-info}/LICENSE +0 -0
- {modal-0.73.103.dist-info → modal-0.73.105.dist-info}/WHEEL +0 -0
- {modal-0.73.103.dist-info → modal-0.73.105.dist-info}/entry_points.txt +0 -0
- {modal-0.73.103.dist-info → modal-0.73.105.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -5024,12 +5024,14 @@ class FunctionMapResponse(google.protobuf.message.Message):
|
|
5024
5024
|
PIPELINED_INPUTS_FIELD_NUMBER: builtins.int
|
5025
5025
|
RETRY_POLICY_FIELD_NUMBER: builtins.int
|
5026
5026
|
FUNCTION_CALL_JWT_FIELD_NUMBER: builtins.int
|
5027
|
+
SYNC_CLIENT_RETRIES_ENABLED_FIELD_NUMBER: builtins.int
|
5027
5028
|
function_call_id: builtins.str
|
5028
5029
|
@property
|
5029
5030
|
def pipelined_inputs(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FunctionPutInputsResponseItem]: ...
|
5030
5031
|
@property
|
5031
5032
|
def retry_policy(self) -> global___FunctionRetryPolicy: ...
|
5032
5033
|
function_call_jwt: builtins.str
|
5034
|
+
sync_client_retries_enabled: builtins.bool
|
5033
5035
|
def __init__(
|
5034
5036
|
self,
|
5035
5037
|
*,
|
@@ -5037,9 +5039,10 @@ class FunctionMapResponse(google.protobuf.message.Message):
|
|
5037
5039
|
pipelined_inputs: collections.abc.Iterable[global___FunctionPutInputsResponseItem] | None = ...,
|
5038
5040
|
retry_policy: global___FunctionRetryPolicy | None = ...,
|
5039
5041
|
function_call_jwt: builtins.str = ...,
|
5042
|
+
sync_client_retries_enabled: builtins.bool = ...,
|
5040
5043
|
) -> None: ...
|
5041
5044
|
def HasField(self, field_name: typing_extensions.Literal["retry_policy", b"retry_policy"]) -> builtins.bool: ...
|
5042
|
-
def ClearField(self, field_name: typing_extensions.Literal["function_call_id", b"function_call_id", "function_call_jwt", b"function_call_jwt", "pipelined_inputs", b"pipelined_inputs", "retry_policy", b"retry_policy"]) -> None: ...
|
5045
|
+
def ClearField(self, field_name: typing_extensions.Literal["function_call_id", b"function_call_id", "function_call_jwt", b"function_call_jwt", "pipelined_inputs", b"pipelined_inputs", "retry_policy", b"retry_policy", "sync_client_retries_enabled", b"sync_client_retries_enabled"]) -> None: ...
|
5043
5046
|
|
5044
5047
|
global___FunctionMapResponse = FunctionMapResponse
|
5045
5048
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|