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.
1 parent 1b5bbd1 commit d1e9608Copy full SHA for d1e9608
ads/aqua/model/model.py
@@ -828,8 +828,8 @@ def clear_model_details_cache(self, model_id):
828
829
@staticmethod
830
def list_valid_inference_containers():
831
- containers = list(AquaApp.get_container_config())
832
- family_values = [item.family_name for item in containers]
+ containers = AquaApp().get_container_config().to_dict().get("inference")
+ family_values = [item.family for item in containers]
833
return family_values
834
835
@telemetry(
0 commit comments