aioli-sdk 1.2.0.dev6__tar.gz → 1.2.0.dev8__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.
Files changed (94) hide show
  1. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/PKG-INFO +1 -1
  2. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/__version__.py +1 -1
  3. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/util.py +2 -4
  4. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli_sdk.egg-info/PKG-INFO +1 -1
  5. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli_sdk.egg-info/SOURCES.txt +1 -0
  6. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/__init__.py +2 -1
  7. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/authentication_api.py +1 -1
  8. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/deployments_api.py +255 -4
  9. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/information_api.py +1 -1
  10. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/packaged_models_api.py +1 -1
  11. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/registries_api.py +1 -1
  12. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/roles_api.py +1 -1
  13. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/templates_api.py +1 -1
  14. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/tokens_api.py +1 -1
  15. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/users_api.py +1 -1
  16. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api_client.py +1 -1
  17. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/configuration.py +2 -2
  18. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/exceptions.py +1 -1
  19. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/__init__.py +2 -1
  20. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/auto_scaling_template.py +1 -1
  21. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/autoscaling.py +1 -1
  22. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/configuration_resources.py +1 -1
  23. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/deployment.py +1 -1
  24. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/deployment_model_version.py +1 -1
  25. aioli_sdk-1.2.0.dev8/aiolirest/models/deployment_priority.py +91 -0
  26. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/deployment_request.py +1 -1
  27. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/deployment_state.py +1 -1
  28. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/deployment_token.py +1 -1
  29. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/deployment_token_patch_request.py +1 -1
  30. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/deployment_token_request.py +1 -1
  31. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/error_response.py +1 -1
  32. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/event_info.py +1 -1
  33. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/failure_info.py +1 -1
  34. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/login_request.py +1 -1
  35. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/login_response.py +1 -1
  36. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/model_auth_token.py +1 -1
  37. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/model_response.py +5 -3
  38. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/observability.py +1 -1
  39. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/packaged_model.py +1 -1
  40. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/packaged_model_request.py +1 -1
  41. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/resource_profile.py +1 -1
  42. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/resources_template.py +1 -1
  43. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/role.py +1 -1
  44. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/role_assignment.py +1 -1
  45. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/role_assignments.py +1 -1
  46. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/security.py +1 -1
  47. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/success_response.py +1 -1
  48. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/trained_model_registry.py +1 -1
  49. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/trained_model_registry_request.py +1 -1
  50. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/user.py +1 -1
  51. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/user_patch_request.py +1 -1
  52. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/models/user_request.py +1 -1
  53. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/rest.py +1 -1
  54. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/setup.py +1 -1
  55. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/README.md +0 -0
  56. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/__init__.py +0 -0
  57. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/__init__.py +0 -0
  58. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/__main__.py +0 -0
  59. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/_util.py +0 -0
  60. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/cli.py +0 -0
  61. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/deployment.py +0 -0
  62. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/errors.py +0 -0
  63. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/model.py +0 -0
  64. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/registry.py +0 -0
  65. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/render.py +0 -0
  66. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/role.py +0 -0
  67. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/sso.py +0 -0
  68. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/test/conftest.py +0 -0
  69. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/test/test_cli.py +0 -0
  70. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/token.py +0 -0
  71. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/user.py +0 -0
  72. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/cli/version.py +0 -0
  73. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/__init__.py +0 -0
  74. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/api/__init__.py +0 -0
  75. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/api/_util.py +0 -0
  76. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/api/authentication.py +0 -0
  77. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/api/certs.py +0 -0
  78. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/api/errors.py +0 -0
  79. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/api/request.py +0 -0
  80. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/check.py +0 -0
  81. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/constants.py +0 -0
  82. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/declarative_argparse.py +0 -0
  83. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/common/requests.py +0 -0
  84. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli/util.py +0 -0
  85. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli_sdk.egg-info/dependency_links.txt +0 -0
  86. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli_sdk.egg-info/entry_points.txt +0 -0
  87. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli_sdk.egg-info/not-zip-safe +0 -0
  88. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli_sdk.egg-info/requires.txt +0 -0
  89. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aioli_sdk.egg-info/top_level.txt +0 -0
  90. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api/__init__.py +0 -0
  91. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/api_response.py +0 -0
  92. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/aiolirest/py.typed +0 -0
  93. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/pyproject.toml +0 -0
  94. {aioli_sdk-1.2.0.dev6 → aioli_sdk-1.2.0.dev8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aioli-sdk
3
- Version: 1.2.0.dev6
3
+ Version: 1.2.0.dev8
4
4
  Summary: Aioli (AI OnLine Inference), a platform for deploying AI models at scale.
5
5
  Home-page: https://github.com/determined-ai/aioli
6
6
  Author: HPE AI Solutions
@@ -1,2 +1,2 @@
1
1
  # © Copyright 2024 Hewlett Packard Enterprise Development LP
2
- __version__ = "1.2.0-dev6"
2
+ __version__ = "1.2.0-dev8"
@@ -118,13 +118,11 @@ def only_prepend_protocol(host: str) -> str:
118
118
 
119
119
 
120
120
  @overload
121
- def chunks(lst: str, chunk_size: int) -> Iterator[str]:
122
- ...
121
+ def chunks(lst: str, chunk_size: int) -> Iterator[str]: ...
123
122
 
124
123
 
125
124
  @overload
126
- def chunks(lst: Sequence[T], chunk_size: int) -> Iterator[Sequence[T]]:
127
- ...
125
+ def chunks(lst: Sequence[T], chunk_size: int) -> Iterator[Sequence[T]]: ...
128
126
 
129
127
 
130
128
  def chunks(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aioli-sdk
3
- Version: 1.2.0.dev6
3
+ Version: 1.2.0.dev8
4
4
  Summary: Aioli (AI OnLine Inference), a platform for deploying AI models at scale.
5
5
  Home-page: https://github.com/determined-ai/aioli
6
6
  Author: HPE AI Solutions
@@ -62,6 +62,7 @@ aiolirest/models/autoscaling.py
62
62
  aiolirest/models/configuration_resources.py
63
63
  aiolirest/models/deployment.py
64
64
  aiolirest/models/deployment_model_version.py
65
+ aiolirest/models/deployment_priority.py
65
66
  aiolirest/models/deployment_request.py
66
67
  aiolirest/models/deployment_state.py
67
68
  aiolirest/models/deployment_token.py
@@ -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-dev6
10
+ The version of the OpenAPI document: 1.2.0-dev8
11
11
  Contact: community@determined-ai
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -45,6 +45,7 @@ from aiolirest.models.autoscaling import Autoscaling
45
45
  from aiolirest.models.configuration_resources import ConfigurationResources
46
46
  from aiolirest.models.deployment import Deployment
47
47
  from aiolirest.models.deployment_model_version import DeploymentModelVersion
48
+ from aiolirest.models.deployment_priority import DeploymentPriority
48
49
  from aiolirest.models.deployment_request import DeploymentRequest
49
50
  from aiolirest.models.deployment_state import DeploymentState
50
51
  from aiolirest.models.deployment_token import DeploymentToken
@@ -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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
9
9
  Contact: community@determined-ai
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -31,6 +31,7 @@ from pydantic import StrictStr
31
31
  from typing import List, Optional
32
32
 
33
33
  from aiolirest.models.deployment import Deployment
34
+ from aiolirest.models.deployment_priority import DeploymentPriority
34
35
  from aiolirest.models.deployment_request import DeploymentRequest
35
36
  from aiolirest.models.event_info import EventInfo
36
37
  from aiolirest.models.observability import Observability
@@ -1729,7 +1730,7 @@ class DeploymentsApi:
1729
1730
  _headers: Optional[Dict[StrictStr, Any]] = None,
1730
1731
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1731
1732
  ) -> List[str]:
1732
- """Get all namespaces that can be selected for deployemnts.
1733
+ """Get all namespaces that can be selected for deployments.
1733
1734
 
1734
1735
  List of namespace names.
1735
1736
 
@@ -1794,7 +1795,7 @@ class DeploymentsApi:
1794
1795
  _headers: Optional[Dict[StrictStr, Any]] = None,
1795
1796
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1796
1797
  ) -> ApiResponse[List[str]]:
