anyscale 0.26.3__py3-none-any.whl → 0.26.4__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.
- anyscale/_private/docgen/models.md +2 -1
- anyscale/_private/workload/workload_config.py +11 -0
- anyscale/_private/workload/workload_sdk.py +4 -0
- anyscale/client/README.md +2 -10
- anyscale/client/openapi_client/__init__.py +0 -6
- anyscale/client/openapi_client/api/default_api.py +281 -513
- anyscale/client/openapi_client/models/__init__.py +0 -6
- anyscale/client/openapi_client/models/node_type.py +2 -1
- anyscale/client/openapi_client/models/ray_runtime_env_config.py +29 -1
- anyscale/client/openapi_client/models/train_run.py +29 -3
- anyscale/client/openapi_client/models/train_worker.py +29 -3
- anyscale/job/_private/job_sdk.py +4 -0
- anyscale/sdk/anyscale_client/models/node_type.py +2 -1
- anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +29 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.3.dist-info → anyscale-0.26.4.dist-info}/METADATA +1 -1
- {anyscale-0.26.3.dist-info → anyscale-0.26.4.dist-info}/RECORD +22 -28
- anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -546
- anyscale/client/openapi_client/models/log_detail.py +0 -187
- anyscale/client/openapi_client/models/log_details.py +0 -151
- anyscale/client/openapi_client/models/logdetails_response.py +0 -121
- anyscale/client/openapi_client/models/provider_metadata.py +0 -205
- anyscale/client/openapi_client/models/providermetadata_response.py +0 -121
- {anyscale-0.26.3.dist-info → anyscale-0.26.4.dist-info}/LICENSE +0 -0
- {anyscale-0.26.3.dist-info → anyscale-0.26.4.dist-info}/NOTICE +0 -0
- {anyscale-0.26.3.dist-info → anyscale-0.26.4.dist-info}/WHEEL +0 -0
- {anyscale-0.26.3.dist-info → anyscale-0.26.4.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.3.dist-info → anyscale-0.26.4.dist-info}/top_level.txt +0 -0
@@ -166,7 +166,6 @@ from openapi_client.models.create_build import CreateBuild
|
|
166
166
|
from openapi_client.models.create_cloud_collaborator import CreateCloudCollaborator
|
167
167
|
from openapi_client.models.create_cloud_resource import CreateCloudResource
|
168
168
|
from openapi_client.models.create_cloud_resource_gcp import CreateCloudResourceGCP
|
169
|
-
from openapi_client.models.create_cloud_with_cloud_resource import CreateCloudWithCloudResource
|
170
169
|
from openapi_client.models.create_cluster_compute_config import CreateClusterComputeConfig
|
171
170
|
from openapi_client.models.create_compute_template import CreateComputeTemplate
|
172
171
|
from openapi_client.models.create_compute_template_config import CreateComputeTemplateConfig
|
@@ -359,8 +358,6 @@ from openapi_client.models.list_resource_quotas_query import ListResourceQuotasQ
|
|
359
358
|
from openapi_client.models.list_response_metadata import ListResponseMetadata
|
360
359
|
from openapi_client.models.listmachinepoolsresponse_response import ListmachinepoolsresponseResponse
|
361
360
|
from openapi_client.models.listmachinesresponse_response import ListmachinesresponseResponse
|
362
|
-
from openapi_client.models.log_detail import LogDetail
|
363
|
-
from openapi_client.models.log_details import LogDetails
|
364
361
|
from openapi_client.models.log_download_config import LogDownloadConfig
|
365
362
|
from openapi_client.models.log_download_request import LogDownloadRequest
|
366
363
|
from openapi_client.models.log_download_result import LogDownloadResult
|
@@ -369,7 +366,6 @@ from openapi_client.models.log_filter import LogFilter
|
|
369
366
|
from openapi_client.models.log_item import LogItem
|
370
367
|
from openapi_client.models.log_item_batch import LogItemBatch
|
371
368
|
from openapi_client.models.log_stream import LogStream
|
372
|
-
from openapi_client.models.logdetails_response import LogdetailsResponse
|
373
369
|
from openapi_client.models.logdownloadresult_response import LogdownloadresultResponse
|
374
370
|
from openapi_client.models.login_user_params import LoginUserParams
|
375
371
|
from openapi_client.models.logitembatch_response import LogitembatchResponse
|
@@ -473,8 +469,6 @@ from openapi_client.models.projects_sort_field import ProjectsSortField
|
|
473
469
|
from openapi_client.models.projects_violating_tree_hierarchy_response import ProjectsViolatingTreeHierarchyResponse
|
474
470
|
from openapi_client.models.projectsviolatingtreehierarchyresponse_response import ProjectsviolatingtreehierarchyresponseResponse
|
475
471
|
from openapi_client.models.protocols import Protocols
|
476
|
-
from openapi_client.models.provider_metadata import ProviderMetadata
|
477
|
-
from openapi_client.models.providermetadata_response import ProvidermetadataResponse
|
478
472
|
from openapi_client.models.python_modules import PythonModules
|
479
473
|
from openapi_client.models.quota import Quota
|
480
474
|
from openapi_client.models.ray_gcs_external_storage_config import RayGCSExternalStorageConfig
|
@@ -30,8 +30,9 @@ class NodeType(object):
|
|
30
30
|
"""
|
31
31
|
HEAD_NODE = "head-node"
|
32
32
|
WORKER_NODES = "worker-nodes"
|
33
|
+
UNKNOWN = "unknown"
|
33
34
|
|
34
|
-
allowable_values = [HEAD_NODE, WORKER_NODES] # noqa: E501
|
35
|
+
allowable_values = [HEAD_NODE, WORKER_NODES, UNKNOWN] # noqa: E501
|
35
36
|
|
36
37
|
"""
|
37
38
|
Attributes:
|
@@ -35,6 +35,7 @@ class RayRuntimeEnvConfig(object):
|
|
35
35
|
openapi_types = {
|
36
36
|
'working_dir': 'str',
|
37
37
|
'py_modules': 'list[str]',
|
38
|
+
'py_executable': 'str',
|
38
39
|
'pip': 'list[str]',
|
39
40
|
'conda': 'object',
|
40
41
|
'env_vars': 'dict(str, str)',
|
@@ -44,13 +45,14 @@ class RayRuntimeEnvConfig(object):
|
|
44
45
|
attribute_map = {
|
45
46
|
'working_dir': 'working_dir',
|
46
47
|
'py_modules': 'py_modules',
|
48
|
+
'py_executable': 'py_executable',
|
47
49
|
'pip': 'pip',
|
48
50
|
'conda': 'conda',
|
49
51
|
'env_vars': 'env_vars',
|
50
52
|
'config': 'config'
|
51
53
|
}
|
52
54
|
|
53
|
-
def __init__(self, working_dir=None, py_modules=None, pip=None, conda=None, env_vars=None, config=None, local_vars_configuration=None): # noqa: E501
|
55
|
+
def __init__(self, working_dir=None, py_modules=None, py_executable=None, pip=None, conda=None, env_vars=None, config=None, local_vars_configuration=None): # noqa: E501
|
54
56
|
"""RayRuntimeEnvConfig - a model defined in OpenAPI""" # noqa: E501
|
55
57
|
if local_vars_configuration is None:
|
56
58
|
local_vars_configuration = Configuration()
|
@@ -58,6 +60,7 @@ class RayRuntimeEnvConfig(object):
|
|
58
60
|
|
59
61
|
self._working_dir = None
|
60
62
|
self._py_modules = None
|
63
|
+
self._py_executable = None
|
61
64
|
self._pip = None
|
62
65
|
self._conda = None
|
63
66
|
self._env_vars = None
|
@@ -68,6 +71,8 @@ class RayRuntimeEnvConfig(object):
|
|
68
71
|
self.working_dir = working_dir
|
69
72
|
if py_modules is not None:
|
70
73
|
self.py_modules = py_modules
|
74
|
+
if py_executable is not None:
|
75
|
+
self.py_executable = py_executable
|
71
76
|
if pip is not None:
|
72
77
|
self.pip = pip
|
73
78
|
if conda is not None:
|
@@ -123,6 +128,29 @@ class RayRuntimeEnvConfig(object):
|
|
123
128
|
|
124
129
|
self._py_modules = py_modules
|
125
130
|
|
131
|
+
@property
|
132
|
+
def py_executable(self):
|
133
|
+
"""Gets the py_executable of this RayRuntimeEnvConfig. # noqa: E501
|
134
|
+
|
135
|
+
Specifies the executable used for running the Ray workers. It can include arguments as well. # noqa: E501
|
136
|
+
|
137
|
+
:return: The py_executable of this RayRuntimeEnvConfig. # noqa: E501
|
138
|
+
:rtype: str
|
139
|
+
"""
|
140
|
+
return self._py_executable
|
141
|
+
|
142
|
+
@py_executable.setter
|
143
|
+
def py_executable(self, py_executable):
|
144
|
+
"""Sets the py_executable of this RayRuntimeEnvConfig.
|
145
|
+
|
146
|
+
Specifies the executable used for running the Ray workers. It can include arguments as well. # noqa: E501
|
147
|
+
|
148
|
+
:param py_executable: The py_executable of this RayRuntimeEnvConfig. # noqa: E501
|
149
|
+
:type: str
|
150
|
+
"""
|
151
|
+
|
152
|
+
self._py_executable = py_executable
|
153
|
+
|
126
154
|
@property
|
127
155
|
def pip(self):
|
128
156
|
"""Gets the pip of this RayRuntimeEnvConfig. # noqa: E501
|
@@ -43,7 +43,8 @@ class TrainRun(object):
|
|
43
43
|
'end_time_ms': 'int',
|
44
44
|
'attempts': 'list[TrainRunAttempt]',
|
45
45
|
'job_details': 'JobDetails',
|
46
|
-
'session_name': 'str'
|
46
|
+
'session_name': 'str',
|
47
|
+
'controller_log_id': 'str'
|
47
48
|
}
|
48
49
|
|
49
50
|
attribute_map = {
|
@@ -57,10 +58,11 @@ class TrainRun(object):
|
|
57
58
|
'end_time_ms': 'end_time_ms',
|
58
59
|
'attempts': 'attempts',
|
59
60
|
'job_details': 'job_details',
|
60
|
-
'session_name': 'session_name'
|
61
|
+
'session_name': 'session_name',
|
62
|
+
'controller_log_id': 'controller_log_id'
|
61
63
|
}
|
62
64
|
|
63
|
-
def __init__(self, id=None, name=None, job_id=None, controller_actor_id=None, status=None, status_detail=None, start_time_ms=None, end_time_ms=None, attempts=None, job_details=None, session_name=None, local_vars_configuration=None): # noqa: E501
|
65
|
+
def __init__(self, id=None, name=None, job_id=None, controller_actor_id=None, status=None, status_detail=None, start_time_ms=None, end_time_ms=None, attempts=None, job_details=None, session_name=None, controller_log_id=None, local_vars_configuration=None): # noqa: E501
|
64
66
|
"""TrainRun - a model defined in OpenAPI""" # noqa: E501
|
65
67
|
if local_vars_configuration is None:
|
66
68
|
local_vars_configuration = Configuration()
|
@@ -77,6 +79,7 @@ class TrainRun(object):
|
|
77
79
|
self._attempts = None
|
78
80
|
self._job_details = None
|
79
81
|
self._session_name = None
|
82
|
+
self._controller_log_id = None
|
80
83
|
self.discriminator = None
|
81
84
|
|
82
85
|
self.id = id
|
@@ -94,6 +97,8 @@ class TrainRun(object):
|
|
94
97
|
self.job_details = job_details
|
95
98
|
if session_name is not None:
|
96
99
|
self.session_name = session_name
|
100
|
+
if controller_log_id is not None:
|
101
|
+
self.controller_log_id = controller_log_id
|
97
102
|
|
98
103
|
@property
|
99
104
|
def id(self):
|
@@ -340,6 +345,27 @@ class TrainRun(object):
|
|
340
345
|
|
341
346
|
self._session_name = session_name
|
342
347
|
|
348
|
+
@property
|
349
|
+
def controller_log_id(self):
|
350
|
+
"""Gets the controller_log_id of this TrainRun. # noqa: E501
|
351
|
+
|
352
|
+
|
353
|
+
:return: The controller_log_id of this TrainRun. # noqa: E501
|
354
|
+
:rtype: str
|
355
|
+
"""
|
356
|
+
return self._controller_log_id
|
357
|
+
|
358
|
+
@controller_log_id.setter
|
359
|
+
def controller_log_id(self, controller_log_id):
|
360
|
+
"""Sets the controller_log_id of this TrainRun.
|
361
|
+
|
362
|
+
|
363
|
+
:param controller_log_id: The controller_log_id of this TrainRun. # noqa: E501
|
364
|
+
:type: str
|
365
|
+
"""
|
366
|
+
|
367
|
+
self._controller_log_id = controller_log_id
|
368
|
+
|
343
369
|
def to_dict(self):
|
344
370
|
"""Returns the model properties as a dict"""
|
345
371
|
result = {}
|
@@ -42,7 +42,8 @@ class TrainWorker(object):
|
|
42
42
|
'pid': 'int',
|
43
43
|
'gpu_ids': 'list[int]',
|
44
44
|
'status': 'ActorStatus',
|
45
|
-
'resources': 'TrainResources'
|
45
|
+
'resources': 'TrainResources',
|
46
|
+
'log_id': 'str'
|
46
47
|
}
|
47
48
|
|
48
49
|
attribute_map = {
|
@@ -55,10 +56,11 @@ class TrainWorker(object):
|
|
55
56
|
'pid': 'pid',
|
56
57
|
'gpu_ids': 'gpu_ids',
|
57
58
|
'status': 'status',
|
58
|
-
'resources': 'resources'
|
59
|
+
'resources': 'resources',
|
60
|
+
'log_id': 'log_id'
|
59
61
|
}
|
60
62
|
|
61
|
-
def __init__(self, actor_id=None, world_rank=None, local_rank=None, node_rank=None, node_id=None, node_ip=None, pid=None, gpu_ids=None, status=None, resources=None, local_vars_configuration=None): # noqa: E501
|
63
|
+
def __init__(self, actor_id=None, world_rank=None, local_rank=None, node_rank=None, node_id=None, node_ip=None, pid=None, gpu_ids=None, status=None, resources=None, log_id=None, local_vars_configuration=None): # noqa: E501
|
62
64
|
"""TrainWorker - a model defined in OpenAPI""" # noqa: E501
|
63
65
|
if local_vars_configuration is None:
|
64
66
|
local_vars_configuration = Configuration()
|
@@ -74,6 +76,7 @@ class TrainWorker(object):
|
|
74
76
|
self._gpu_ids = None
|
75
77
|
self._status = None
|
76
78
|
self._resources = None
|
79
|
+
self._log_id = None
|
77
80
|
self.discriminator = None
|
78
81
|
|
79
82
|
self.actor_id = actor_id
|
@@ -87,6 +90,8 @@ class TrainWorker(object):
|
|
87
90
|
self.status = status
|
88
91
|
if resources is not None:
|
89
92
|
self.resources = resources
|
93
|
+
if log_id is not None:
|
94
|
+
self.log_id = log_id
|
90
95
|
|
91
96
|
@property
|
92
97
|
def actor_id(self):
|
@@ -316,6 +321,27 @@ class TrainWorker(object):
|
|
316
321
|
|
317
322
|
self._resources = resources
|
318
323
|
|
324
|
+
@property
|
325
|
+
def log_id(self):
|
326
|
+
"""Gets the log_id of this TrainWorker. # noqa: E501
|
327
|
+
|
328
|
+
|
329
|
+
:return: The log_id of this TrainWorker. # noqa: E501
|
330
|
+
:rtype: str
|
331
|
+
"""
|
332
|
+
return self._log_id
|
333
|
+
|
334
|
+
@log_id.setter
|
335
|
+
def log_id(self, log_id):
|
336
|
+
"""Sets the log_id of this TrainWorker.
|
337
|
+
|
338
|
+
|
339
|
+
:param log_id: The log_id of this TrainWorker. # noqa: E501
|
340
|
+
:type: str
|
341
|
+
"""
|
342
|
+
|
343
|
+
self._log_id = log_id
|
344
|
+
|
319
345
|
def to_dict(self):
|
320
346
|
"""Returns the model properties as a dict"""
|
321
347
|
result = {}
|
anyscale/job/_private/job_sdk.py
CHANGED
@@ -67,6 +67,7 @@ class PrivateJobSDK(WorkloadSDK):
|
|
67
67
|
cloud_id=cloud_id,
|
68
68
|
autopopulate_in_workspace=autopopulate_in_workspace,
|
69
69
|
additional_py_modules=config.py_modules,
|
70
|
+
py_executable_override=config.py_executable,
|
70
71
|
)
|
71
72
|
[runtime_env] = self.override_and_load_requirements_files(
|
72
73
|
[runtime_env],
|
@@ -265,6 +266,9 @@ class PrivateJobSDK(WorkloadSDK):
|
|
265
266
|
requirements=runtime_env_config.pip if runtime_env_config else None,
|
266
267
|
working_dir=runtime_env_config.working_dir if runtime_env_config else None,
|
267
268
|
env_vars=runtime_env_config.env_vars if runtime_env_config else None,
|
269
|
+
py_executable=runtime_env_config.py_executable
|
270
|
+
if runtime_env_config
|
271
|
+
else None,
|
268
272
|
entrypoint=prod_job_config.entrypoint,
|
269
273
|
cloud=compute_config.cloud
|
270
274
|
if compute_config and isinstance(compute_config, ComputeConfig)
|
@@ -30,8 +30,9 @@ class NodeType(object):
|
|
30
30
|
"""
|
31
31
|
HEAD_NODE = "head-node"
|
32
32
|
WORKER_NODES = "worker-nodes"
|
33
|
+
UNKNOWN = "unknown"
|
33
34
|
|
34
|
-
allowable_values = [HEAD_NODE, WORKER_NODES] # noqa: E501
|
35
|
+
allowable_values = [HEAD_NODE, WORKER_NODES, UNKNOWN] # noqa: E501
|
35
36
|
|
36
37
|
"""
|
37
38
|
Attributes:
|
@@ -35,6 +35,7 @@ class RayRuntimeEnvConfig(object):
|
|
35
35
|
openapi_types = {
|
36
36
|
'working_dir': 'str',
|
37
37
|
'py_modules': 'list[str]',
|
38
|
+
'py_executable': 'str',
|
38
39
|
'pip': 'list[str]',
|
39
40
|
'conda': 'object',
|
40
41
|
'env_vars': 'dict(str, str)',
|
@@ -44,13 +45,14 @@ class RayRuntimeEnvConfig(object):
|
|
44
45
|
attribute_map = {
|
45
46
|
'working_dir': 'working_dir',
|
46
47
|
'py_modules': 'py_modules',
|
48
|
+
'py_executable': 'py_executable',
|
47
49
|
'pip': 'pip',
|
48
50
|
'conda': 'conda',
|
49
51
|
'env_vars': 'env_vars',
|
50
52
|
'config': 'config'
|
51
53
|
}
|
52
54
|
|
53
|
-
def __init__(self, working_dir=None, py_modules=None, pip=None, conda=None, env_vars=None, config=None, local_vars_configuration=None): # noqa: E501
|
55
|
+
def __init__(self, working_dir=None, py_modules=None, py_executable=None, pip=None, conda=None, env_vars=None, config=None, local_vars_configuration=None): # noqa: E501
|
54
56
|
"""RayRuntimeEnvConfig - a model defined in OpenAPI""" # noqa: E501
|
55
57
|
if local_vars_configuration is None:
|
56
58
|
local_vars_configuration = Configuration()
|
@@ -58,6 +60,7 @@ class RayRuntimeEnvConfig(object):
|
|
58
60
|
|
59
61
|
self._working_dir = None
|
60
62
|
self._py_modules = None
|
63
|
+
self._py_executable = None
|
61
64
|
self._pip = None
|
62
65
|
self._conda = None
|
63
66
|
self._env_vars = None
|
@@ -68,6 +71,8 @@ class RayRuntimeEnvConfig(object):
|
|
68
71
|
self.working_dir = working_dir
|
69
72
|
if py_modules is not None:
|
70
73
|
self.py_modules = py_modules
|
74
|
+
if py_executable is not None:
|
75
|
+
self.py_executable = py_executable
|
71
76
|
if pip is not None:
|
72
77
|
self.pip = pip
|
73
78
|
if conda is not None:
|
@@ -123,6 +128,29 @@ class RayRuntimeEnvConfig(object):
|
|
123
128
|
|
124
129
|
self._py_modules = py_modules
|
125
130
|
|
131
|
+
@property
|
132
|
+
def py_executable(self):
|
133
|
+
"""Gets the py_executable of this RayRuntimeEnvConfig. # noqa: E501
|
134
|
+
|
135
|
+
Specifies the executable used for running the Ray workers. It can include arguments as well. # noqa: E501
|
136
|
+
|
137
|
+
:return: The py_executable of this RayRuntimeEnvConfig. # noqa: E501
|
138
|
+
:rtype: str
|
139
|
+
"""
|
140
|
+
return self._py_executable
|
141
|
+
|
142
|
+
@py_executable.setter
|
143
|
+
def py_executable(self, py_executable):
|
144
|
+
"""Sets the py_executable of this RayRuntimeEnvConfig.
|
145
|
+
|
146
|
+
Specifies the executable used for running the Ray workers. It can include arguments as well. # noqa: E501
|
147
|
+
|
148
|
+
:param py_executable: The py_executable of this RayRuntimeEnvConfig. # noqa: E501
|
149
|
+
:type: str
|
150
|
+
"""
|
151
|
+
|
152
|
+
self._py_executable = py_executable
|
153
|
+
|
126
154
|
@property
|
127
155
|
def pip(self):
|
128
156
|
"""Gets the pip of this RayRuntimeEnvConfig. # noqa: E501
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.26.
|
1
|
+
__version__ = "0.26.4"
|
@@ -27,7 +27,7 @@ anyscale/scripts.py,sha256=HR6JOCBVBXMVi1Kz5uJmjsh73t2l1W8UbUge83ofnqk,5474
|
|
27
27
|
anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
|
28
28
|
anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
|
29
29
|
anyscale/util.py,sha256=Tqb9qWSxQI_PBJVSDxm9RWqFyGJFClgZDPByhb_fhU8,40813
|
30
|
-
anyscale/version.py,sha256=
|
30
|
+
anyscale/version.py,sha256=QV9fGmjLpegpSAQiizglzvlP2uwa4bTCZX2WiMKCZd4,23
|
31
31
|
anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
|
32
32
|
anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
|
33
33
|
anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
|
@@ -39,7 +39,7 @@ anyscale/_private/docgen/__main__.py,sha256=ViMGLnYZT5VrPUhN9kHaHKBOoEsppu4Db7EP
|
|
39
39
|
anyscale/_private/docgen/api.md,sha256=SzLoDy6GyriU60l8964CNWz3z_QNEJA7mFHr0FzXyPU,32527
|
40
40
|
anyscale/_private/docgen/generator.py,sha256=dgC3qlqhJrTt0bTl3ExlRFLDwpn_Is2Yv47TJ33jaeE,21711
|
41
41
|
anyscale/_private/docgen/generator_legacy.py,sha256=pss_6ONF55XhARrKGcREDmg0J5plWact6USgb5Tr5mM,3002
|
42
|
-
anyscale/_private/docgen/models.md,sha256=
|
42
|
+
anyscale/_private/docgen/models.md,sha256=Ui1Np7FibQ_Yj4Q_k3fxMe01mow5O83Vrax1zTGTwOY,288761
|
43
43
|
anyscale/_private/models/__init__.py,sha256=ZrkdHhJZNeCYiogsHc_po8m7vaVdxEjkNGixNeYdlgs,125
|
44
44
|
anyscale/_private/models/image_uri.py,sha256=CMzHc-MNTBsBXvX0G73bjkiznCbm95DYQusgXJ8drm8,3971
|
45
45
|
anyscale/_private/models/model_base.py,sha256=QdIKiyNpvjyUGqQtL4_J9qpCK6clHdmWiKV4jSFXunU,8217
|
@@ -49,8 +49,8 @@ anyscale/_private/sdk/timer.py,sha256=NK6rlmjW4NT6qOuxLo65FJ_wN1q23vNBaYDIt7WhSS
|
|
49
49
|
anyscale/_private/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
50
|
anyscale/_private/utils/progress_util.py,sha256=-xNU3MBbFcFOEk1yLA0t7vP_xQy9ygY6dW9e6ljmx5w,2287
|
51
51
|
anyscale/_private/workload/__init__.py,sha256=_wOZsawqp5NZV9He502e2gFSM66hjqxhxNZTqxnrMws,134
|
52
|
-
anyscale/_private/workload/workload_config.py,sha256=
|
53
|
-
anyscale/_private/workload/workload_sdk.py,sha256=
|
52
|
+
anyscale/_private/workload/workload_config.py,sha256=uo_x2tM1bAO3CsahKbUSOReauFeJ-t-IKVujhO6KU6I,8603
|
53
|
+
anyscale/_private/workload/workload_sdk.py,sha256=AAzmL0OFyAPIHCCkHfZL1zioJxaZ-AmFRUyoocWvzqs,13174
|
54
54
|
anyscale/aggregated_instance_usage/__init__.py,sha256=mOreJrOZ87NAF3GD2ZEJ48sSwkUDKcTOPa9_DsRBZY8,1290
|
55
55
|
anyscale/aggregated_instance_usage/commands.py,sha256=jzTYc_nljkkF4eTynZAdXPMKLPY8KE48WTmFbD_KwJI,1251
|
56
56
|
anyscale/aggregated_instance_usage/models.py,sha256=i78vrTZMoGevvN-89k4Q3W0-agu6TXZdwEtGsokG4L4,2855
|
@@ -98,7 +98,7 @@ anyscale/background/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
98
98
|
anyscale/background/job_runner.py,sha256=LTuv9JOahyv6C9i7DLQAONgQF6--FfYZEmJrKy-sUG8,2687
|
99
99
|
anyscale/client/.gitignore,sha256=JZyvYEtT2DCSK9V5Joi6lQofhMik4PXiJRCWsg7SvqI,807
|
100
100
|
anyscale/client/.openapi-generator-ignore,sha256=pu2PTide7pJtJ-DFLzDy0cTYQJRlrB-8RRH3zGLeUds,1040
|
101
|
-
anyscale/client/README.md,sha256=
|
101
|
+
anyscale/client/README.md,sha256=K1L5G-KRovYroQFLlKdPcdCxYdgV7a_6oovZkF7NguU,129047
|
102
102
|
anyscale/client/git_push.sh,sha256=EDCZOTTiLxbtPHmiU63qC99rGH67B7dhdPZdNUKivF0,1827
|
103
103
|
anyscale/client/requirements.txt,sha256=dkVKYUStC5h_g_87SH7pRdhXCj7ySozAJMGAFEzGgFc,126
|
104
104
|
anyscale/client/setup.cfg,sha256=l7bdKSIedeBhhoDtupsBwx1xPrlBf2yYeTH7a8kMga4,28
|
@@ -106,14 +106,14 @@ anyscale/client/setup.py,sha256=tSxqw1kAL1B9adnrnOarjnQfSbwGmnTr_kg8ZXhlm5A,1109
|
|
106
106
|
anyscale/client/test-requirements.txt,sha256=sTjmDTj5W9fh1ZAeo8UT2EBdeGDBNttj_PHiPBXg1D4,111
|
107
107
|
anyscale/client/tox.ini,sha256=M6L3UmvAdvU65LsoAF-Oi7oRjwZlCJZn8I7ofdXn5Ok,156
|
108
108
|
anyscale/client/.openapi-generator/VERSION,sha256=J0RzX-4u4jfin1kviKtmncjUePyjHm2kyvmkobOrt_E,5
|
109
|
-
anyscale/client/openapi_client/__init__.py,sha256=
|
109
|
+
anyscale/client/openapi_client/__init__.py,sha256=QGAdjzJ4A06hUfjoIf0t_ZCgHIsHBLnx_bIMk3BzAic,54058
|
110
110
|
anyscale/client/openapi_client/api_client.py,sha256=d8Un6j2Ny2vlS2qBXPVFj6_ql0k36DFahpWt_28TfCk,25563
|
111
111
|
anyscale/client/openapi_client/configuration.py,sha256=Dd5XrlHwv-wxnf0C35PG_-HBQoY3Yaz6hKrmkZz-m0E,12363
|
112
112
|
anyscale/client/openapi_client/exceptions.py,sha256=3egwsXQG2j_vARbqgBxUO1xSltAhpfiHTYVP7VXTvU0,3792
|
113
113
|
anyscale/client/openapi_client/rest.py,sha256=Ehj37v7GHW6SXV067Hze5HE42ayKaGi6a6ZlkR7u3Lg,12501
|
114
114
|
anyscale/client/openapi_client/api/__init__.py,sha256=i8u7BI2xX1GrXTL3hN0pKpYIlnT-D_uDxH2ElOfYG1I,141
|
115
|
-
anyscale/client/openapi_client/api/default_api.py,sha256=
|
116
|
-
anyscale/client/openapi_client/models/__init__.py,sha256=
|
115
|
+
anyscale/client/openapi_client/api/default_api.py,sha256=of5ZpGviTdAc2_WGDDmtg2JSaMFwcTGZPfA8RhxYLyI,2067021
|
116
|
+
anyscale/client/openapi_client/models/__init__.py,sha256=TnLtWbD2ZJh9pYZaQfMuQID-C3R2KtpXp9nwsFaxslc,53568
|
117
117
|
anyscale/client/openapi_client/models/access_config.py,sha256=b2mA0qtuTA5PFbp6C61Jc_T2zUMaojM1v32IhZo0MfY,3648
|
118
118
|
anyscale/client/openapi_client/models/actor_status.py,sha256=6xyX_aIqURj2raBdY9DmBxsdDACFrqqYvElGiM6YG2E,2813
|
119
119
|
anyscale/client/openapi_client/models/admin_create_user.py,sha256=9DPr8D0lKgoEZ3Z2kGsAd8L7ocFCiP6woOGLVs8SRb8,7251
|
@@ -266,7 +266,6 @@ anyscale/client/openapi_client/models/create_byod_build.py,sha256=CcElaR_Lcdj98p
|
|
266
266
|
anyscale/client/openapi_client/models/create_cloud_collaborator.py,sha256=VLJCvE9r_TVRA_eduxr23dqdAsiPOllN2tRH3JZyzDg,4589
|
267
267
|
anyscale/client/openapi_client/models/create_cloud_resource.py,sha256=EnaPZgnCZ4v-bhQICpiJIFsz98F_E7BuddC1IXloRTg,28285
|
268
268
|
anyscale/client/openapi_client/models/create_cloud_resource_gcp.py,sha256=BykxhQ0TbHqkUY0DFd_bmprpR-b6hVrk_COddshHmcY,28472
|
269
|
-
anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py,sha256=rU9DMN0zE-NZ4H_zGBNfrtbCdIZz8YpiyADSkl_AXGw,20104
|
270
269
|
anyscale/client/openapi_client/models/create_cluster_compute_config.py,sha256=rk8pXC1vZ0A1JK9jWNqK4hdsAvkZrjIRT38BDXQBnPc,19610
|
271
270
|
anyscale/client/openapi_client/models/create_compute_template.py,sha256=NpjLX4CxR-7VCMqE2qGz-xI2rnWVpTIvpMvg-AlCs0M,6977
|
272
271
|
anyscale/client/openapi_client/models/create_compute_template_config.py,sha256=mbp6nXU8Cpp9pymo47IVP6hd0Xmp2-8LXB8Fv4eteYA,19443
|
@@ -459,8 +458,6 @@ anyscale/client/openapi_client/models/list_resource_quotas_query.py,sha256=DjIf0
|
|
459
458
|
anyscale/client/openapi_client/models/list_response_metadata.py,sha256=HrVzehQ4kCKdUn_4jCANTy1wVgO7-UbmA9pXmPknU1U,4216
|
460
459
|
anyscale/client/openapi_client/models/listmachinepoolsresponse_response.py,sha256=HqH_H-QiWthzYtque3TRrNz3w5FewPaJM8ek_6Djpzo,3682
|
461
460
|
anyscale/client/openapi_client/models/listmachinesresponse_response.py,sha256=rp8femiH8ndao-HpPjl7O6m5ZHjEqaawkdLNy1vo7lM,3638
|
462
|
-
anyscale/client/openapi_client/models/log_detail.py,sha256=KEfitleGgbB-pBlthkLWykVo9c4cwaUEZFHXAIbul_0,5794
|
463
|
-
anyscale/client/openapi_client/models/log_details.py,sha256=4wvWHf-EOy-0Sf_fCAXRC6ZuVum4xz0LmHL4b1USngk,4531
|
464
461
|
anyscale/client/openapi_client/models/log_download_config.py,sha256=E_drcERI7J5noPygITwDeAfMvO266NapnDC2LWMI3hI,6861
|
465
462
|
anyscale/client/openapi_client/models/log_download_request.py,sha256=dQXXgDII_skYdblm1O8K_m2WFOPBvTrVtQXH9nO-olI,4288
|
466
463
|
anyscale/client/openapi_client/models/log_download_result.py,sha256=OUCnuKpE15rbgzakm5miGENaM1P06PKRLgWl-43vdRk,6649
|
@@ -469,7 +466,6 @@ anyscale/client/openapi_client/models/log_filter.py,sha256=UgAedq-za4oddcT0YPZ2K
|
|
469
466
|
anyscale/client/openapi_client/models/log_item.py,sha256=NPfn2DB69QjKrx7X9D1Gnft2OEq4UTvNuvFJxoerk3I,5563
|
470
467
|
anyscale/client/openapi_client/models/log_item_batch.py,sha256=TuubKtnpBbBigF-WZxQcRDR5fX6fRL2GzUpH-eiWawo,4613
|
471
468
|
anyscale/client/openapi_client/models/log_stream.py,sha256=oPdbpTujBsH0cezYupLsR_Zb-TmDUtQmCMHGjtvp3Rg,4414
|
472
|
-
anyscale/client/openapi_client/models/logdetails_response.py,sha256=TELrY-7212N4s5ZE3cZZMOmR00ywW9QIJnLAJ6k5TIQ,3528
|
473
469
|
anyscale/client/openapi_client/models/logdownloadresult_response.py,sha256=ks7-SWtDy7-b6Phy1nAypkFZAPbI3xGKAbDp7kJSf1g,3605
|
474
470
|
anyscale/client/openapi_client/models/login_user_params.py,sha256=Yf0-WtZ3f9owvgerpt-creBaIH-bVOgeuP_clVpiFC0,6529
|
475
471
|
anyscale/client/openapi_client/models/logitembatch_response.py,sha256=82Ds5Vc-Xu3jR2GAODthyaKYiZklrdvyW2x8nfqhUUU,3550
|
@@ -511,7 +507,7 @@ anyscale/client/openapi_client/models/node_registration_gcp.py,sha256=Sh8FjvGzLz
|
|
511
507
|
anyscale/client/openapi_client/models/node_registration_k8_s.py,sha256=swScvLnyOavOWALw12xXw5mvmkm0xr7RvMdURmalADY,5975
|
512
508
|
anyscale/client/openapi_client/models/node_registration_provisioned.py,sha256=-MbNO8KXgAQ1eUwtr-SQBfGH6bCmF4qieFOFIDWo3PU,5008
|
513
509
|
anyscale/client/openapi_client/models/node_registration_v2.py,sha256=R8fQYZIqqI9PoL7rdsdAVzR9kgUVMUV0X6KAjkOOA88,7803
|
514
|
-
anyscale/client/openapi_client/models/node_type.py,sha256=
|
510
|
+
anyscale/client/openapi_client/models/node_type.py,sha256=OJ-8vjLuteh4r_e5J1xnsDMkVozNw8QuOqrURFkpT94,2870
|
515
511
|
anyscale/client/openapi_client/models/notification_channel_email_config.py,sha256=UZr99vatPMwuH8IzeNkv-2qZAWtZOMckh-JcYcbSoCs,3621
|
516
512
|
anyscale/client/openapi_client/models/notification_channel_slack_config.py,sha256=kYQ18Z8dvq8TY1QqNuJS6w7xz62AW44VwOjaVddHX7Y,3705
|
517
513
|
anyscale/client/openapi_client/models/notification_channel_webhook_config.py,sha256=1kbsG1xp7W_MwNoemXH0oJA5KAdKHWNdCi5DEOQbMBw,3763
|
@@ -573,12 +569,10 @@ anyscale/client/openapi_client/models/projects_sort_field.py,sha256=3LW0ggf07NbF
|
|
573
569
|
anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py,sha256=uWddqitteSKeD9HH9msYznydnsPDgDLp383IQ0qRfKI,3790
|
574
570
|
anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py,sha256=GhgEbvaYs9M8UmN2c72gE1WYPVsqVUhR4Sl2ZQzN9rQ,3836
|
575
571
|
anyscale/client/openapi_client/models/protocols.py,sha256=Q_QNTShXYTtz-Ct9iNGJl3QM4BVrZ6_6nNS7K5I8ip0,4098
|
576
|
-
anyscale/client/openapi_client/models/provider_metadata.py,sha256=MfuWbUSCOgEMSGdpThabQyjOtc5lXk2TmLWyRhv-uBs,6581
|
577
|
-
anyscale/client/openapi_client/models/providermetadata_response.py,sha256=clq8KPlbxLTfg2eaUsU--1rAI1a493Nsu2LBjmBmfAU,3594
|
578
572
|
anyscale/client/openapi_client/models/python_modules.py,sha256=PplQop90t5MefEQFdLw_RYvKTb1HudY2szGUB4qY_og,4560
|
579
573
|
anyscale/client/openapi_client/models/quota.py,sha256=j1WHnVQGu4O3XKDvEg4ybgHLJiOce8FNe_UQSil7rh4,5467
|
580
574
|
anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py,sha256=O01Zt4yeVFVWMPpvMjPrYDZVx9BTAhvR5VYZQmg6HUE,5826
|
581
|
-
anyscale/client/openapi_client/models/ray_runtime_env_config.py,sha256=
|
575
|
+
anyscale/client/openapi_client/models/ray_runtime_env_config.py,sha256=82Vc_T-TdXIzZLczNB2Hqtd53luotd2DBxQnVH1nwxo,9074
|
582
576
|
anyscale/client/openapi_client/models/read_billing_version.py,sha256=0hOQby7NUkwl1FxlH_7S2iBZrNluYRfzCYorqFPXxRE,7481
|
583
577
|
anyscale/client/openapi_client/models/readbillingversion_list_response.py,sha256=1jdBzaiunHku2Y85OuqSQEH3cTpSmQgBgKwkSmqSWBk,4467
|
584
578
|
anyscale/client/openapi_client/models/replica_details.py,sha256=Fgq--HCUQHIqx_CPMcy_6YXbRGgCCNO2S-ASln81J-0,4512
|
@@ -689,9 +683,9 @@ anyscale/client/openapi_client/models/timestampedlogsoutput_response.py,sha256=3
|
|
689
683
|
anyscale/client/openapi_client/models/tool.py,sha256=VdvWL_MW4EQGShmmjOL0OpD_oCBaU4EUofUxdzGSlwg,2977
|
690
684
|
anyscale/client/openapi_client/models/tracing_config.py,sha256=UdOdwgPRrXQyFNDgnsBKtFyBHYx9Z7nrctNJX-H8VTM,6293
|
691
685
|
anyscale/client/openapi_client/models/train_resources.py,sha256=cUsgnqj5rRVhos7lsU02zFE7RUBJuXv07-g8nta19_k,3577
|
692
|
-
anyscale/client/openapi_client/models/train_run.py,sha256=
|
686
|
+
anyscale/client/openapi_client/models/train_run.py,sha256=5ZSNTKJdkw0KWLePfMW2dTMGsfOeohjEU0rLW1cR1bg,12075
|
693
687
|
anyscale/client/openapi_client/models/train_run_attempt.py,sha256=s8_rIdNLl4ofLaP2oBoDhQKOEPedlaU1qlxGm4wKcMM,9353
|
694
|
-
anyscale/client/openapi_client/models/train_worker.py,sha256=
|
688
|
+
anyscale/client/openapi_client/models/train_worker.py,sha256=fRqsp61gZj7EJNPw0Cxz12Qg9dgISLrxsVbFPiaZ4kQ,11237
|
695
689
|
anyscale/client/openapi_client/models/trainrun_list_response.py,sha256=OjmJOsglUhoqv2lhocx-DloJY9bk30ZYGNK0ObcorkY,4317
|
696
690
|
anyscale/client/openapi_client/models/try_login_email_response.py,sha256=hK2avNTvceYz9Rwd0wOnv3oBJWIQLIKo_iruo6nmJGk,7188
|
697
691
|
anyscale/client/openapi_client/models/tryloginemailresponse_response.py,sha256=OkEgY9gBIaM16bn-GKqmKqiY6KJIkMQjc-9Wjz7DdV0,3649
|
@@ -846,7 +840,7 @@ anyscale/image/_private/image_sdk.py,sha256=c6ONvbcq1bUP0YbfIMw8QLRFfVbCiiTwULQA
|
|
846
840
|
anyscale/job/__init__.py,sha256=_5Nb3a11F4oAHXirTgx5vDdgpVzJ62FdGFmADxxvcPE,5051
|
847
841
|
anyscale/job/commands.py,sha256=iS9dMPJimtrhO-_RAExotRzSmrvl0zxInLaX9-kucQM,8230
|
848
842
|
anyscale/job/models.py,sha256=nLxMZDnPmn7m_JJ90acI0hm0xxSOUI-pX61r3WhqXME,17564
|
849
|
-
anyscale/job/_private/job_sdk.py,sha256=
|
843
|
+
anyscale/job/_private/job_sdk.py,sha256=gK6JceOEa73blF5lk36we9AbnTnpSsJXUM7eyzrR2XY,18900
|
850
844
|
anyscale/llm/__init__.py,sha256=lRp09PWR2gcJF_1Y9ieIIQWirijP5p_l3AQkTir2iN4,76
|
851
845
|
anyscale/llm/sdk.py,sha256=VmA03eegizqikWR3eH2jYNiA8-FY3Qq1GGtvdkgU470,733
|
852
846
|
anyscale/llm/dataset/__init__.py,sha256=J-z8d7Bdvjf_5OOjcHrFQrXnCxbdcvzUBcyapawIuHg,131
|
@@ -995,7 +989,7 @@ anyscale/sdk/anyscale_client/models/log_file_chunk.py,sha256=iF6XgWhKYeaUihbA-Nf
|
|
995
989
|
anyscale/sdk/anyscale_client/models/log_stream.py,sha256=UUORMiTWXXsg9bLuLbKuVxvKCYquZ0puHhvGNSVX-Rw,4412
|
996
990
|
anyscale/sdk/anyscale_client/models/logdownloadresult_response.py,sha256=5Y-pfF-EyKwSkBRdrukj_qJmEIJHvrw3r7vOSc_PY2k,3603
|
997
991
|
anyscale/sdk/anyscale_client/models/logstream_response.py,sha256=9bJoxSYPYmIKINpZF7UmRoUy43SaBUDCFMcxiJvXiMw,3515
|
998
|
-
anyscale/sdk/anyscale_client/models/node_type.py,sha256=
|
992
|
+
anyscale/sdk/anyscale_client/models/node_type.py,sha256=0OFw1Jhs01rL9QwZkE9oYm5PxLhGaWDWw3zxm9ZXCr4,2868
|
999
993
|
anyscale/sdk/anyscale_client/models/object_storage_config.py,sha256=ilailixc1Rk0qYA28rbWrv88a2BlFsEJva1HEi2zzaI,3409
|
1000
994
|
anyscale/sdk/anyscale_client/models/object_storage_config_s3.py,sha256=v8v0sdrWXY0lZvo_WopXkTE0LOMhO5ySnTdr7BOIROw,8309
|
1001
995
|
anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py,sha256=RMtqS-dwFtRsovf2mwjZyJ5AmGjJLTsRpZ9CGxBXZF8,3625
|
@@ -1022,7 +1016,7 @@ anyscale/sdk/anyscale_client/models/protocols.py,sha256=9qfVw8NFAPiOYpKgpTpqfBMs
|
|
1022
1016
|
anyscale/sdk/anyscale_client/models/python_modules.py,sha256=c-azFLGNKajibYjCigBuGK0_ac2UmL5FJ4ODbQJk9mY,4558
|
1023
1017
|
anyscale/sdk/anyscale_client/models/python_version.py,sha256=O84bJhjGnVXRZIiTWFzvC5HcFSSNAcm6w1X8GYBt8rQ,2945
|
1024
1018
|
anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py,sha256=BEtUR1Kh5aaNFjFHU7MsxooBqQc-hGal6_mipYJcW0g,5824
|
1025
|
-
anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py,sha256=
|
1019
|
+
anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py,sha256=FvzfMvgt7T8lYRFbd0gjZhAUTSE-wsRRCe7RTHvjysE,9072
|
1026
1020
|
anyscale/sdk/anyscale_client/models/resources.py,sha256=eTejVIl2V0FdAFfIt728G_trQ-VvQM7brJhmpShDnxs,8186
|
1027
1021
|
anyscale/sdk/anyscale_client/models/rollback_service_model.py,sha256=_vMH6PeOIvsIo7s6al9Fkvc4F0PC2W4BlCRmwdlTD7k,3725
|
1028
1022
|
anyscale/sdk/anyscale_client/models/rollout_strategy.py,sha256=AWZEjQEn8_goS97NXMgJtuPdtRS1HrA9rVKWmOWFKYQ,2845
|
@@ -1150,10 +1144,10 @@ anyscale/workspace/__init__.py,sha256=fIxkn8b_HADCQl5njPAbcJxAf0sajZoc55L_wMvGAx
|
|
1150
1144
|
anyscale/workspace/commands.py,sha256=21FubFd2wmEwlVbk-ng-adwBm-O4ZPBgEJnoavbfvbU,14035
|
1151
1145
|
anyscale/workspace/models.py,sha256=Ey67KqxdslS51yK7xetbRaFjE8sURAArpf-F38r3cUU,9760
|
1152
1146
|
anyscale/workspace/_private/workspace_sdk.py,sha256=4LOBmMm7kd-O94ii5uP1UDbkWLComh6zI5QmE2lXRTY,26824
|
1153
|
-
anyscale-0.26.
|
1154
|
-
anyscale-0.26.
|
1155
|
-
anyscale-0.26.
|
1156
|
-
anyscale-0.26.
|
1157
|
-
anyscale-0.26.
|
1158
|
-
anyscale-0.26.
|
1159
|
-
anyscale-0.26.
|
1147
|
+
anyscale-0.26.4.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1148
|
+
anyscale-0.26.4.dist-info/METADATA,sha256=Jlye9Bax_ovqc_QVSMz6Sz4QQhrUUuPTj60kL5YeyOs,3049
|
1149
|
+
anyscale-0.26.4.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1150
|
+
anyscale-0.26.4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
1151
|
+
anyscale-0.26.4.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1152
|
+
anyscale-0.26.4.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1153
|
+
anyscale-0.26.4.dist-info/RECORD,,
|