Files
encoach_backend/ielts_be/services/abc/third_parties/stt.py

9 lines
162 B
Python

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