from pydantic import BaseModel from typing import List class TaskStatusParam(BaseModel): task_id: str class DecodeParam(BaseModel): channel_content_id: str video_url: str title: str class DecodeListParam(BaseModel): video_list: List[DecodeParam]