modal 1.1.2.dev14__py3-none-any.whl → 1.1.2.dev15__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/client.pyi +2 -2
- {modal-1.1.2.dev14.dist-info → modal-1.1.2.dev15.dist-info}/METADATA +1 -1
- {modal-1.1.2.dev14.dist-info → modal-1.1.2.dev15.dist-info}/RECORD +11 -11
- modal_proto/api.proto +8 -4
- modal_proto/api_pb2.py +596 -596
- modal_proto/api_pb2.pyi +12 -7
- modal_version/__init__.py +1 -1
- {modal-1.1.2.dev14.dist-info → modal-1.1.2.dev15.dist-info}/WHEEL +0 -0
- {modal-1.1.2.dev14.dist-info → modal-1.1.2.dev15.dist-info}/entry_points.txt +0 -0
- {modal-1.1.2.dev14.dist-info → modal-1.1.2.dev15.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.2.dev14.dist-info → modal-1.1.2.dev15.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -4809,21 +4809,21 @@ class FunctionCallGetDataRequest(google.protobuf.message.Message):
|
|
4809
4809
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
4810
4810
|
|
4811
4811
|
FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
|
4812
|
-
LAST_INDEX_FIELD_NUMBER: builtins.int
|
4813
4812
|
ATTEMPT_TOKEN_FIELD_NUMBER: builtins.int
|
4813
|
+
LAST_INDEX_FIELD_NUMBER: builtins.int
|
4814
4814
|
function_call_id: builtins.str
|
4815
|
-
last_index: builtins.int
|
4816
4815
|
attempt_token: builtins.str
|
4816
|
+
last_index: builtins.int
|
4817
4817
|
def __init__(
|
4818
4818
|
self,
|
4819
4819
|
*,
|
4820
4820
|
function_call_id: builtins.str = ...,
|
4821
|
+
attempt_token: builtins.str = ...,
|
4821
4822
|
last_index: builtins.int = ...,
|
4822
|
-
attempt_token: builtins.str | None = ...,
|
4823
4823
|
) -> None: ...
|
4824
|
-
def HasField(self, field_name: typing_extensions.Literal["
|
4825
|
-
def ClearField(self, field_name: typing_extensions.Literal["
|
4826
|
-
def WhichOneof(self, oneof_group: typing_extensions.Literal["
|
4824
|
+
def HasField(self, field_name: typing_extensions.Literal["attempt_token", b"attempt_token", "call_info", b"call_info", "function_call_id", b"function_call_id"]) -> builtins.bool: ...
|
4825
|
+
def ClearField(self, field_name: typing_extensions.Literal["attempt_token", b"attempt_token", "call_info", b"call_info", "function_call_id", b"function_call_id", "last_index", b"last_index"]) -> None: ...
|
4826
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["call_info", b"call_info"]) -> typing_extensions.Literal["function_call_id", "attempt_token"] | None: ...
|
4827
4827
|
|
4828
4828
|
global___FunctionCallGetDataRequest = FunctionCallGetDataRequest
|
4829
4829
|
|
@@ -4909,17 +4909,22 @@ class FunctionCallPutDataRequest(google.protobuf.message.Message):
|
|
4909
4909
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
4910
4910
|
|
4911
4911
|
FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
|
4912
|
+
ATTEMPT_TOKEN_FIELD_NUMBER: builtins.int
|
4912
4913
|
DATA_CHUNKS_FIELD_NUMBER: builtins.int
|
4913
4914
|
function_call_id: builtins.str
|
4915
|
+
attempt_token: builtins.str
|
4914
4916
|
@property
|
4915
4917
|
def data_chunks(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DataChunk]: ...
|
4916
4918
|
def __init__(
|
4917
4919
|
self,
|
4918
4920
|
*,
|
4919
4921
|
function_call_id: builtins.str = ...,
|
4922
|
+
attempt_token: builtins.str = ...,
|
4920
4923
|
data_chunks: collections.abc.Iterable[global___DataChunk] | None = ...,
|
4921
4924
|
) -> None: ...
|
4922
|
-
def
|
4925
|
+
def HasField(self, field_name: typing_extensions.Literal["attempt_token", b"attempt_token", "call_info", b"call_info", "function_call_id", b"function_call_id"]) -> builtins.bool: ...
|
4926
|
+
def ClearField(self, field_name: typing_extensions.Literal["attempt_token", b"attempt_token", "call_info", b"call_info", "data_chunks", b"data_chunks", "function_call_id", b"function_call_id"]) -> None: ...
|
4927
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["call_info", b"call_info"]) -> typing_extensions.Literal["function_call_id", "attempt_token"] | None: ...
|
4923
4928
|
|
4924
4929
|
global___FunctionCallPutDataRequest = FunctionCallPutDataRequest
|
4925
4930
|
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|