Files
SillyTavern_replica/backend/services/__init__.py

10 lines
293 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
业务服务层
包含项目的核心业务逻辑,协调 Models、Utils 和 LLM 组件。
"""
# 注意:不在这里自动导入模块,避免循环依赖和缺失依赖问题
# 需要使用时请显式导入例如from services.preset_service import PresetService
__all__ = []