10 lines
180 B
Python
10 lines
180 B
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
class BaseTTS:
|
|
def generate(self, text: str, output_path: str | Path) -> str:
|
|
raise NotImplementedError
|
|
|