cognee/cognee/modules/engine/models/Timestamp.py
2025-08-27 18:04:58 +02:00

13 lines
340 B
Python

from pydantic import Field
from cognee.infrastructure.engine import DataPoint
class Timestamp(DataPoint):
time_at: int = Field(...)
year: int = Field(...)
month: int = Field(...)
day: int = Field(...)
hour: int = Field(...)
minute: int = Field(...)
second: int = Field(...)
timestamp_str: str = Field(...)