aioli-sdk 1.2.0.dev14__tar.gz → 1.2.0.dev16__tar.gz
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.
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/PKG-INFO +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/__version__.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/model.py +17 -3
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/template.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/test/test_cli.py +113 -17
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli_sdk.egg-info/PKG-INFO +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/__init__.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/authentication_api.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/deployments_api.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/information_api.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/packaged_models_api.py +30 -13
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/registries_api.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/roles_api.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/templates_api.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/tokens_api.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/users_api.py +10 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api_client.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/configuration.py +2 -2
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/exceptions.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/__init__.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/auto_scaling_template.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/autoscaling.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/configuration_resources.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_model_version.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_priority.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_state.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_token.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_token_patch_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_token_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/error_response.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/event_info.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/failure_info.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/login_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/login_response.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/model_auth_token.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/model_response.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/observability.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/packaged_model.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/packaged_model_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/resource_profile.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/resources_template.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/role.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/role_assignment.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/role_assignments.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/security.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/success_response.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/trained_model_registry.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/trained_model_registry_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/user.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/user_patch_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/user_request.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/rest.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/setup.py +1 -1
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/README.md +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/__init__.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/__init__.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/__main__.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/_util.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/cli.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/deployment.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/errors.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/registry.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/render.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/role.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/sso.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/test/conftest.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/token.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/user.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/cli/version.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/__init__.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/api/__init__.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/api/_util.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/api/authentication.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/api/certs.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/api/errors.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/api/request.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/check.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/constants.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/declarative_argparse.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/requests.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/common/util.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli/util.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli_sdk.egg-info/SOURCES.txt +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli_sdk.egg-info/dependency_links.txt +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli_sdk.egg-info/entry_points.txt +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli_sdk.egg-info/not-zip-safe +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli_sdk.egg-info/requires.txt +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aioli_sdk.egg-info/top_level.txt +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api/__init__.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/api_response.py +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/py.typed +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/pyproject.toml +0 -0
- {aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/setup.cfg +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# © Copyright 2024 Hewlett Packard Enterprise Development LP
|
|
2
|
-
__version__ = "1.2.0-
|
|
2
|
+
__version__ = "1.2.0-dev16"
|
|
@@ -29,7 +29,16 @@ from aiolirest.models.resource_profile import ResourceProfile
|
|
|
29
29
|
def list_models(args: Namespace) -> None:
|
|
30
30
|
with cli.setup_session(args) as session:
|
|
31
31
|
api_instance = aiolirest.PackagedModelsApi(session)
|
|
32
|
-
response =
|
|
32
|
+
response = None
|
|
33
|
+
# Get all models
|
|
34
|
+
if args.all:
|
|
35
|
+
response = api_instance.models_get()
|
|
36
|
+
# Get all versions of specified model
|
|
37
|
+
elif args.name is not None:
|
|
38
|
+
response = api_instance.models_get(name=args.name)
|
|
39
|
+
# Get latest version of each model (default)
|
|
40
|
+
else:
|
|
41
|
+
response = api_instance.models_get(latest="")
|
|
33
42
|
|
|
34
43
|
registries_api = aiolirest.RegistriesApi(session)
|
|
35
44
|
|
|
@@ -186,7 +195,8 @@ def show_model(args: Namespace) -> None:
|
|
|
186
195
|
with cli.setup_session(args) as session:
|
|
187
196
|
api_instance = aiolirest.PackagedModelsApi(session)
|
|
188
197
|
|
|
189
|
-
|
|
198
|
+
# By default, show latest (maximum) version
|
|
199
|
+
model = api_instance.models_get(model_ref=args.name, latest="")[0]
|
|
190
200
|
registries_api = aiolirest.RegistriesApi(session)
|
|
191
201
|
|
|
192
202
|
rname = lookup_registry_name_by_id(model.registry, registries_api)
|
|
@@ -386,8 +396,12 @@ main_cmd = Cmd(
|
|
|
386
396
|
Cmd(
|
|
387
397
|
"list ls",
|
|
388
398
|
list_models,
|
|
389
|
-
"list packaged
|
|
399
|
+
"list only the latest version of each packaged model",
|
|
390
400
|
[
|
|
401
|
+
Group(
|
|
402
|
+
Arg("--all", action="store_true", help="show all models"),
|
|
403
|
+
Arg("--name", help="list all versions of model, if specified"),
|
|
404
|
+
),
|
|
391
405
|
Arg("--csv", action="store_true", help="print as CSV"),
|
|
392
406
|
Arg("--json", action="store_true", help="print as JSON"),
|
|
393
407
|
],
|
|
@@ -7,7 +7,7 @@ from aioli import cli
|
|
|
7
7
|
from aioli.cli import render
|
|
8
8
|
from aioli.common.api import authentication
|
|
9
9
|
from aioli.common.api.errors import NotFoundException
|
|
10
|
-
from aioli.common.declarative_argparse import Arg, Cmd, Group
|
|
10
|
+
from aioli.common.declarative_argparse import Arg, ArgsDescription, Cmd, Group
|
|
11
11
|
from aiolirest.models.auto_scaling_template import AutoScalingTemplate
|
|
12
12
|
from aiolirest.models.autoscaling import Autoscaling
|
|
13
13
|
from aiolirest.models.configuration_resources import ConfigurationResources
|
|
@@ -263,6 +263,96 @@ class TestCli:
|
|
|
263
263
|
actual = subprocess.check_output(["aioli", "model", "list"]).decode("utf-8")
|
|
264
264
|
assert actual == expected
|
|
265
265
|
|
|
266
|
+
# Test that --name and --all are mutually exclusive parameters
|
|
267
|
+
assert os.system("aioli model list --all --name doesnt-matter") == 512
|
|
268
|
+
|
|
269
|
+
# Create version 1 of a model
|
|
270
|
+
assert (
|
|
271
|
+
os.system(
|
|
272
|
+
"aioli model create my-model "
|
|
273
|
+
"--image fictional.registry.example/imagename "
|
|
274
|
+
'--description "the model description" '
|
|
275
|
+
"--requests-cpu 1.0 "
|
|
276
|
+
"--requests-memory 1Gi "
|
|
277
|
+
"--requests-gpu 1.0 "
|
|
278
|
+
"--limits-cpu 2.5 "
|
|
279
|
+
"--limits-memory 1Gi "
|
|
280
|
+
"--limits-gpu 1.0 "
|
|
281
|
+
)
|
|
282
|
+
== 0
|
|
283
|
+
)
|
|
284
|
+
|
|
285
|
+
# Create version 2
|
|
286
|
+
assert os.system("aioli model update my-model " "--limits-cpu 5.0 ") == 0
|
|
287
|
+
|
|
288
|
+
# Check that aioli model list shows only the latest version of all models
|
|
289
|
+
# by default
|
|
290
|
+
not_expected = (
|
|
291
|
+
"my-model | the model description | 1 | |"
|
|
292
|
+
" fictional.registry.example/imagename"
|
|
293
|
+
)
|
|
294
|
+
expected = (
|
|
295
|
+
"my-model | the model description | 2 | |"
|
|
296
|
+
" fictional.registry.example/imagename"
|
|
297
|
+
)
|
|
298
|
+
actual = subprocess.check_output(["aioli", "model", "list"]).decode("utf-8")
|
|
299
|
+
assert actual.find(not_expected) < 0 and actual.find(expected) > 0
|
|
300
|
+
|
|
301
|
+
# Check that aioli model list with the --all flag shows all versions of
|
|
302
|
+
# all models
|
|
303
|
+
expected = (
|
|
304
|
+
"my-model | the model description | 2 | |"
|
|
305
|
+
" fictional.registry.example/imagename |\n my-model |"
|
|
306
|
+
" the model description | 1 | |"
|
|
307
|
+
" fictional.registry.example/imagename"
|
|
308
|
+
)
|
|
309
|
+
|
|
310
|
+
actual = subprocess.check_output(["aioli", "models", "list", "--all"]).decode("utf-8")
|
|
311
|
+
assert actual.find(expected) > 0
|
|
312
|
+
|
|
313
|
+
# Create a different model
|
|
314
|
+
assert (
|
|
315
|
+
os.system(
|
|
316
|
+
"aioli model create other-model "
|
|
317
|
+
"--image fictional.registry.example/imagename "
|
|
318
|
+
'--description "the model description" '
|
|
319
|
+
"--requests-cpu 1.0 "
|
|
320
|
+
"--requests-memory 1Gi "
|
|
321
|
+
"--requests-gpu 1.0 "
|
|
322
|
+
"--limits-cpu 2.5 "
|
|
323
|
+
"--limits-memory 1Gi "
|
|
324
|
+
"--limits-gpu 1.0 "
|
|
325
|
+
)
|
|
326
|
+
== 0
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
not_expected = (
|
|
330
|
+
"other-model | the model description | 1 | |"
|
|
331
|
+
" fictional.registry.example/imagename"
|
|
332
|
+
)
|
|
333
|
+
actual = subprocess.check_output(["aioli", "models", "list", "--name", "my-model"]).decode(
|
|
334
|
+
"utf-8"
|
|
335
|
+
)
|
|
336
|
+
# Same expected as previous
|
|
337
|
+
assert actual.find(not_expected) < 0 and actual.find(expected) > 0
|
|
338
|
+
|
|
339
|
+
# This test uses and cleans up models created in test_model_list
|
|
340
|
+
def test_model_show(self, setup_login: None) -> None:
|
|
341
|
+
# Check that aioli model show displays the latest version by default
|
|
342
|
+
# when multiple versions of the model exist
|
|
343
|
+
actual = subprocess.check_output(["aioli", "model", "show", "my-model"]).decode("utf-8")
|
|
344
|
+
assert actual.find("version: 2") > 0 and actual.find("version: 1") < 0
|
|
345
|
+
|
|
346
|
+
# Cleanup
|
|
347
|
+
assert (
|
|
348
|
+
os.system(
|
|
349
|
+
"aioli model delete my-model.v1 && "
|
|
350
|
+
"aioli model delete my-model.v2 && "
|
|
351
|
+
"aioli model delete other-model"
|
|
352
|
+
)
|
|
353
|
+
== 0
|
|
354
|
+
)
|
|
355
|
+
|
|
266
356
|
def test_model_create(self, setup_login: None) -> None:
|
|
267
357
|
# Create an entry for model table and test for expected values
|
|
268
358
|
assert (
|
|
@@ -297,21 +387,23 @@ class TestCli:
|
|
|
297
387
|
temp_file: str = "/tmp/test-cli-m.csv"
|
|
298
388
|
with open(temp_file, "w") as file:
|
|
299
389
|
file.write(csv_output)
|
|
390
|
+
|
|
391
|
+
matching_row_found = False
|
|
300
392
|
with open(temp_file, newline="") as file:
|
|
301
393
|
reader = csv.DictReader(file)
|
|
302
394
|
for row in reader:
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
row["Description"] == "the model description"
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
row["
|
|
310
|
-
)
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
395
|
+
if (
|
|
396
|
+
row["Name"] == "iris-tf-keras"
|
|
397
|
+
and row["Description"] == "the model description"
|
|
398
|
+
and row["Version"] == "1"
|
|
399
|
+
and row["URI"] == "s3://demo-bento-registry/iris-tf-keras"
|
|
400
|
+
and row["Image"] == "fictional.registry.example/imagename"
|
|
401
|
+
and row["Registry"] == "bento-registry1"
|
|
402
|
+
):
|
|
403
|
+
matching_row_found = True
|
|
404
|
+
break
|
|
405
|
+
|
|
406
|
+
assert matching_row_found, "No row with the expected properties was found"
|
|
315
407
|
|
|
316
408
|
# Exercise various means of specifying the model version, using the show command as a vehicle.
|
|
317
409
|
def test_model_versions(self, setup_login: None) -> None:
|
|
@@ -379,7 +471,7 @@ class TestCli:
|
|
|
379
471
|
']\n' # noqa: Q000
|
|
380
472
|
)
|
|
381
473
|
actual = subprocess.check_output(["aioli", "model", "list", "--json"]).decode("utf-8")
|
|
382
|
-
assert actual
|
|
474
|
+
assert actual.find(expected) >= 0
|
|
383
475
|
# fmt: on
|
|
384
476
|
|
|
385
477
|
def test_model_create_no_image(self, setup_login: None) -> None:
|
|
@@ -429,7 +521,7 @@ class TestCli:
|
|
|
429
521
|
)
|
|
430
522
|
== 0
|
|
431
523
|
)
|
|
432
|
-
actual = subprocess.check_output(["aioli", "model", "list"]).decode("utf-8")
|
|
524
|
+
actual = subprocess.check_output(["aioli", "model", "list", "--all"]).decode("utf-8")
|
|
433
525
|
expected = (
|
|
434
526
|
"iris-tf-keras1 | the updated model description | 1 "
|
|
435
527
|
"| s3://demo-bento-registry/iris-tf-keras_updated | "
|
|
@@ -448,7 +540,7 @@ class TestCli:
|
|
|
448
540
|
)
|
|
449
541
|
== 0
|
|
450
542
|
)
|
|
451
|
-
actual = subprocess.check_output(["aioli", "model", "list"]).decode("utf-8")
|
|
543
|
+
actual = subprocess.check_output(["aioli", "model", "list", "--all"]).decode("utf-8")
|
|
452
544
|
expected = (
|
|
453
545
|
"iris-tf-keras | the updated model description | 2 "
|
|
454
546
|
"| s3://demo-bento-registry/iris-tf-keras_updated_v2 | "
|
|
@@ -480,7 +572,7 @@ class TestCli:
|
|
|
480
572
|
== 0
|
|
481
573
|
)
|
|
482
574
|
|
|
483
|
-
actual = subprocess.check_output(["aioli", "model", "list"]).decode("utf-8")
|
|
575
|
+
actual = subprocess.check_output(["aioli", "model", "list", "--all"]).decode("utf-8")
|
|
484
576
|
|
|
485
577
|
expected = (
|
|
486
578
|
"iris-tf-keras | the updated model description | 3 "
|
|
@@ -502,7 +594,7 @@ class TestCli:
|
|
|
502
594
|
== 0
|
|
503
595
|
)
|
|
504
596
|
|
|
505
|
-
actual = subprocess.check_output(["aioli", "model", "list"]).decode("utf-8")
|
|
597
|
+
actual = subprocess.check_output(["aioli", "model", "list", "--all"]).decode("utf-8")
|
|
506
598
|
|
|
507
599
|
expected = (
|
|
508
600
|
"iris-tf-keras-v4 | the updated model description | 1 "
|
|
@@ -807,6 +899,10 @@ class TestCli:
|
|
|
807
899
|
|
|
808
900
|
def test_model_delete(self, setup_login: None) -> None:
|
|
809
901
|
assert os.system("aioli model delete iris-tf-keras1") == 0
|
|
902
|
+
|
|
903
|
+
# Test that a model with multiple versions cannot be deleted by only name
|
|
904
|
+
assert os.system("aioli model delete iris-tf-keras") != 0
|
|
905
|
+
|
|
810
906
|
assert os.system("aioli model delete iris-tf-keras.v1") == 0
|
|
811
907
|
assert os.system("aioli model delete iris-tf-keras.v2") == 0
|
|
812
908
|
assert os.system("aioli model delete iris-tf-keras.v3") == 0
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
9
9
|
|
|
10
|
-
The version of the OpenAPI document: 1.2.0-
|
|
10
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
11
11
|
Contact: community@determined-ai
|
|
12
12
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
13
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -58,8 +58,9 @@ class PackagedModelsApi:
|
|
|
58
58
|
@validate_call
|
|
59
59
|
def models_get(
|
|
60
60
|
self,
|
|
61
|
-
model_ref: Annotated[Optional[StrictStr], Field(description="PackagedModel ID
|
|
62
|
-
|
|
61
|
+
model_ref: Annotated[Optional[StrictStr], Field(description="PackagedModel ID or versioned Name (evaluated in that order)")] = None,
|
|
62
|
+
name: Annotated[Optional[StrictStr], Field(description="Model versions with the specified name")] = None,
|
|
63
|
+
latest: Annotated[Optional[StrictStr], Field(description="If present, return only the latest model versions with the specified name.")] = None,
|
|
63
64
|
_request_timeout: Union[
|
|
64
65
|
None,
|
|
65
66
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -77,9 +78,11 @@ class PackagedModelsApi:
|
|
|
77
78
|
|
|
78
79
|
Return the properties of all configured models. Results are sorted by modifiedAt descending.
|
|
79
80
|
|
|
80
|
-
:param model_ref: PackagedModel ID
|
|
81
|
+
:param model_ref: PackagedModel ID or versioned Name (evaluated in that order)
|
|
81
82
|
:type model_ref: str
|
|
82
|
-
:param
|
|
83
|
+
:param name: Model versions with the specified name
|
|
84
|
+
:type name: str
|
|
85
|
+
:param latest: If present, return only the latest model versions with the specified name.
|
|
83
86
|
:type latest: str
|
|
84
87
|
:param _request_timeout: timeout setting for this request. If one
|
|
85
88
|
number provided, it will be total request
|
|
@@ -105,6 +108,7 @@ class PackagedModelsApi:
|
|
|
105
108
|
|
|
106
109
|
_param = self._models_get_serialize(
|
|
107
110
|
model_ref=model_ref,
|
|
111
|
+
name=name,
|
|
108
112
|
latest=latest,
|
|
109
113
|
_request_auth=_request_auth,
|
|
110
114
|
_content_type=_content_type,
|
|
@@ -131,8 +135,9 @@ class PackagedModelsApi:
|
|
|
131
135
|
@validate_call
|
|
132
136
|
def models_get_with_http_info(
|
|
133
137
|
self,
|
|
134
|
-
model_ref: Annotated[Optional[StrictStr], Field(description="PackagedModel ID
|
|
135
|
-
|
|
138
|
+
model_ref: Annotated[Optional[StrictStr], Field(description="PackagedModel ID or versioned Name (evaluated in that order)")] = None,
|
|
139
|
+
name: Annotated[Optional[StrictStr], Field(description="Model versions with the specified name")] = None,
|
|
140
|
+
latest: Annotated[Optional[StrictStr], Field(description="If present, return only the latest model versions with the specified name.")] = None,
|
|
136
141
|
_request_timeout: Union[
|
|
137
142
|
None,
|
|
138
143
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -150,9 +155,11 @@ class PackagedModelsApi:
|
|
|
150
155
|
|
|
151
156
|
Return the properties of all configured models. Results are sorted by modifiedAt descending.
|
|
152
157
|
|
|
153
|
-
:param model_ref: PackagedModel ID
|
|
158
|
+
:param model_ref: PackagedModel ID or versioned Name (evaluated in that order)
|
|
154
159
|
:type model_ref: str
|
|
155
|
-
:param
|
|
160
|
+
:param name: Model versions with the specified name
|
|
161
|
+
:type name: str
|
|
162
|
+
:param latest: If present, return only the latest model versions with the specified name.
|
|
156
163
|
:type latest: str
|
|
157
164
|
:param _request_timeout: timeout setting for this request. If one
|
|
158
165
|
number provided, it will be total request
|
|
@@ -178,6 +185,7 @@ class PackagedModelsApi:
|
|
|
178
185
|
|
|
179
186
|
_param = self._models_get_serialize(
|
|
180
187
|
model_ref=model_ref,
|
|
188
|
+
name=name,
|
|
181
189
|
latest=latest,
|
|
182
190
|
_request_auth=_request_auth,
|
|
183
191
|
_content_type=_content_type,
|
|
@@ -204,8 +212,9 @@ class PackagedModelsApi:
|
|
|
204
212
|
@validate_call
|
|
205
213
|
def models_get_without_preload_content(
|
|
206
214
|
self,
|
|
207
|
-
model_ref: Annotated[Optional[StrictStr], Field(description="PackagedModel ID
|
|
208
|
-
|
|
215
|
+
model_ref: Annotated[Optional[StrictStr], Field(description="PackagedModel ID or versioned Name (evaluated in that order)")] = None,
|
|
216
|
+
name: Annotated[Optional[StrictStr], Field(description="Model versions with the specified name")] = None,
|
|
217
|
+
latest: Annotated[Optional[StrictStr], Field(description="If present, return only the latest model versions with the specified name.")] = None,
|
|
209
218
|
_request_timeout: Union[
|
|
210
219
|
None,
|
|
211
220
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -223,9 +232,11 @@ class PackagedModelsApi:
|
|
|
223
232
|
|
|
224
233
|
Return the properties of all configured models. Results are sorted by modifiedAt descending.
|
|
225
234
|
|
|
226
|
-
:param model_ref: PackagedModel ID
|
|
235
|
+
:param model_ref: PackagedModel ID or versioned Name (evaluated in that order)
|
|
227
236
|
:type model_ref: str
|
|
228
|
-
:param
|
|
237
|
+
:param name: Model versions with the specified name
|
|
238
|
+
:type name: str
|
|
239
|
+
:param latest: If present, return only the latest model versions with the specified name.
|
|
229
240
|
:type latest: str
|
|
230
241
|
:param _request_timeout: timeout setting for this request. If one
|
|
231
242
|
number provided, it will be total request
|
|
@@ -251,6 +262,7 @@ class PackagedModelsApi:
|
|
|
251
262
|
|
|
252
263
|
_param = self._models_get_serialize(
|
|
253
264
|
model_ref=model_ref,
|
|
265
|
+
name=name,
|
|
254
266
|
latest=latest,
|
|
255
267
|
_request_auth=_request_auth,
|
|
256
268
|
_content_type=_content_type,
|
|
@@ -273,6 +285,7 @@ class PackagedModelsApi:
|
|
|
273
285
|
def _models_get_serialize(
|
|
274
286
|
self,
|
|
275
287
|
model_ref,
|
|
288
|
+
name,
|
|
276
289
|
latest,
|
|
277
290
|
_request_auth,
|
|
278
291
|
_content_type,
|
|
@@ -299,6 +312,10 @@ class PackagedModelsApi:
|
|
|
299
312
|
|
|
300
313
|
_query_params.append(('model-ref', model_ref))
|
|
301
314
|
|
|
315
|
+
if name is not None:
|
|
316
|
+
|
|
317
|
+
_query_params.append(('name', name))
|
|
318
|
+
|
|
302
319
|
if latest is not None:
|
|
303
320
|
|
|
304
321
|
_query_params.append(('latest', latest))
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -105,6 +105,7 @@ class UsersApi:
|
|
|
105
105
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
106
106
|
'200': "List[User]",
|
|
107
107
|
'400': "ErrorResponse",
|
|
108
|
+
'403': "ErrorResponse",
|
|
108
109
|
'500': "ErrorResponse"
|
|
109
110
|
|
|
110
111
|
}
|
|
@@ -171,6 +172,7 @@ class UsersApi:
|
|
|
171
172
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
172
173
|
'200': "List[User]",
|
|
173
174
|
'400': "ErrorResponse",
|
|
175
|
+
'403': "ErrorResponse",
|
|
174
176
|
'500': "ErrorResponse"
|
|
175
177
|
|
|
176
178
|
}
|
|
@@ -237,6 +239,7 @@ class UsersApi:
|
|
|
237
239
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
238
240
|
'200': "List[User]",
|
|
239
241
|
'400': "ErrorResponse",
|
|
242
|
+
'403': "ErrorResponse",
|
|
240
243
|
'500': "ErrorResponse"
|
|
241
244
|
|
|
242
245
|
}
|
|
@@ -630,6 +633,7 @@ class UsersApi:
|
|
|
630
633
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
631
634
|
'200': "List[User]",
|
|
632
635
|
'400': "ErrorResponse",
|
|
636
|
+
'403': "ErrorResponse",
|
|
633
637
|
'500': "ErrorResponse"
|
|
634
638
|
|
|
635
639
|
}
|
|
@@ -700,6 +704,7 @@ class UsersApi:
|
|
|
700
704
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
701
705
|
'200': "List[User]",
|
|
702
706
|
'400': "ErrorResponse",
|
|
707
|
+
'403': "ErrorResponse",
|
|
703
708
|
'500': "ErrorResponse"
|
|
704
709
|
|
|
705
710
|
}
|
|
@@ -770,6 +775,7 @@ class UsersApi:
|
|
|
770
775
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
771
776
|
'200': "List[User]",
|
|
772
777
|
'400': "ErrorResponse",
|
|
778
|
+
'403': "ErrorResponse",
|
|
773
779
|
'500': "ErrorResponse"
|
|
774
780
|
|
|
775
781
|
}
|
|
@@ -902,6 +908,7 @@ class UsersApi:
|
|
|
902
908
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
903
909
|
'200': "User",
|
|
904
910
|
'400': "ErrorResponse",
|
|
911
|
+
'403': "ErrorResponse",
|
|
905
912
|
'500': "ErrorResponse"
|
|
906
913
|
|
|
907
914
|
}
|
|
@@ -976,6 +983,7 @@ class UsersApi:
|
|
|
976
983
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
977
984
|
'200': "User",
|
|
978
985
|
'400': "ErrorResponse",
|
|
986
|
+
'403': "ErrorResponse",
|
|
979
987
|
'500': "ErrorResponse"
|
|
980
988
|
|
|
981
989
|
}
|
|
@@ -1050,6 +1058,7 @@ class UsersApi:
|
|
|
1050
1058
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1051
1059
|
'200': "User",
|
|
1052
1060
|
'400': "ErrorResponse",
|
|
1061
|
+
'403': "ErrorResponse",
|
|
1053
1062
|
'500': "ErrorResponse"
|
|
1054
1063
|
|
|
1055
1064
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -389,7 +389,7 @@ conf = aiolirest.Configuration(
|
|
|
389
389
|
return "Python SDK Debug Report:\n"\
|
|
390
390
|
"OS: {env}\n"\
|
|
391
391
|
"Python Version: {pyversion}\n"\
|
|
392
|
-
"Version of the API: 1.2.0-
|
|
392
|
+
"Version of the API: 1.2.0-dev16\n"\
|
|
393
393
|
"SDK Package Version: 1.0.0".\
|
|
394
394
|
format(env=sys.platform, pyversion=sys.version)
|
|
395
395
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
8
8
|
|
|
9
|
-
The version of the OpenAPI document: 1.2.0-
|
|
9
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
10
10
|
Contact: community@determined-ai
|
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
12
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_model_version.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_token_patch_request.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/deployment_token_request.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
{aioli_sdk-1.2.0.dev14 → aioli_sdk-1.2.0.dev16}/aiolirest/models/trained_model_registry_request.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
HPE MLIS is *Aioli* -- The AI On-line Inference Platform that enables easy deployment, tracking, and serving of your packaged models regardless of your preferred AI framework.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.2.0-
|
|
8
|
+
The version of the OpenAPI document: 1.2.0-dev16
|
|
9
9
|
Contact: community@determined-ai
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|