18 lines
448 B
Python
18 lines
448 B
Python
"""
|
||
工具类包
|
||
|
||
提供通用的工具函数和辅助类,如文件操作、LLM 调用封装等。
|
||
"""
|
||
from .file_utils import get_all_roles_and_chats, read_jsonl_file, write_jsonl_file
|
||
from .llm_client import get_llm, get_fast_llm, get_creative_llm, get_streaming_llm
|
||
|
||
__all__ = [
|
||
'get_all_roles_and_chats',
|
||
'read_jsonl_file',
|
||
'write_jsonl_file',
|
||
'get_llm',
|
||
'get_fast_llm',
|
||
'get_creative_llm',
|
||
'get_streaming_llm',
|
||
]
|