5 lines
183 B
Python
5 lines
183 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
|
||
|
|
class STTProvider(ABC):
|
||
|
|
@abstractmethod
|
||
|
|
async def transcribe(self, audio_bytes: bytes, fmt: str, language: str | None = None) -> str: ...
|