__init__.py 534 B

123456789101112131415161718192021
  1. # !/usr/bin/env python3
  2. # -*- coding: UTF-8 -*-
  3. ################################################################################
  4. #
  5. # Copyright (c) 2023 Baidu.com, Inc. All Rights Reserved
  6. #
  7. ################################################################################
  8. """
  9. Authors: xiangyiqing(xiangyiqing@baidu.com)
  10. Date: 2023/07/24
  11. """
  12. from aistudio_sdk.constant.version import VERSION
  13. from aistudio_sdk.log import get_level
  14. from aistudio_sdk import hub
  15. log_level = get_level()
  16. __version__ = VERSION
  17. __all__ = [
  18. "hub",
  19. ]