Skip to content

Commit 8b5129c

Browse files
Merge branch 'switch_cache_delete_default_option' of github.com:oracle/accelerated-data-science into switch_cache_delete_default_option
2 parents a11f503 + d2bc878 commit 8b5129c

21 files changed

+1827
-141
lines changed

THIRD_PARTY_LICENSES.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ fsspec
9696
* Source code: https://github.com/intake/filesystem_spec
9797
* Project home: https://github.com/intake/filesystem_spec
9898

99+
httpx
100+
* Copyright (c) 2021 ProjectDiscovery, Inc.
101+
* License: MIT License
102+
* Source code: https://github.com/projectdiscovery/httpx
103+
* Project home: https://github.com/projectdiscovery/httpx
104+
99105
geopandas
100106
* Copyright (c) 2013-2016, GeoPandas developers
101107
* License: BSD 3-Clause "New" or "Revised" License
@@ -391,6 +397,12 @@ tabulate
391397
* Source code: https://github.com/astanin/python-tabulate
392398
* Project home: https://github.com/astanin/python-tabulate
393399

400+
tenacity
401+
* No listed copyright holder
402+
* License: Apache-2.0 license
403+
* Source code: https://github.com/jd/tenacity
404+
* Project home: https://github.com/jd/tenacity
405+
394406
tensorflow
395407
* Copyright (c) 2023 Google, Inc.
396408
* License: Apache-2.0 license

ads/aqua/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
import os
77
from logging import getLogger
88

9-
from ads import set_auth
9+
from ads import logger, set_auth
10+
from ads.aqua.client.client import AsyncClient, Client
1011
from ads.aqua.common.utils import fetch_service_compartment
1112
from ads.config import OCI_RESOURCE_PRINCIPAL_VERSION
1213

ads/aqua/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2024 Oracle and/or its affiliates.
2+
# Copyright (c) 2024, 2025 Oracle and/or its affiliates.
33
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
44

55
import json
@@ -298,7 +298,7 @@ def get_config(self, model_id: str, config_file_name: str) -> Dict:
298298
config = {}
299299
artifact_path = get_artifact_path(oci_model.custom_metadata_list)
300300
if not artifact_path:
301-
logger.error(
301+
logger.debug(
302302
f"Failed to get artifact path from custom metadata for the model: {model_id}"
303303
)
304304
return config

ads/aqua/client/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env python
2+
# Copyright (c) 2025 Oracle and/or its affiliates.
3+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/

0 commit comments

Comments
 (0)