```
feat: 添加生命周期报告和AI规则管理功能 - 在Dockerfile中添加pillow依赖包用于图像处理 - 实现生命周期报告调度任务,支持日报和周报两种类型 - 新增TASK_RUN_LIFECYCLE任务常量和相关配置选项 - 扩展AI Agent服务以支持用户规则,并在分析时应用规则 - 添加AI用户规则创建、更新和查询接口 - 增加项目生命周期和财务需求分析技能 - 扩展现有模型以支持更完整的业务数据字段 - 实现飞书图片上传功能用于报告展示 ```
This commit is contained in:
@@ -69,6 +69,8 @@ class Settings(BaseSettings):
|
||||
scheduler_enabled: bool = False
|
||||
task_queue_enabled: bool = False
|
||||
task_queue_always_eager: bool = False
|
||||
lifecycle_pipeline_enabled: bool = False
|
||||
finance_needs_enabled: bool = False
|
||||
legacy_sync_enabled: bool = False
|
||||
celery_result_backend_url: str | None = None
|
||||
daily_brief_cron_hour: int = 9
|
||||
@@ -90,6 +92,7 @@ class Settings(BaseSettings):
|
||||
ai_memory_enabled: bool = True
|
||||
ai_memory_auto_write_enabled: bool = True
|
||||
ai_memory_recall_limit: int = 5
|
||||
ai_analysis_max_attempts: int = 3
|
||||
ai_memory_forbidden_keys: list[str] = Field(
|
||||
default_factory=lambda: [
|
||||
"authorization",
|
||||
|
||||
Reference in New Issue
Block a user