- 新增Redis服务模块用于会话状态存储和缓存 - 集成Celery用于后台任务处理 - 更新Docker Compose配置以支持开发环境 - 优化API以支持异步调用和Redis会话存储 - 更新文档以反映新的开发环境配置和使用方法
16 lines
267 B
Python
16 lines
267 B
Python
"""
|
|
服务模块
|
|
"""
|
|
from .asr_service import asr_service
|
|
from .tts_service import tts_service
|
|
from .llm_service import llm_service
|
|
from .redis_service import redis_service
|
|
|
|
__all__ = [
|
|
"asr_service",
|
|
"tts_service",
|
|
"llm_service",
|
|
"redis_service",
|
|
]
|
|
|