Files
encoach_backend/app/services/abc/third_parties/stt.py
Carlos Mesquita 3cf9fa5cba Async release
2024-07-23 08:40:35 +01:00

9 lines
152 B
Python

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