modal 1.0.0.dev4__py3-none-any.whl → 1.0.0.dev7__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/app.py +0 -50
- modal/app.pyi +0 -83
- modal/client.pyi +2 -2
- modal/container_process.py +1 -9
- modal/container_process.pyi +3 -3
- modal/runner.py +0 -18
- modal/runner.pyi +0 -5
- modal/sandbox.py +0 -20
- modal/sandbox.pyi +0 -2
- modal/serving.py +0 -6
- modal/serving.pyi +0 -3
- modal/volume.py +6 -13
- {modal-1.0.0.dev4.dist-info → modal-1.0.0.dev7.dist-info}/METADATA +1 -1
- {modal-1.0.0.dev4.dist-info → modal-1.0.0.dev7.dist-info}/RECORD +22 -22
- modal_proto/api.proto +1 -1
- modal_proto/api_pb2.py +156 -156
- modal_proto/api_pb2.pyi +4 -4
- modal_version/__init__.py +1 -1
- {modal-1.0.0.dev4.dist-info → modal-1.0.0.dev7.dist-info}/WHEEL +0 -0
- {modal-1.0.0.dev4.dist-info → modal-1.0.0.dev7.dist-info}/entry_points.txt +0 -0
- {modal-1.0.0.dev4.dist-info → modal-1.0.0.dev7.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.0.dev4.dist-info → modal-1.0.0.dev7.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -9067,7 +9067,7 @@ class TaskLogs(google.protobuf.message.Message):
|
|
9067
9067
|
TASK_PROGRESS_FIELD_NUMBER: builtins.int
|
9068
9068
|
FUNCTION_CALL_ID_FIELD_NUMBER: builtins.int
|
9069
9069
|
INPUT_ID_FIELD_NUMBER: builtins.int
|
9070
|
-
|
9070
|
+
TIMESTAMP_NS_FIELD_NUMBER: builtins.int
|
9071
9071
|
data: builtins.str
|
9072
9072
|
task_state: global___TaskState.ValueType
|
9073
9073
|
timestamp: builtins.float
|
@@ -9076,7 +9076,7 @@ class TaskLogs(google.protobuf.message.Message):
|
|
9076
9076
|
def task_progress(self) -> global___TaskProgress: ...
|
9077
9077
|
function_call_id: builtins.str
|
9078
9078
|
input_id: builtins.str
|
9079
|
-
|
9079
|
+
timestamp_ns: builtins.int
|
9080
9080
|
def __init__(
|
9081
9081
|
self,
|
9082
9082
|
*,
|
@@ -9087,10 +9087,10 @@ class TaskLogs(google.protobuf.message.Message):
|
|
9087
9087
|
task_progress: global___TaskProgress | None = ...,
|
9088
9088
|
function_call_id: builtins.str = ...,
|
9089
9089
|
input_id: builtins.str = ...,
|
9090
|
-
|
9090
|
+
timestamp_ns: builtins.int = ...,
|
9091
9091
|
) -> None: ...
|
9092
9092
|
def HasField(self, field_name: typing_extensions.Literal["task_progress", b"task_progress"]) -> builtins.bool: ...
|
9093
|
-
def ClearField(self, field_name: typing_extensions.Literal["data", b"data", "file_descriptor", b"file_descriptor", "function_call_id", b"function_call_id", "
|
9093
|
+
def ClearField(self, field_name: typing_extensions.Literal["data", b"data", "file_descriptor", b"file_descriptor", "function_call_id", b"function_call_id", "input_id", b"input_id", "task_progress", b"task_progress", "task_state", b"task_state", "timestamp", b"timestamp", "timestamp_ns", b"timestamp_ns"]) -> None: ...
|
9094
9094
|
|
9095
9095
|
global___TaskLogs = TaskLogs
|
9096
9096
|
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|