mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
11 lines
174 B
Python
11 lines
174 B
Python
from pydantic import (
|
|
BaseModel,
|
|
)
|
|
|
|
|
|
class POSTUploadFilesModel(BaseModel):
|
|
"""Upload files response model"""
|
|
|
|
file_urls: list[str]
|
|
skipped_files: list[str]
|