modal 1.1.2.dev8__py3-none-any.whl → 1.1.2.dev10__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/_functions.py +1 -2
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- {modal-1.1.2.dev8.dist-info → modal-1.1.2.dev10.dist-info}/METADATA +1 -1
- {modal-1.1.2.dev8.dist-info → modal-1.1.2.dev10.dist-info}/RECORD +13 -13
- modal_proto/api.proto +0 -2
- modal_proto/api_pb2_grpc.py +0 -2
- modal_proto/api_pb2_grpc.pyi +2 -8
- modal_version/__init__.py +1 -1
- {modal-1.1.2.dev8.dist-info → modal-1.1.2.dev10.dist-info}/WHEEL +0 -0
- {modal-1.1.2.dev8.dist-info → modal-1.1.2.dev10.dist-info}/entry_points.txt +0 -0
- {modal-1.1.2.dev8.dist-info → modal-1.1.2.dev10.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.2.dev8.dist-info → modal-1.1.2.dev10.dist-info}/top_level.txt +0 -0
modal/_functions.py
CHANGED
|
@@ -354,8 +354,7 @@ class _Invocation:
|
|
|
354
354
|
|
|
355
355
|
class _InputPlaneInvocation:
|
|
356
356
|
"""Internal client representation of a single-input call to a Modal Function using the input
|
|
357
|
-
plane server API.
|
|
358
|
-
It is OK to make breaking changes to this class."""
|
|
357
|
+
plane server API."""
|
|
359
358
|
|
|
360
359
|
stub: ModalClientModal
|
|
361
360
|
|
modal/client.pyi
CHANGED
|
@@ -33,7 +33,7 @@ class _Client:
|
|
|
33
33
|
server_url: str,
|
|
34
34
|
client_type: int,
|
|
35
35
|
credentials: typing.Optional[tuple[str, str]],
|
|
36
|
-
version: str = "1.1.2.
|
|
36
|
+
version: str = "1.1.2.dev10",
|
|
37
37
|
):
|
|
38
38
|
"""mdmd:hidden
|
|
39
39
|
The Modal client object is not intended to be instantiated directly by users.
|
|
@@ -164,7 +164,7 @@ class Client:
|
|
|
164
164
|
server_url: str,
|
|
165
165
|
client_type: int,
|
|
166
166
|
credentials: typing.Optional[tuple[str, str]],
|
|
167
|
-
version: str = "1.1.2.
|
|
167
|
+
version: str = "1.1.2.dev10",
|
|
168
168
|
):
|
|
169
169
|
"""mdmd:hidden
|
|
170
170
|
The Modal client object is not intended to be instantiated directly by users.
|
modal/functions.pyi
CHANGED
|
@@ -433,7 +433,7 @@ class Function(
|
|
|
433
433
|
|
|
434
434
|
_call_generator: ___call_generator_spec[typing_extensions.Self]
|
|
435
435
|
|
|
436
|
-
class __remote_spec(typing_extensions.Protocol[
|
|
436
|
+
class __remote_spec(typing_extensions.Protocol[ReturnType_INNER, P_INNER, SUPERSELF]):
|
|
437
437
|
def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> ReturnType_INNER:
|
|
438
438
|
"""Calls the function remotely, executing it with the given arguments and returning the execution's result."""
|
|
439
439
|
...
|
|
@@ -442,7 +442,7 @@ class Function(
|
|
|
442
442
|
"""Calls the function remotely, executing it with the given arguments and returning the execution's result."""
|
|
443
443
|
...
|
|
444
444
|
|
|
445
|
-
remote: __remote_spec[modal._functions.
|
|
445
|
+
remote: __remote_spec[modal._functions.ReturnType, modal._functions.P, typing_extensions.Self]
|
|
446
446
|
|
|
447
447
|
class __remote_gen_spec(typing_extensions.Protocol[SUPERSELF]):
|
|
448
448
|
def __call__(self, /, *args, **kwargs) -> typing.Generator[typing.Any, None, None]:
|
|
@@ -469,7 +469,7 @@ class Function(
|
|
|
469
469
|
"""
|
|
470
470
|
...
|
|
471
471
|
|
|
472
|
-
class ___experimental_spawn_spec(typing_extensions.Protocol[
|
|
472
|
+
class ___experimental_spawn_spec(typing_extensions.Protocol[ReturnType_INNER, P_INNER, SUPERSELF]):
|
|
473
473
|
def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]:
|
|
474
474
|
"""[Experimental] Calls the function with the given arguments, without waiting for the results.
|
|
475
475
|
|
|
@@ -493,7 +493,7 @@ class Function(
|
|
|
493
493
|
...
|
|
494
494
|
|
|
495
495
|
_experimental_spawn: ___experimental_spawn_spec[
|
|
496
|
-
modal._functions.
|
|
496
|
+
modal._functions.ReturnType, modal._functions.P, typing_extensions.Self
|
|
497
497
|
]
|
|
498
498
|
|
|
499
499
|
class ___spawn_map_inner_spec(typing_extensions.Protocol[P_INNER, SUPERSELF]):
|
|
@@ -502,7 +502,7 @@ class Function(
|
|
|
502
502
|
|
|
503
503
|
_spawn_map_inner: ___spawn_map_inner_spec[modal._functions.P, typing_extensions.Self]
|
|
504
504
|
|
|
505
|
-
class __spawn_spec(typing_extensions.Protocol[
|
|
505
|
+
class __spawn_spec(typing_extensions.Protocol[ReturnType_INNER, P_INNER, SUPERSELF]):
|
|
506
506
|
def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]:
|
|
507
507
|
"""Calls the function with the given arguments, without waiting for the results.
|
|
508
508
|
|
|
@@ -523,7 +523,7 @@ class Function(
|
|
|
523
523
|
"""
|
|
524
524
|
...
|
|
525
525
|
|
|
526
|
-
spawn: __spawn_spec[modal._functions.
|
|
526
|
+
spawn: __spawn_spec[modal._functions.ReturnType, modal._functions.P, typing_extensions.Self]
|
|
527
527
|
|
|
528
528
|
def get_raw_f(self) -> collections.abc.Callable[..., typing.Any]:
|
|
529
529
|
"""Return the inner Python object wrapped by this Modal Function."""
|
|
@@ -3,7 +3,7 @@ modal/__main__.py,sha256=45H-GtwzaDfN-1nP4_HYvzN3s7AG_HXR4-ynrsjO_OI,2803
|
|
|
3
3
|
modal/_clustered_functions.py,sha256=zmrKbptRbqp4euS3LWncKaLXb8Kjj4YreusOzpEpRMk,2856
|
|
4
4
|
modal/_clustered_functions.pyi,sha256=_wtFjWocGf1WgI-qYBpbJPArNkg2H9JV7BVaGgMesEQ,1103
|
|
5
5
|
modal/_container_entrypoint.py,sha256=1qBMNY_E9ICC_sRCtillMxmKPsmxJl1J0_qOAG8rH-0,28288
|
|
6
|
-
modal/_functions.py,sha256=
|
|
6
|
+
modal/_functions.py,sha256=rOk0CIWmkZzrcbWraJd4G8UC6bSHP0q6HK7doWa4xUY,83394
|
|
7
7
|
modal/_ipython.py,sha256=TW1fkVOmZL3YYqdS2YlM1hqpf654Yf8ZyybHdBnlhSw,301
|
|
8
8
|
modal/_location.py,sha256=joiX-0ZeutEUDTrrqLF1GHXCdVLF-rHzstocbMcd_-k,366
|
|
9
9
|
modal/_object.py,sha256=nCkQeLibSuvVAEIheGaLnUfN5PIh1CGpJCnzPIXymGY,11563
|
|
@@ -22,7 +22,7 @@ modal/app.py,sha256=kpq4kXp7pch688y6g55QYAC10wqPTU5FXKoWPMirA3E,47899
|
|
|
22
22
|
modal/app.pyi,sha256=-jKXlGDBWRPVsuenBhdMRqawK-L2eiJ7gHbmSblhltg,43525
|
|
23
23
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
|
24
24
|
modal/client.py,sha256=kyAIVB3Ay-XKJizQ_1ufUFB__EagV0MLmHJpyYyJ7J0,18636
|
|
25
|
-
modal/client.pyi,sha256=
|
|
25
|
+
modal/client.pyi,sha256=bGDKO4raFW0G4eGAhdmS-iVdsE9pdh4y1SbSuyDDszg,15831
|
|
26
26
|
modal/cloud_bucket_mount.py,sha256=YOe9nnvSr4ZbeCn587d7_VhE9IioZYRvF9VYQTQux08,5914
|
|
27
27
|
modal/cloud_bucket_mount.pyi,sha256=-qSfYAQvIoO_l2wsCCGTG5ZUwQieNKXdAO00yP1-LYU,7394
|
|
28
28
|
modal/cls.py,sha256=7A0xGnugQzm8dOfnKMjLjtqekRlRtQ0jPFRYgq6xdUM,40018
|
|
@@ -39,7 +39,7 @@ modal/file_io.py,sha256=BVqAJ0sgPUfN8QsYztWiGB4j56he60TncM02KsylnCw,21449
|
|
|
39
39
|
modal/file_io.pyi,sha256=cPT_hsplE5iLCXhYOLn1Sp9eDdk7DxdFmicQHanJZyg,15918
|
|
40
40
|
modal/file_pattern_matcher.py,sha256=A_Kdkej6q7YQyhM_2-BvpFmPqJ0oHb54B6yf9VqvPVE,8116
|
|
41
41
|
modal/functions.py,sha256=kcNHvqeGBxPI7Cgd57NIBBghkfbeFJzXO44WW0jSmao,325
|
|
42
|
-
modal/functions.pyi,sha256=
|
|
42
|
+
modal/functions.pyi,sha256=s3PQtacOfSeHukLR7Xz3qGD2sVh-CEgfpjgimv2gCCo,36161
|
|
43
43
|
modal/gpu.py,sha256=Fe5ORvVPDIstSq1xjmM6OoNgLYFWvogP9r5BgmD3hYg,6769
|
|
44
44
|
modal/image.py,sha256=A83nmo0zfCUwgvJh0LZ7Yc1sYvDnZLl_phbKxN-9HIw,103144
|
|
45
45
|
modal/image.pyi,sha256=oH-GCHVEwD5fOX0K_IaWN5RKZlYwX82z-K4wxx8aN3c,68541
|
|
@@ -151,7 +151,7 @@ modal/experimental/__init__.py,sha256=nuc7AL4r_Fs08DD5dciWFZhrV1nanwoClOfdTcudU0
|
|
|
151
151
|
modal/experimental/flash.py,sha256=viXQumCIFp5VFsPFURdFTBTjP_QnsAi8nSWXAMmfjeQ,19744
|
|
152
152
|
modal/experimental/flash.pyi,sha256=A8_qJGtGoXEzKDdHbvhmCw7oqfneFEvJQK3ZdTOvUdU,10830
|
|
153
153
|
modal/experimental/ipython.py,sha256=TrCfmol9LGsRZMeDoeMPx3Hv3BFqQhYnmD_iH0pqdhk,2904
|
|
154
|
-
modal-1.1.2.
|
|
154
|
+
modal-1.1.2.dev10.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
|
155
155
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
|
156
156
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
|
157
157
|
modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
|
|
@@ -159,12 +159,12 @@ modal_docs/mdmd/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,2
|
|
|
159
159
|
modal_docs/mdmd/mdmd.py,sha256=eW5MzrEl7mSclDo4Uv64sQ1-4IyLggldbgUJdBVLDdI,6449
|
|
160
160
|
modal_docs/mdmd/signatures.py,sha256=XJaZrK7Mdepk5fdX51A8uENiLFNil85Ud0d4MH8H5f0,3218
|
|
161
161
|
modal_proto/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0VESpjWR0fc,28
|
|
162
|
-
modal_proto/api.proto,sha256=
|
|
162
|
+
modal_proto/api.proto,sha256=7tWgJEupLZc7-xRui1LhCRIBeDV88IeHfTKWxjmhfjs,103701
|
|
163
163
|
modal_proto/api_grpc.py,sha256=1mDcIexGtoVq0675-sqlYVr_M2ncGETpmKsOP7VwE3Y,126369
|
|
164
164
|
modal_proto/api_pb2.py,sha256=NWN4agq7NgSJMMzxShYu3EExpQRwPH0cBxLWOs0BwwY,364158
|
|
165
165
|
modal_proto/api_pb2.pyi,sha256=NQ7OWnb2gP3QDTInQ78E0DDmwhsrqRNQxygaq2N3SzA,501343
|
|
166
|
-
modal_proto/api_pb2_grpc.py,sha256=
|
|
167
|
-
modal_proto/api_pb2_grpc.pyi,sha256=
|
|
166
|
+
modal_proto/api_pb2_grpc.py,sha256=8TyCjBX-IvJaO_v7vkF_-J9h72wwLOe4MKL_jyXTK0g,272649
|
|
167
|
+
modal_proto/api_pb2_grpc.pyi,sha256=SQtAD1GR57oJOjxohW_8XTHpRRCahy02FTq0IYWzTNs,63669
|
|
168
168
|
modal_proto/modal_api_grpc.py,sha256=KL5Nw4AS9hJNxfL6VIeuxHz4jIUN7Unz7hYnoSsqyx0,19071
|
|
169
169
|
modal_proto/modal_options_grpc.py,sha256=qJ1cuwA54oRqrdTyPTbvfhFZYd9HhJKK5UCwt523r3Y,120
|
|
170
170
|
modal_proto/options.proto,sha256=zp9h5r61ivsp0XwEWwNBsVqNTbRA1VSY_UtN7sEcHtE,549
|
|
@@ -174,10 +174,10 @@ modal_proto/options_pb2.pyi,sha256=l7DBrbLO7q3Ir-XDkWsajm0d0TQqqrfuX54i4BMpdQg,1
|
|
|
174
174
|
modal_proto/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
175
175
|
modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0yJSI,247
|
|
176
176
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
|
-
modal_version/__init__.py,sha256=
|
|
177
|
+
modal_version/__init__.py,sha256=gUT1kr5mQU3RBx2UORKTLogILhIIs_xznMFawGLRXh8,121
|
|
178
178
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
|
179
|
-
modal-1.1.2.
|
|
180
|
-
modal-1.1.2.
|
|
181
|
-
modal-1.1.2.
|
|
182
|
-
modal-1.1.2.
|
|
183
|
-
modal-1.1.2.
|
|
179
|
+
modal-1.1.2.dev10.dist-info/METADATA,sha256=gYDWRZcgB47TizoWlaKco7b18d3MFFHqFArTk-sImUs,2460
|
|
180
|
+
modal-1.1.2.dev10.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
181
|
+
modal-1.1.2.dev10.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
|
182
|
+
modal-1.1.2.dev10.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
|
183
|
+
modal-1.1.2.dev10.dist-info/RECORD,,
|
modal_proto/api.proto
CHANGED
|
@@ -3416,8 +3416,6 @@ service ModalClient {
|
|
|
3416
3416
|
rpc AppStop(AppStopRequest) returns (google.protobuf.Empty);
|
|
3417
3417
|
|
|
3418
3418
|
// Input Plane
|
|
3419
|
-
// These RPCs are experimental, not deployed to production, and can be changed / removed
|
|
3420
|
-
// without needing to worry about backwards compatibility.
|
|
3421
3419
|
rpc AttemptAwait(AttemptAwaitRequest) returns (AttemptAwaitResponse);
|
|
3422
3420
|
rpc AttemptRetry(AttemptRetryRequest) returns (AttemptRetryResponse);
|
|
3423
3421
|
rpc AttemptStart(AttemptStartRequest) returns (AttemptStartResponse);
|
modal_proto/api_pb2_grpc.py
CHANGED
|
@@ -939,8 +939,6 @@ class ModalClientServicer(object):
|
|
|
939
939
|
|
|
940
940
|
def AttemptAwait(self, request, context):
|
|
941
941
|
"""Input Plane
|
|
942
|
-
These RPCs are experimental, not deployed to production, and can be changed / removed
|
|
943
|
-
without needing to worry about backwards compatibility.
|
|
944
942
|
"""
|
|
945
943
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
946
944
|
context.set_details('Method not implemented!')
|
modal_proto/api_pb2_grpc.pyi
CHANGED
|
@@ -79,10 +79,7 @@ class ModalClientStub:
|
|
|
79
79
|
modal_proto.api_pb2.AttemptAwaitRequest,
|
|
80
80
|
modal_proto.api_pb2.AttemptAwaitResponse,
|
|
81
81
|
]
|
|
82
|
-
"""Input Plane
|
|
83
|
-
These RPCs are experimental, not deployed to production, and can be changed / removed
|
|
84
|
-
without needing to worry about backwards compatibility.
|
|
85
|
-
"""
|
|
82
|
+
"""Input Plane"""
|
|
86
83
|
AttemptRetry: grpc.UnaryUnaryMultiCallable[
|
|
87
84
|
modal_proto.api_pb2.AttemptRetryRequest,
|
|
88
85
|
modal_proto.api_pb2.AttemptRetryResponse,
|
|
@@ -805,10 +802,7 @@ class ModalClientServicer(metaclass=abc.ABCMeta):
|
|
|
805
802
|
request: modal_proto.api_pb2.AttemptAwaitRequest,
|
|
806
803
|
context: grpc.ServicerContext,
|
|
807
804
|
) -> modal_proto.api_pb2.AttemptAwaitResponse:
|
|
808
|
-
"""Input Plane
|
|
809
|
-
These RPCs are experimental, not deployed to production, and can be changed / removed
|
|
810
|
-
without needing to worry about backwards compatibility.
|
|
811
|
-
"""
|
|
805
|
+
"""Input Plane"""
|
|
812
806
|
@abc.abstractmethod
|
|
813
807
|
def AttemptRetry(
|
|
814
808
|
self,
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|