Spaces:
Running
Running
from pydantic import BaseModel | |
from typing import Optional | |
class GenerateResponse(BaseModel): | |
video_url: str | |
gif_url: Optional[str] = None | |
seed: int |