9 lines
105 B
Python
9 lines
105 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
配置模块
|
|
"""
|
|
|
|
from .llm_config import LLMConfig
|
|
|
|
__all__ = ['LLMConfig']
|