diff options
| -rw-r--r-- | client/stt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/stt.py b/client/stt.py index a6532e8..2157053 100644 --- a/client/stt.py +++ b/client/stt.py @@ -29,7 +29,7 @@ class AbstractSTTEngine(object): return True @abstractmethod - def transcribe(self, audio_file_path, PERSONA_ONLY=False, MUSIC=False): + def transcribe(self, audio_file_path, mode=TranscriptionMode.NORMAL): pass class PocketSphinxSTT(AbstractSTTEngine): |
