We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b60cab7 + 95c5a5d commit ba43d62Copy full SHA for ba43d62
ads/aqua/modeldeployment/deployment.py
@@ -851,6 +851,13 @@ def list(self, **kwargs) -> List["AquaDeployment"]:
851
)
852
853
if oci_aqua:
854
+ # skipping the AQUA model deployments that are created from model group
855
+ # TODO: remove this checker after AQUA deployment is integrated with model group
856
+ aqua_model_id = model_deployment.freeform_tags.get(
857
+ Tags.AQUA_MODEL_ID_TAG, UNKNOWN
858
+ )
859
+ if "datasciencemodelgroup" in aqua_model_id:
860
+ continue
861
results.append(
862
AquaDeployment.from_oci_model_deployment(
863
model_deployment, self.region
0 commit comments