1797
- """Get all namespaces that can be selected for deployemnts.
1798
+ """Get all namespaces that can be selected for deployments.
1798
1799
 
1799
1800
  List of namespace names.
1800
1801
 
@@ -1859,7 +1860,7 @@ class DeploymentsApi:
1859
1860
  _headers: Optional[Dict[StrictStr, Any]] = None,
1860
1861
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1861
1862
  ) -> RESTResponseType:
1862
- """Get all namespaces that can be selected for deployemnts.
1863
+ """Get all namespaces that can be selected for deployments.
1863
1864
 
1864
1865
  List of namespace names.
1865
1866
 
@@ -2242,3 +2243,253 @@ class DeploymentsApi:
2242
2243
  )
2243
2244
 
2244
2245
 
2246
+
2247
+
2248
+ @validate_call
2249
+ def deployments_priorities_get(
2250
+ self,
2251
+ _request_timeout: Union[
2252
+ None,
2253
+ Annotated[StrictFloat, Field(gt=0)],
2254
+ Tuple[
2255
+ Annotated[StrictFloat, Field(gt=0)],
2256
+ Annotated[StrictFloat, Field(gt=0)]
2257
+ ]
2258
+ ] = None,
2259
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2260
+ _content_type: Optional[StrictStr] = None,
2261
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2262
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2263
+ ) -> List[DeploymentPriority]:
2264
+ """Get all priority classes that can be selected for deployments.
2265
+
2266
+ List of priority classes.
2267
+
2268
+ :param _request_timeout: timeout setting for this request. If one
2269
+ number provided, it will be total request
2270
+ timeout. It can also be a pair (tuple) of
2271
+ (connection, read) timeouts.
2272
+ :type _request_timeout: int, tuple(int, int), optional
2273
+ :param _request_auth: set to override the auth_settings for an a single
2274
+ request; this effectively ignores the
2275
+ authentication in the spec for a single request.
2276
+ :type _request_auth: dict, optional
2277
+ :param _content_type: force content-type for the request.
2278
+ :type _content_type: str, Optional
2279
+ :param _headers: set to override the headers for a single
2280
+ request; this effectively ignores the headers
2281
+ in the spec for a single request.
2282
+ :type _headers: dict, optional
2283
+ :param _host_index: set to override the host_index for a single
2284
+ request; this effectively ignores the host_index
2285
+ in the spec for a single request.
2286
+ :type _host_index: int, optional
2287
+ :return: Returns the result object.
2288
+ """ # noqa: E501
2289
+
2290
+ _param = self._deployments_priorities_get_serialize(
2291
+ _request_auth=_request_auth,
2292
+ _content_type=_content_type,
2293
+ _headers=_headers,
2294
+ _host_index=_host_index
2295
+ )
2296
+
2297
+ _response_types_map: Dict[str, Optional[str]] = {
2298
+ '200': "List[DeploymentPriority]",
2299
+ '500': "ErrorResponse"
2300
+
2301
+ }
2302
+ response_data = self.api_client.call_api(
2303
+ *_param,
2304
+ _request_timeout=_request_timeout
2305
+ )
2306
+ response_data.read()
2307
+ return self.api_client.response_deserialize(
2308
+ response_data=response_data,
2309
+ response_types_map=_response_types_map,
2310
+ ).data
2311
+
2312
+
2313
+ @validate_call
2314
+ def deployments_priorities_get_with_http_info(
2315
+ self,
2316
+ _request_timeout: Union[
2317
+ None,
2318
+ Annotated[StrictFloat, Field(gt=0)],
2319
+ Tuple[
2320
+ Annotated[StrictFloat, Field(gt=0)],
2321
+ Annotated[StrictFloat, Field(gt=0)]
2322
+ ]
2323
+ ] = None,
2324
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2325
+ _content_type: Optional[StrictStr] = None,
2326
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2327
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2328
+ ) -> ApiResponse[List[DeploymentPriority]]:
2329
+ """Get all priority classes that can be selected for deployments.
2330
+
2331
+ List of priority classes.
2332
+
2333
+ :param _request_timeout: timeout setting for this request. If one
2334
+ number provided, it will be total request
2335
+ timeout. It can also be a pair (tuple) of
2336
+ (connection, read) timeouts.
2337
+ :type _request_timeout: int, tuple(int, int), optional
2338
+ :param _request_auth: set to override the auth_settings for an a single
2339
+ request; this effectively ignores the
2340
+ authentication in the spec for a single request.
2341
+ :type _request_auth: dict, optional
2342
+ :param _content_type: force content-type for the request.
2343
+ :type _content_type: str, Optional
2344
+ :param _headers: set to override the headers for a single
2345
+ request; this effectively ignores the headers
2346
+ in the spec for a single request.
2347
+ :type _headers: dict, optional
2348
+ :param _host_index: set to override the host_index for a single
2349
+ request; this effectively ignores the host_index
2350
+ in the spec for a single request.
2351
+ :type _host_index: int, optional
2352
+ :return: Returns the result object.
2353
+ """ # noqa: E501
2354
+
2355
+ _param = self._deployments_priorities_get_serialize(
2356
+ _request_auth=_request_auth,
2357
+ _content_type=_content_type,
2358
+ _headers=_headers,
2359
+ _host_index=_host_index
2360
+ )
2361
+
2362
+ _response_types_map: Dict[str, Optional[str]] = {
2363
+ '200': "List[DeploymentPriority]",
2364
+ '500': "ErrorResponse"
2365
+
2366
+ }
2367
+ response_data = self.api_client.call_api(
2368
+ *_param,
2369
+ _request_timeout=_request_timeout
2370
+ )
2371
+ response_data.read()
2372
+ return self.api_client.response_deserialize(
2373
+ response_data=response_data,
2374
+ response_types_map=_response_types_map,
2375
+ )
2376
+
2377
+
2378
+ @validate_call
2379
+ def deployments_priorities_get_without_preload_content(
2380
+ self,
2381
+ _request_timeout: Union[
2382
+ None,
2383
+ Annotated[StrictFloat, Field(gt=0)],
2384
+ Tuple[
2385
+ Annotated[StrictFloat, Field(gt=0)],
2386
+ Annotated[StrictFloat, Field(gt=0)]
2387
+ ]
2388
+ ] = None,
2389
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2390
+ _content_type: Optional[StrictStr] = None,
2391
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2392
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2393
+ ) -> RESTResponseType:
2394
+ """Get all priority classes that can be selected for deployments.
2395
+
2396
+ List of priority classes.
2397
+
2398
+ :param _request_timeout: timeout setting for this request. If one
2399
+ number provided, it will be total request
2400
+ timeout. It can also be a pair (tuple) of
2401
+ (connection, read) timeouts.
2402
+ :type _request_timeout: int, tuple(int, int), optional
2403
+ :param _request_auth: set to override the auth_settings for an a single
2404
+ request; this effectively ignores the
2405
+ authentication in the spec for a single request.
2406
+ :type _request_auth: dict, optional
2407
+ :param _content_type: force content-type for the request.
2408
+ :type _content_type: str, Optional
2409
+ :param _headers: set to override the headers for a single
2410
+ request; this effectively ignores the headers
2411
+ in the spec for a single request.
2412
+ :type _headers: dict, optional
2413
+ :param _host_index: set to override the host_index for a single
2414
+ request; this effectively ignores the host_index
2415
+ in the spec for a single request.
2416
+ :type _host_index: int, optional
2417
+ :return: Returns the result object.
2418
+ """ # noqa: E501
2419
+
2420
+ _param = self._deployments_priorities_get_serialize(
2421
+ _request_auth=_request_auth,
2422
+ _content_type=_content_type,
2423
+ _headers=_headers,
2424
+ _host_index=_host_index
2425
+ )
2426
+
2427
+ _response_types_map: Dict[str, Optional[str]] = {
2428
+ '200': "List[DeploymentPriority]",
2429
+ '500': "ErrorResponse"
2430
+
2431
+ }
2432
+ response_data = self.api_client.call_api(
2433
+ *_param,
2434
+ _request_timeout=_request_timeout
2435
+ )
2436
+ return response_data.response
2437
+
2438
+
2439
+ def _deployments_priorities_get_serialize(
2440
+ self,
2441
+ _request_auth,
2442
+ _content_type,
2443
+ _headers,
2444
+ _host_index,
2445
+ ) -> Tuple:
2446
+
2447
+ _host = None
2448
+
2449
+ _collection_formats: Dict[str, str] = {
2450
+
2451
+ }
2452
+
2453
+ _path_params: Dict[str, str] = {}
2454
+ _query_params: List[Tuple[str, str]] = []
2455
+ _header_params: Dict[str, Optional[str]] = _headers or {}
2456
+ _form_params: List[Tuple[str, str]] = []
2457
+ _files: Dict[str, str] = {}
2458
+ _body_params: Optional[bytes] = None
2459
+
2460
+ # process the path parameters
2461
+ # process the query parameters
2462
+ # process the header parameters
2463
+ # process the form parameters
2464
+ # process the body parameter
2465
+
2466
+
2467
+ # set the HTTP header `Accept`
2468
+ _header_params['Accept'] = self.api_client.select_header_accept(
2469
+ [
2470
+ '*/*'
2471
+ ]
2472
+ )
2473
+
2474
+
2475
+ # authentication setting
2476
+ _auth_settings: List[str] = [
2477
+ 'ApiKeyAuth'
2478
+ ]
2479
+
2480
+ return self.api_client.param_serialize(
2481
+ method='GET',
2482
+ resource_path='/deployments/priorities',
2483
+ path_params=_path_params,
2484
+ query_params=_query_params,
2485
+ header_params=_header_params,
2486
+ body=_body_params,
2487
+ post_params=_form_params,
2488
+ files=_files,
2489
+ auth_settings=_auth_settings,
2490
+ collection_formats=_collection_formats,
2491
+ _host=_host,
2492
+ _request_auth=_request_auth
2493
+ )
2494
+
2495
+
@@ -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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6\n"\
392
+ "Version of the API: 1.2.0-dev8\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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
9
+ The version of the OpenAPI document: 1.2.0-dev8
10
10
  Contact: community@determined-ai
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -20,6 +20,7 @@ from aiolirest.models.autoscaling import Autoscaling
20
20
  from aiolirest.models.configuration_resources import ConfigurationResources
