Update cognee/infrastructure/engine/models/DataPoint.py
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
parent
2bfc657e90
commit
d5243b47e0
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ class DataPoint(BaseModel):
|
|||
id: UUID = Field(default_factory=uuid4)
|
||||
created_at: int = Field(default_factory=lambda: int(datetime.now(timezone.utc).timestamp() * 1000))
|
||||
updated_at: int = Field(default_factory=lambda: int(datetime.now(timezone.utc).timestamp() * 1000))
|
||||
version: str = "1" # Default version
|
||||
version: int = 1 # Default version
|
||||
type: Optional[str] = "text" # "text", "file", "image", "video"
|
||||
topological_rank: Optional[int] = 0
|
||||
_metadata: Optional[MetaData] = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue