mirror of
https://github.com/ParisNeo/lollms.git
synced 2025-02-19 00:51:26 +00:00
9 lines
347 B
Python
9 lines
347 B
Python
from abc import ABC, abstractmethod
|
|
from typing import List, Optional
|
|
|
|
class LollmsTTV(ABC):
|
|
@abstractmethod
|
|
def generate_video(self, prompt: str, num_frames: int = 49, fps: int = 8,
|
|
num_inference_steps: int = 50, guidance_scale: float = 6.0,
|
|
seed: Optional[int] = None) -> str:
|
|
pass |