We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3839f9 commit 314d819Copy full SHA for 314d819
ads/aqua/extension/deployment_handler.py
@@ -51,6 +51,7 @@ def get(self, id: Union[str, List[str]] = None):
51
f"Invalid request format for {self.request.path}. "
52
"Expected a single model ID or a comma-separated list of model IDs.",
53
)
54
+ id = id.replace(" ", "")
55
return self.get_deployment_config(
56
model_id=id.split(",") if "," in id else id
57
0 commit comments