modal 1.0.6.dev41__py3-none-any.whl → 1.0.6.dev43__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/client.pyi +2 -2
- modal/functions.pyi +6 -6
- {modal-1.0.6.dev41.dist-info → modal-1.0.6.dev43.dist-info}/METADATA +1 -1
- {modal-1.0.6.dev41.dist-info → modal-1.0.6.dev43.dist-info}/RECORD +12 -12
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +557 -557
- modal_proto/api_pb2.pyi +6 -1
- modal_version/__init__.py +1 -1
- {modal-1.0.6.dev41.dist-info → modal-1.0.6.dev43.dist-info}/WHEEL +0 -0
- {modal-1.0.6.dev41.dist-info → modal-1.0.6.dev43.dist-info}/entry_points.txt +0 -0
- {modal-1.0.6.dev41.dist-info → modal-1.0.6.dev43.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.6.dev41.dist-info → modal-1.0.6.dev43.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
|
@@ -4818,16 +4818,21 @@ class FunctionCallPutDataRequest(google.protobuf.message.Message):
|
|
|
4818
4818
|
|
|
4819
4819
|
FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
|
|
4820
4820
|
DATA_CHUNKS_FIELD_NUMBER: builtins.int
|
|
4821
|
+
ATTEMPT_TOKEN_FIELD_NUMBER: builtins.int
|
|
4821
4822
|
function_call_id: builtins.str
|
|
4822
4823
|
@property
|
|
4823
4824
|
def data_chunks(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DataChunk]: ...
|
|
4825
|
+
attempt_token: builtins.str
|
|
4824
4826
|
def __init__(
|
|
4825
4827
|
self,
|
|
4826
4828
|
*,
|
|
4827
4829
|
function_call_id: builtins.str = ...,
|
|
4828
4830
|
data_chunks: collections.abc.Iterable[global___DataChunk] | None = ...,
|
|
4831
|
+
attempt_token: builtins.str | None = ...,
|
|
4829
4832
|
) -> None: ...
|
|
4830
|
-
def
|
|
4833
|
+
def HasField(self, field_name: typing_extensions.Literal["_attempt_token", b"_attempt_token", "attempt_token", b"attempt_token"]) -> builtins.bool: ...
|
|
4834
|
+
def ClearField(self, field_name: typing_extensions.Literal["_attempt_token", b"_attempt_token", "attempt_token", b"attempt_token", "data_chunks", b"data_chunks", "function_call_id", b"function_call_id"]) -> None: ...
|
|
4835
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_attempt_token", b"_attempt_token"]) -> typing_extensions.Literal["attempt_token"] | None: ...
|
|
4831
4836
|
|
|
4832
4837
|
global___FunctionCallPutDataRequest = FunctionCallPutDataRequest
|
|
4833
4838
|
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|