feat(memory): enrich perceptual memory timeline content

This commit is contained in:
mengyonghao
2026-01-12 21:14:12 +08:00
parent c1fba39496
commit 38253fa49a
2 changed files with 9 additions and 0 deletions

View File

@@ -44,6 +44,9 @@ class PerceptualMemoryItem(BaseModel):
summary: Optional[str] = Field(None, description="summary")
storage_type: FileStorageType = Field(..., description="Storage type for file")
created_time: int = Field(..., description="create time")
topic: str = Field(..., description="topic")
domain: str = Field(..., description="domain")
keywords: list[str] = Field(..., description="keywords")
class Config:
from_attributes = True