🚧[WIP/TEST] Model : 文字起こし起動時にエンジンを選択するように変更

This commit is contained in:
misyaguziya
2024-02-13 23:20:14 +09:00
parent 5a0c6392e0
commit 07b3c92f1b
2 changed files with 8 additions and 4 deletions

View File

@@ -341,6 +341,7 @@ class Model:
source=self.mic_audio_recorder.source,
phrase_timeout=phase_timeout,
max_phrases=config.INPUT_MIC_MAX_PHRASES,
transcription_engine=config.SELECTED_TRANSCRIPTION_ENGINE,
root=config.PATH_LOCAL,
whisper_weight_type=config.WHISPER_WEIGHT_TYPE,
)
@@ -443,6 +444,7 @@ class Model:
source=self.speaker_audio_recorder.source,
phrase_timeout=phase_timeout,
max_phrases=config.INPUT_SPEAKER_MAX_PHRASES,
transcription_engine=config.SELECTED_TRANSCRIPTION_ENGINE,
root=config.PATH_LOCAL,
whisper_weight_type=config.WHISPER_WEIGHT_TYPE,
)