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 5d7605b + bde6363 commit 77d9c4eCopy full SHA for 77d9c4e
ads/aqua/modeldeployment/deployment.py
@@ -847,6 +847,13 @@ def list(self, **kwargs) -> List["AquaDeployment"]:
847
)
848
849
if oci_aqua:
850
+ # skipping the AQUA model deployments that are created from model group
851
+ # TODO: remove this checker after AQUA deployment is integrated with model group
852
+ aqua_model_id = model_deployment.freeform_tags.get(
853
+ Tags.AQUA_MODEL_ID_TAG, UNKNOWN
854
+ )
855
+ if "datasciencemodelgroup" in aqua_model_id:
856
+ continue
857
results.append(
858
AquaDeployment.from_oci_model_deployment(
859
model_deployment, self.region
0 commit comments