Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/aimanager/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
Release History
===============

1.2.1b1
1.4.0
+++++++
* Mark ``az aimanager`` command groups as preview.

1.3.0
+++++++
* Add ``az aimanager model`` commands (``show``, ``list`` and ``calculate-cost``) to browse the
regional AI model catalog and estimate the cost of deploying a model.
Expand Down
6 changes: 3 additions & 3 deletions src/aimanager/azext_aimanager/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def load_command_table(self, _):
)

# aimanager command group
with self.command_group("aimanager", ai_managers_sdk, client_factory=cf_ai_managers) as g:
with self.command_group("aimanager", ai_managers_sdk, client_factory=cf_ai_managers, is_preview=True) as g:
g.custom_command("create", "create_aimanager", supports_no_wait=True)
g.custom_command("update", "update_aimanager", supports_no_wait=True)
g.custom_show_command("show", "show_aimanager")
Expand All @@ -55,7 +55,7 @@ def load_command_table(self, _):
g.wait_command("wait")

# aimanager namespace command group
with self.command_group("aimanager namespace", ai_manager_namespaces_sdk, client_factory=cf_ai_manager_namespaces) as g:
with self.command_group("aimanager namespace", ai_manager_namespaces_sdk, client_factory=cf_ai_manager_namespaces, is_preview=True) as g:
g.custom_command("add", "add_aimanager_namespace", supports_no_wait=True)
g.custom_command("update", "update_aimanager_namespace", supports_no_wait=True)
g.custom_show_command("show", "show_aimanager_namespace")
Expand Down Expand Up @@ -83,7 +83,7 @@ def load_command_table(self, _):

# aimanager namespace modeldeployment command group
with self.command_group("aimanager namespace modeldeployment", model_deployments_sdk,
client_factory=cf_model_deployments) as g:
client_factory=cf_model_deployments, is_preview=True) as g:
g.custom_command("add", "add_modeldeployment", supports_no_wait=True)
g.custom_command("update", "update_modeldeployment", supports_no_wait=True)
g.custom_show_command("show", "show_modeldeployment")
Expand Down
2 changes: 1 addition & 1 deletion src/aimanager/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from distutils import log as logger
logger.warn("Wheel is not available, disabling bdist_wheel hook")

VERSION = '1.2.1b1'
VERSION = '1.4.0'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading