From 2485c3f5f0c2b25572213fe7638467859679c8d2 Mon Sep 17 00:00:00 2001 From: chinu0609 Date: Thu, 11 Dec 2025 12:48:06 +0530 Subject: [PATCH] fix: only document level deletion --- cognee/infrastructure/engine/models/DataPoint.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cognee/infrastructure/engine/models/DataPoint.py b/cognee/infrastructure/engine/models/DataPoint.py index 3178713c8..812380eaa 100644 --- a/cognee/infrastructure/engine/models/DataPoint.py +++ b/cognee/infrastructure/engine/models/DataPoint.py @@ -43,9 +43,6 @@ class DataPoint(BaseModel): updated_at: int = Field( default_factory=lambda: int(datetime.now(timezone.utc).timestamp() * 1000) ) - last_accessed_at: int = Field( - default_factory=lambda: int(datetime.now(timezone.utc).timestamp() * 1000) - ) ontology_valid: bool = False version: int = 1 # Default version topological_rank: Optional[int] = 0