Files
AiVideo/engine/adapters/image/base.py
2026-03-25 19:35:37 +08:00

10 lines
197 B
Python

from __future__ import annotations
from pathlib import Path
class BaseImageGen:
def generate(self, prompt: dict[str, str], output_dir: str | Path) -> str:
raise NotImplementedError