modal 0.73.97__py3-none-any.whl → 0.73.99__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/_utils/grpc_utils.py +6 -1
- modal/client.pyi +2 -2
- {modal-0.73.97.dist-info → modal-0.73.99.dist-info}/METADATA +1 -1
- {modal-0.73.97.dist-info → modal-0.73.99.dist-info}/RECORD +12 -12
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +369 -369
- modal_proto/api_pb2.pyi +4 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.73.97.dist-info → modal-0.73.99.dist-info}/LICENSE +0 -0
- {modal-0.73.97.dist-info → modal-0.73.99.dist-info}/WHEEL +0 -0
- {modal-0.73.97.dist-info → modal-0.73.99.dist-info}/entry_points.txt +0 -0
- {modal-0.73.97.dist-info → modal-0.73.99.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -6166,15 +6166,18 @@ class NotebookKernelPublishResultsRequest(google.protobuf.message.Message):
|
|
6166
6166
|
|
6167
6167
|
STATUS_FIELD_NUMBER: builtins.int
|
6168
6168
|
EXECUTION_COUNT_FIELD_NUMBER: builtins.int
|
6169
|
+
DURATION_FIELD_NUMBER: builtins.int
|
6169
6170
|
status: builtins.str
|
6170
6171
|
execution_count: builtins.int
|
6172
|
+
duration: builtins.float
|
6171
6173
|
def __init__(
|
6172
6174
|
self,
|
6173
6175
|
*,
|
6174
6176
|
status: builtins.str = ...,
|
6175
6177
|
execution_count: builtins.int = ...,
|
6178
|
+
duration: builtins.float = ...,
|
6176
6179
|
) -> None: ...
|
6177
|
-
def ClearField(self, field_name: typing_extensions.Literal["execution_count", b"execution_count", "status", b"status"]) -> None: ...
|
6180
|
+
def ClearField(self, field_name: typing_extensions.Literal["duration", b"duration", "execution_count", b"execution_count", "status", b"status"]) -> None: ...
|
6178
6181
|
|
6179
6182
|
class CellResult(google.protobuf.message.Message):
|
6180
6183
|
"""IOPub message or reply received from the kernel for a cell."""
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|