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