|
elif args.language == "ru": |
|
# Prefer GigaAM via onnx-asr |
|
try: |
|
from .sherpa_handler import SherpaModel |
|
|
|
stt_library = SttLibrary.ONNX_ASR |
|
except ImportError: |
|
stt_library = SttLibrary.FASTER_WHISPER |
I think the import in this part of the code should be replaced with:
from .onnx_asr_handler import OnnxAsrModel
wyoming-faster-whisper/wyoming_faster_whisper/__main__.py
Lines 121 to 128 in da50c3c
I think the import in this part of the code should be replaced with: