File size: 632 Bytes
			
			| 1c1e321 8a4825d 1c1e321 abb1a7f 8a4825d 1859d10 8a4825d 1c1e321 abb1a7f 8a4825d 1c1e321 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | from typing import List, Optional
from pydantic import BaseModel, HttpUrl
from pydantic import validator
class LinkInfo(BaseModel):
    file_name: str
    link: HttpUrl
class Assets(BaseModel):
    type: str
    sequence: List[dict]
    @validator("type")
    def valid_type(cls, v):
        if v not in ["video", "audio", "text", "image"]:
            raise ValueError("Invalid asset type")
        return v
class EditorRequest(BaseModel):
    links: Optional[List[LinkInfo]]  # List of LinkInfo objects
    assets: List[Assets]
class TaskInfo(BaseModel):
    task_id: str
    progress: int
    completed_tasks: List[str]
 |