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