Spaces:
Runtime error
Runtime error
File size: 161 Bytes
b09fc03 |
1 2 3 4 5 6 7 |
from pydantic import BaseModel
from typing import Optional
class GenerateResponse(BaseModel):
video_url: str
gif_url: Optional[str] = None
seed: int |