9 lines
160 B
Python
9 lines
160 B
Python
# tools/llm/__init__.py
|
|
"""
|
|
大语言模型工具模块初始化文件
|
|
"""
|
|
from .huoshan_langchain import HuoshanChatModel
|
|
|
|
__all__ = [
|
|
'HuoshanChatModel'
|
|
] |