Mislav Lukach a9f26a13a6
feat(chat): support file upload (#8945)
Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com>
2025-06-18 20:13:07 +04:00

13 lines
184 B
Python

from pydantic import (
BaseModel,
)
class POSTUploadFilesModel(BaseModel):
"""
Upload files response model
"""
file_urls: list[str]
skipped_files: list[str]