Files
encoach_backend/app/services/abc/third_parties/stt.py
2024-10-01 19:31:01 +01:00

9 lines
160 B
Python

from abc import ABC, abstractmethod
class ISpeechToTextService(ABC):
@abstractmethod
async def speech_to_text(self, file_path):
pass