diff --git a/cognee/shared/data_models.py b/cognee/shared/data_models.py index e0e90e322..fb9386dcf 100644 --- a/cognee/shared/data_models.py +++ b/cognee/shared/data_models.py @@ -46,9 +46,6 @@ else: name: str type: str description: str - properties: Optional[Dict[str, Any]] = Field( - None, description="A dictionary of properties associated with the node." - ) class Edge(BaseModel): """Edge in a knowledge graph.""" @@ -56,9 +53,6 @@ else: source_node_id: str target_node_id: str relationship_name: str - properties: Optional[Dict[str, Any]] = Field( - None, description="A dictionary of properties associated with the edge." - ) class KnowledgeGraph(BaseModel): """Knowledge graph."""