21
21
  from aiolirest.models.deployment import Deployment
22
22
  from aiolirest.models.deployment_model_version import DeploymentModelVersion
23
+ from aiolirest.models.deployment_priority import DeploymentPriority
23
24
  from aiolirest.models.deployment_request import DeploymentRequest
24
25
  from aiolirest.models.deployment_state import DeploymentState
25
26
  from aiolirest.models.deployment_token import DeploymentToken
@@ -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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
9
9
  Contact: community@determined-ai
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,91 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ HPE Machine Learning Inference Software (MLIS/Aioli)
5
+
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
+
8
+ The version of the OpenAPI document: 1.2.0-dev8
9
+ Contact: community@determined-ai
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from pydantic import BaseModel, StrictStr
24
+ from pydantic import Field
25
+ try:
26
+ from typing import Self
27
+ except ImportError:
28
+ from typing_extensions import Self
29
+
30
+ class DeploymentPriority(BaseModel):
31
+ """
32
+ DeploymentPriority
33
+ """ # noqa: E501
34
+ description: Optional[StrictStr] = Field(default=None, description="Description of the priority class.")
35
+ name: Optional[StrictStr] = Field(default=None, description="The class name.")
36
+ __properties: ClassVar[List[str]] = ["description", "name"]
37
+
38
+ model_config = {
39
+ "populate_by_name": True,
40
+ "validate_assignment": True
41
+ }
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Self:
55
+ """Create an instance of DeploymentPriority from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ _dict = self.model_dump(
69
+ by_alias=True,
70
+ exclude={
71
+ },
72
+ exclude_none=True,
73
+ )
74
+ return _dict
75
+
76
+ @classmethod
77
+ def from_dict(cls, obj: Dict) -> Self:
78
+ """Create an instance of DeploymentPriority from a dict"""
79
+ if obj is None:
80
+ return None
81
+
82
+ if not isinstance(obj, dict):
83
+ return cls.model_validate(obj)
84
+
85
+ _obj = cls.model_validate({
86
+ "description": obj.get("description"),
87
+ "name": obj.get("name")
88
+ })
89
+ return _obj
90
+
91
+
@@ -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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
9
9
  Contact: community@determined-ai
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -39,7 +39,8 @@ class ModelResponse(BaseModel):
39
39
  metadata: Optional[Dict[str, StrictStr]] = Field(default=None, description="Other attributes of the model as available")
40
40
  format: Optional[StrictStr] = Field(default=None, description="The format of the model", alias="modelFormat")
41
41
  name: Optional[StrictStr] = Field(default=None, description="The name used in model specification")
42
- __properties: ClassVar[List[str]] = ["description", "displayName", "image", "latestVersionIdStr", "latestVersionSizeInBytes", "metadata", "modelFormat", "name"]
42
+ url: Optional[StrictStr] = Field(default=None, description="The URL where the model is stored.")
43
+ __properties: ClassVar[List[str]] = ["description", "displayName", "image", "latestVersionIdStr", "latestVersionSizeInBytes", "metadata", "modelFormat", "name", "url"]
43
44
 
44
45
  model_config = {
45
46
  "populate_by_name": True,
@@ -96,7 +97,8 @@ class ModelResponse(BaseModel):
96
97
  "latestVersionSizeInBytes": obj.get("latestVersionSizeInBytes"),
97
98
  "metadata": obj.get("metadata"),
98
99
  "modelFormat": obj.get("modelFormat"),
99
- "name": obj.get("name")
100
+ "name": obj.get("name"),
101
+ "url": obj.get("url")
100
102
  })
101
103
  return _obj
102
104
 
@@ -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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
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-dev6
8
+ The version of the OpenAPI document: 1.2.0-dev8
9
9
  Contact: community@determined-ai
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -6,7 +6,7 @@ with open("README.md", "r") as readme:
6
6
 
7
7
  setuptools.setup(
8
8
  name="aioli-sdk",
9
- version="1.2.0-dev6",
9
+ version="1.2.0-dev8",
10
10
  author="HPE AI Solutions",
11
11
  # author_email="hello@determined.ai",
12
12
  url="https://github.com/determined-ai/aioli",
File without changes
File without changes