Skip to content

Commit c29393b

Browse files
committed
changed default model for media processor
1 parent d31374c commit c29393b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/mmore/process/processors/media_processor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ def load_models(
5050
self.config.custom_config.get("fast_model", "openai/whisper-tiny")
5151
if fast_mode
5252
else self.config.custom_config.get(
53-
"normal_model", "openai/whisper-large-v3"
53+
"normal_model", "openai/whisper-large-v3-turbo"
5454
)
5555
)
5656
else:
5757
model_name = (
58-
"openai/whisper-tiny" if fast_mode else "openai/whisper-large-v3"
58+
"openai/whisper-tiny" if fast_mode else "openai/whisper-large-v3-turbo"
5959
)
6060

6161
try:

0 commit comments

Comments
 (0)