modal 1.1.2.dev21__py3-none-any.whl → 1.1.2.dev22__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.dev21.dist-info → modal-1.1.2.dev22.dist-info}/METADATA +1 -1
- {modal-1.1.2.dev21.dist-info → modal-1.1.2.dev22.dist-info}/RECORD +11 -11
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +558 -558
- modal_proto/api_pb2.pyi +9 -2
- modal_version/__init__.py +1 -1
- {modal-1.1.2.dev21.dist-info → modal-1.1.2.dev22.dist-info}/WHEEL +0 -0
- {modal-1.1.2.dev21.dist-info → modal-1.1.2.dev22.dist-info}/entry_points.txt +0 -0
- {modal-1.1.2.dev21.dist-info → modal-1.1.2.dev22.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.2.dev21.dist-info → modal-1.1.2.dev22.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -5438,6 +5438,7 @@ class FunctionGetOutputsRequest(google.protobuf.message.Message):
|
|
5438
5438
|
REQUESTED_AT_FIELD_NUMBER: builtins.int
|
5439
5439
|
INPUT_JWTS_FIELD_NUMBER: builtins.int
|
5440
5440
|
START_IDX_FIELD_NUMBER: builtins.int
|
5441
|
+
END_IDX_FIELD_NUMBER: builtins.int
|
5441
5442
|
function_call_id: builtins.str
|
5442
5443
|
max_values: builtins.int
|
5443
5444
|
timeout: builtins.float
|
@@ -5451,6 +5452,8 @@ class FunctionGetOutputsRequest(google.protobuf.message.Message):
|
|
5451
5452
|
"""The jwts the client expects the server to be processing. This is optional and used for sync inputs only."""
|
5452
5453
|
start_idx: builtins.int
|
5453
5454
|
"""for async batch requests. this indicates which index to start from."""
|
5455
|
+
end_idx: builtins.int
|
5456
|
+
"""for async batch requests. this indicates which index to end at."""
|
5454
5457
|
def __init__(
|
5455
5458
|
self,
|
5456
5459
|
*,
|
@@ -5462,9 +5465,13 @@ class FunctionGetOutputsRequest(google.protobuf.message.Message):
|
|
5462
5465
|
requested_at: builtins.float = ...,
|
5463
5466
|
input_jwts: collections.abc.Iterable[builtins.str] | None = ...,
|
5464
5467
|
start_idx: builtins.int | None = ...,
|
5468
|
+
end_idx: builtins.int | None = ...,
|
5465
5469
|
) -> None: ...
|
5466
|
-
def HasField(self, field_name: typing_extensions.Literal["_start_idx", b"_start_idx", "start_idx", b"start_idx"]) -> builtins.bool: ...
|
5467
|
-
def ClearField(self, field_name: typing_extensions.Literal["_start_idx", b"_start_idx", "clear_on_success", b"clear_on_success", "function_call_id", b"function_call_id", "input_jwts", b"input_jwts", "last_entry_id", b"last_entry_id", "max_values", b"max_values", "requested_at", b"requested_at", "start_idx", b"start_idx", "timeout", b"timeout"]) -> None: ...
|
5470
|
+
def HasField(self, field_name: typing_extensions.Literal["_end_idx", b"_end_idx", "_start_idx", b"_start_idx", "end_idx", b"end_idx", "start_idx", b"start_idx"]) -> builtins.bool: ...
|
5471
|
+
def ClearField(self, field_name: typing_extensions.Literal["_end_idx", b"_end_idx", "_start_idx", b"_start_idx", "clear_on_success", b"clear_on_success", "end_idx", b"end_idx", "function_call_id", b"function_call_id", "input_jwts", b"input_jwts", "last_entry_id", b"last_entry_id", "max_values", b"max_values", "requested_at", b"requested_at", "start_idx", b"start_idx", "timeout", b"timeout"]) -> None: ...
|
5472
|
+
@typing.overload
|
5473
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_end_idx", b"_end_idx"]) -> typing_extensions.Literal["end_idx"] | None: ...
|
5474
|
+
@typing.overload
|
5468
5475
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_start_idx", b"_start_idx"]) -> typing_extensions.Literal["start_idx"] | None: ...
|
5469
5476
|
|
5470
5477
|
global___FunctionGetOutputsRequest = FunctionGetOutputsRequest
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|