Skip to content

Commit 7f84c36

Browse files
committed
removed prints
1 parent 61fd464 commit 7f84c36

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

ads/aqua/client/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -592,9 +592,7 @@ def list_models(self) -> Union[Dict[str, Any], Iterator[Mapping[str, Any]]]:
592592
"""
593593
# headers = {"Content-Type", "application/json"}
594594
response = self._client.get(self.endpoint)
595-
logger.debug(f"Response JSON: {response}")
596595
json_response = response.json()
597-
print(json_response)
598596
return json_response
599597

600598

ads/aqua/extension/deployment_handler.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,13 +395,10 @@ def get(self, model_deployment_id):
395395
self.set_header("Content-Type", "application/json")
396396

397397
model_deployment = AquaDeploymentApp().get(model_deployment_id)
398-
399398
endpoint = model_deployment.endpoint + "/predict/v1/models"
400-
print(endpoint)
401399
aqua_client = Client(endpoint=endpoint)
402400
try:
403401
list_model_result = aqua_client.list_models()
404-
print(list_model_result)
405402
return self.finish(list_model_result)
406403
except Exception as ex:
407404
raise HTTPError(500, str(ex))

0 commit comments

Comments
 (0)