[fix]Return the "statement" attribute (#76)

* [fix]Return the "statement" attribute

* [fix]Trigger the forgetting cycle using the end_user_id
This commit is contained in:
乐力齐
2026-01-12 18:47:40 +08:00
committed by GitHub
parent 17318d8205
commit d477520b67
3 changed files with 10 additions and 8 deletions

View File

@@ -409,7 +409,7 @@ class ForgettingTriggerRequest(BaseModel):
"""手动触发遗忘周期请求模型"""
model_config = ConfigDict(populate_by_name=True, extra="forbid")
group_id: str = Field(..., description="组ID即终端用户ID必填")
end_user_id: str = Field(..., description="组ID即终端用户ID必填")
max_merge_batch_size: int = Field(100, ge=1, le=1000, description="单次最大融合节点对数默认100")
min_days_since_access: int = Field(30, ge=1, le=365, description="最小未访问天数默认30天")