mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-08 22:38:05 -05: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]
|