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
commit 68916f7ec4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
####################