Files
xiaoxia-saas/apps/api/app/schemas/upload.py
T
Xiaoxia AI ba159549e2
Tests / test (push) Failing after 30s
Tests / lint (push) Failing after 30s
feat: integrate MinIO for real file storage
2026-06-15 18:19:12 +08:00

8 lines
191 B
Python

from pydantic import BaseModel, Field
class UploadAssetResponse(BaseModel):
storage_key: str
ingest_job_id: str
url: str = Field(..., description="Public URL of uploaded file")