10 lines
178 B
Python
10 lines
178 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
配置模块
|
|
"""
|
|
|
|
from .llm_config import LLMConfig
|
|
from .app_config import AppConfig, app_config
|
|
|
|
__all__ = ['LLMConfig', 'AppConfig', 'app_config']
|