Files
life-echo/api/services/__init__.py
徐在坤 f426a9db5d refactor: 更新服务模块
- 更新ASR服务配置
- 更新服务模块导出
2026-01-18 15:57:54 +08:00

14 lines
205 B
Python

"""
服务模块
"""
from .asr_service import asr_service
from .tts_service import tts_service
from .llm_service import llm_service
__all__ = [
"asr_service",
"tts_service",
"llm_service",
]