Luxx/alcor/services/__init__.py

12 lines
261 B
Python

"""服务层模块"""
from alcor.services.llm_client import LLMClient, llm_client, LLMResponse
from alcor.services.chat import ChatService, chat_service
__all__ = [
"LLMClient",
"llm_client",
"LLMResponse",
"ChatService",
"chat_service"
]