diff --git a/pyproject.toml b/pyproject.toml index df3eae10..2e37df86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "veadk-python" -version = "0.5.14" +version = "0.5.15" description = "Volcengine agent development kit, integrations with Volcengine cloud services." readme = "README.md" requires-python = ">=3.10" diff --git a/veadk/auth/veauth/ark_veauth.py b/veadk/auth/veauth/ark_veauth.py index 9cd814ec..45ff2368 100644 --- a/veadk/auth/veauth/ark_veauth.py +++ b/veadk/auth/veauth/ark_veauth.py @@ -52,7 +52,6 @@ def get_ark_token(region: str = "cn-beijing") -> str: region=region, host=host, ) - logger.info(f"Successfully fetched ARK API Key list: {res}") try: first_api_key_id = res["Result"]["Items"][0]["Id"] logger.warning("By default, VeADK fetches the first API Key in the list.") diff --git a/veadk/version.py b/veadk/version.py index 23a3e4af..1fb12e2a 100644 --- a/veadk/version.py +++ b/veadk/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = "0.5.14" +VERSION = "0.5.15"