Merge pull request #6382 from open-webui/dev

fix
This commit is contained in:
Timothy Jaeryang Baek
2024-10-24 14:57:25 -07:00
committed by GitHub

View File

@@ -44,8 +44,8 @@ class FileModel(BaseModel):
data: Optional[dict] = None
meta: Optional[dict] = None
created_at: int # timestamp in epoch
updated_at: int # timestamp in epoch
created_at: Optional[int] # timestamp in epoch
updated_at: Optional[int] # timestamp in epoch
####################