modal 0.74.47__py3-none-any.whl → 0.74.49__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/_functions.py +35 -5
- modal/_utils/async_utils.py +13 -0
- modal/_utils/logger.py +16 -7
- modal/client.pyi +2 -2
- modal/config.py +6 -0
- modal/functions.pyi +18 -8
- modal/parallel_map.py +55 -1
- modal/parallel_map.pyi +2 -0
- {modal-0.74.47.dist-info → modal-0.74.49.dist-info}/METADATA +1 -1
- {modal-0.74.47.dist-info → modal-0.74.49.dist-info}/RECORD +18 -18
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +488 -488
- modal_proto/api_pb2.pyi +4 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.74.47.dist-info → modal-0.74.49.dist-info}/WHEEL +0 -0
- {modal-0.74.47.dist-info → modal-0.74.49.dist-info}/entry_points.txt +0 -0
- {modal-0.74.47.dist-info → modal-0.74.49.dist-info}/licenses/LICENSE +0 -0
- {modal-0.74.47.dist-info → modal-0.74.49.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -5317,6 +5317,7 @@ class FunctionMapRequest(google.protobuf.message.Message):
|
|
5317
5317
|
FUNCTION_CALL_TYPE_FIELD_NUMBER: builtins.int
|
5318
5318
|
PIPELINED_INPUTS_FIELD_NUMBER: builtins.int
|
5319
5319
|
FUNCTION_CALL_INVOCATION_TYPE_FIELD_NUMBER: builtins.int
|
5320
|
+
FROM_SPAWN_MAP_FIELD_NUMBER: builtins.int
|
5320
5321
|
function_id: builtins.str
|
5321
5322
|
parent_input_id: builtins.str
|
5322
5323
|
return_exceptions: builtins.bool
|
@@ -5324,6 +5325,7 @@ class FunctionMapRequest(google.protobuf.message.Message):
|
|
5324
5325
|
@property
|
5325
5326
|
def pipelined_inputs(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FunctionPutInputsItem]: ...
|
5326
5327
|
function_call_invocation_type: global___FunctionCallInvocationType.ValueType
|
5328
|
+
from_spawn_map: builtins.bool
|
5327
5329
|
def __init__(
|
5328
5330
|
self,
|
5329
5331
|
*,
|
@@ -5333,8 +5335,9 @@ class FunctionMapRequest(google.protobuf.message.Message):
|
|
5333
5335
|
function_call_type: global___FunctionCallType.ValueType = ...,
|
5334
5336
|
pipelined_inputs: collections.abc.Iterable[global___FunctionPutInputsItem] | None = ...,
|
5335
5337
|
function_call_invocation_type: global___FunctionCallInvocationType.ValueType = ...,
|
5338
|
+
from_spawn_map: builtins.bool = ...,
|
5336
5339
|
) -> None: ...
|
5337
|
-
def ClearField(self, field_name: typing_extensions.Literal["function_call_invocation_type", b"function_call_invocation_type", "function_call_type", b"function_call_type", "function_id", b"function_id", "parent_input_id", b"parent_input_id", "pipelined_inputs", b"pipelined_inputs", "return_exceptions", b"return_exceptions"]) -> None: ...
|
5340
|
+
def ClearField(self, field_name: typing_extensions.Literal["from_spawn_map", b"from_spawn_map", "function_call_invocation_type", b"function_call_invocation_type", "function_call_type", b"function_call_type", "function_id", b"function_id", "parent_input_id", b"parent_input_id", "pipelined_inputs", b"pipelined_inputs", "return_exceptions", b"return_exceptions"]) -> None: ...
|
5338
5341
|
|
5339
5342
|
global___FunctionMapRequest = FunctionMapRequest
|
5340
5343
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|