__init__.py 251 B

1234567891011121314
  1. # coding=utf-8
  2. """
  3. @project: MaxKB
  4. @Author:虎虎
  5. @file: __init__.py
  6. @date:2025/11/5 14:50
  7. @desc:
  8. """
  9. import os
  10. if os.environ.get('SERVER_NAME', 'web') == 'local_model':
  11. from .model import *
  12. else:
  13. from .web import *