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