from abc import ABC, abstractmethod class AudioTranscriptionProvider(ABC): @abstractmethod def transcribe(self, audio_path_or_url: str) -> str: """ Transcrit un fichier audio local ou distant (mp3). """ pass