modal 1.1.2.dev29__py3-none-any.whl → 1.1.2.dev32__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/app.py +4 -0
- modal/cli/launch.py +2 -2
- modal/client.pyi +2 -2
- {modal-1.1.2.dev29.dist-info → modal-1.1.2.dev32.dist-info}/METADATA +1 -1
- {modal-1.1.2.dev29.dist-info → modal-1.1.2.dev32.dist-info}/RECORD +13 -13
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +566 -566
- modal_proto/api_pb2.pyi +4 -1
- modal_version/__init__.py +1 -1
- {modal-1.1.2.dev29.dist-info → modal-1.1.2.dev32.dist-info}/WHEEL +0 -0
- {modal-1.1.2.dev29.dist-info → modal-1.1.2.dev32.dist-info}/entry_points.txt +0 -0
- {modal-1.1.2.dev29.dist-info → modal-1.1.2.dev32.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.2.dev29.dist-info → modal-1.1.2.dev32.dist-info}/top_level.txt +0 -0
modal/app.py
CHANGED
@@ -931,13 +931,16 @@ class _App:
|
|
931
931
|
|
932
932
|
if wrapped_cls.flags & _PartialFunctionFlags.CLUSTERED:
|
933
933
|
cluster_size = wrapped_cls.params.cluster_size
|
934
|
+
rdma = wrapped_cls.params.rdma
|
934
935
|
else:
|
935
936
|
cluster_size = None
|
937
|
+
rdma = None
|
936
938
|
else:
|
937
939
|
user_cls = wrapped_cls
|
938
940
|
max_concurrent_inputs = allow_concurrent_inputs
|
939
941
|
target_concurrent_inputs = None
|
940
942
|
cluster_size = None
|
943
|
+
rdma = None
|
941
944
|
if not inspect.isclass(user_cls):
|
942
945
|
raise TypeError("The @app.cls decorator must be used on a class.")
|
943
946
|
|
@@ -1007,6 +1010,7 @@ class _App:
|
|
1007
1010
|
scheduler_placement=scheduler_placement,
|
1008
1011
|
i6pn_enabled=i6pn_enabled,
|
1009
1012
|
cluster_size=cluster_size,
|
1013
|
+
rdma=rdma,
|
1010
1014
|
include_source=include_source if include_source is not None else self._include_source_default,
|
1011
1015
|
experimental_options={k: str(v) for k, v in (experimental_options or {}).items()},
|
1012
1016
|
_experimental_proxy_ip=_experimental_proxy_ip,
|
modal/cli/launch.py
CHANGED
@@ -123,7 +123,7 @@ def vscode(
|
|
123
123
|
_launch_program("vscode", "vscode.py", detach, args)
|
124
124
|
|
125
125
|
|
126
|
-
@launch_cli.command(name="machine", help="Start an instance on Modal, with direct SSH access.")
|
126
|
+
@launch_cli.command(name="machine", help="Start an instance on Modal, with direct SSH access.", hidden=True)
|
127
127
|
def machine(
|
128
128
|
name: str, # Name of the machine App.
|
129
129
|
cpu: int = 8, # Reservation of CPU cores (can burst above this value).
|
@@ -170,7 +170,7 @@ def machine(
|
|
170
170
|
)
|
171
171
|
|
172
172
|
|
173
|
-
@launch_cli.command(name="marimo", help="Start a remote Marimo notebook on Modal.")
|
173
|
+
@launch_cli.command(name="marimo", help="Start a remote Marimo notebook on Modal.", hidden=True)
|
174
174
|
def marimo(
|
175
175
|
cpu: int = 8,
|
176
176
|
memory: int = 32768,
|
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.dev32",
|
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.dev32",
|
168
168
|
):
|
169
169
|
"""mdmd:hidden
|
170
170
|
The Modal client object is not intended to be instantiated directly by users.
|
@@ -18,11 +18,11 @@ modal/_tunnel.py,sha256=zTBxBiuH1O22tS1OliAJdIsSmaZS8PlnifS_6S5z-mk,6320
|
|
18
18
|
modal/_tunnel.pyi,sha256=rvC7USR2BcKkbZIeCJXwf7-UfGE-LPLjKsGNiK7Lxa4,13366
|
19
19
|
modal/_type_manager.py,sha256=DWjgmjYJuOagw2erin506UUbG2H5UzZCFEekS-7hmfA,9087
|
20
20
|
modal/_watcher.py,sha256=K6LYnlmSGQB4tWWI9JADv-tvSvQ1j522FwT71B51CX8,3584
|
21
|
-
modal/app.py,sha256=
|
21
|
+
modal/app.py,sha256=NIkdg9tTBsB8xWEOpU8GSpUfHeGleA4M9MQ77PKADok,48052
|
22
22
|
modal/app.pyi,sha256=k0HnXfwV3mEze3PFHmSeqXBqizNqeJWF5oxrqo-P4Wg,43447
|
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=wdzuDB5dJh4GZYUW_e8FfvbmFuOIMBOqVwLtSzbgzS4,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=1mBcExFrLDTZwkD3Dzu8F26_CL0CGktOV9pE60Y8g_E,40689
|
@@ -135,7 +135,7 @@ modal/cli/dict.py,sha256=YAJtiv41YcCd5Fqam3hXCNTs4Y0yOgGR_i6RfQNSAFM,4572
|
|
135
135
|
modal/cli/entry_point.py,sha256=F06p54rPOs1xAUeYW76RaimFOgLW_I17RCvNwfZRqPc,4747
|
136
136
|
modal/cli/environment.py,sha256=Ayddkiq9jdj3XYDJ8ZmUqFpPPH8xajYlbexRkzGtUcg,4334
|
137
137
|
modal/cli/import_refs.py,sha256=X59Z5JwgliRO6C-cIFto2Pr7o3SwlZMKQPKA0aI4ZK4,13927
|
138
|
-
modal/cli/launch.py,sha256=
|
138
|
+
modal/cli/launch.py,sha256=VARim2SCzgtI1ZuxQ6JgTTtvFwGA5czCwQZQHWC8Zcc,6498
|
139
139
|
modal/cli/network_file_system.py,sha256=I9IqTpVfk32uKYwGd8LTldkQx6UKYrQYNZ26q7Ab5Oo,8126
|
140
140
|
modal/cli/profile.py,sha256=g8X6tFFK9ccKyu2he9Yu19WLSLNdztzECgmIV__XJFs,3257
|
141
141
|
modal/cli/queues.py,sha256=5vKtKQ7YExdaxNPYZ0g5suU9sX0-F5h0zy0qBV-hN80,6140
|
@@ -153,7 +153,7 @@ modal/experimental/__init__.py,sha256=dPBPpxsmjZMLF3YjRrXoTvT01pl65wxi4UdFZsOem3
|
|
153
153
|
modal/experimental/flash.py,sha256=viXQumCIFp5VFsPFURdFTBTjP_QnsAi8nSWXAMmfjeQ,19744
|
154
154
|
modal/experimental/flash.pyi,sha256=A8_qJGtGoXEzKDdHbvhmCw7oqfneFEvJQK3ZdTOvUdU,10830
|
155
155
|
modal/experimental/ipython.py,sha256=TrCfmol9LGsRZMeDoeMPx3Hv3BFqQhYnmD_iH0pqdhk,2904
|
156
|
-
modal-1.1.2.
|
156
|
+
modal-1.1.2.dev32.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
157
157
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
158
158
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
159
159
|
modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
|
@@ -161,10 +161,10 @@ modal_docs/mdmd/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,2
|
|
161
161
|
modal_docs/mdmd/mdmd.py,sha256=tUTImNd4UMFk1opkaw8J672gX8AkBO5gbY2S_NMxsxs,7140
|
162
162
|
modal_docs/mdmd/signatures.py,sha256=XJaZrK7Mdepk5fdX51A8uENiLFNil85Ud0d4MH8H5f0,3218
|
163
163
|
modal_proto/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0VESpjWR0fc,28
|
164
|
-
modal_proto/api.proto,sha256=
|
164
|
+
modal_proto/api.proto,sha256=kMP25zmjHXX9UHd4Fn5urktJ0GjcXY5QQa9VDmsqKGM,104563
|
165
165
|
modal_proto/api_grpc.py,sha256=AWsKZFdXr_T6LpWGlMM6BDY30RdOPjqgoPMijR-R1lI,127964
|
166
|
-
modal_proto/api_pb2.py,sha256=
|
167
|
-
modal_proto/api_pb2.pyi,sha256=
|
166
|
+
modal_proto/api_pb2.py,sha256=W1pFgLJxlMwIIUPLmaFHzGhQQtTzrmcIL0flh_WVEek,366713
|
167
|
+
modal_proto/api_pb2.pyi,sha256=Le-NezvMy-R1fFrLZqX9OzF6SVl5REgWWV1O68jUA4k,505382
|
168
168
|
modal_proto/api_pb2_grpc.py,sha256=kDZBX6i1KdRpm4P3c2wdRbGe3XOFtqGHSbWE0vOe4F4,276062
|
169
169
|
modal_proto/api_pb2_grpc.pyi,sha256=s1hjXmqaB3jGCSgnOouzncdfMVX0umPZd4TC1zObhgU,64579
|
170
170
|
modal_proto/modal_api_grpc.py,sha256=faBxtXAqoz6ei8ntNu1MQTL859FFHH_LZww_FP9wubw,19311
|
@@ -176,10 +176,10 @@ modal_proto/options_pb2.pyi,sha256=l7DBrbLO7q3Ir-XDkWsajm0d0TQqqrfuX54i4BMpdQg,1
|
|
176
176
|
modal_proto/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
177
177
|
modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0yJSI,247
|
178
178
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
179
|
-
modal_version/__init__.py,sha256=
|
179
|
+
modal_version/__init__.py,sha256=LiLht7hGepOxNeMM_UE789CT8ikNmZJ8khFAPyG_zzw,121
|
180
180
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
181
|
-
modal-1.1.2.
|
182
|
-
modal-1.1.2.
|
183
|
-
modal-1.1.2.
|
184
|
-
modal-1.1.2.
|
185
|
-
modal-1.1.2.
|
181
|
+
modal-1.1.2.dev32.dist-info/METADATA,sha256=y-Va03bSGx_xRy2SThIg3GwaGcdsOdwwL7-FNFmo5qw,2460
|
182
|
+
modal-1.1.2.dev32.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
183
|
+
modal-1.1.2.dev32.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
184
|
+
modal-1.1.2.dev32.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
185
|
+
modal-1.1.2.dev32.dist-info/RECORD,,
|
modal_proto/api.proto
CHANGED
@@ -1698,6 +1698,7 @@ message FunctionGetInputsItem {
|
|
1698
1698
|
FunctionCallInvocationType function_call_invocation_type = 6;
|
1699
1699
|
uint32 retry_count = 7;
|
1700
1700
|
optional int32 function_map_idx = 8; // intercepted and only used by the worker.
|
1701
|
+
string attempt_token = 9;
|
1701
1702
|
}
|
1702
1703
|
|
1703
1704
|
message FunctionGetInputsRequest {
|