forked from open-webui/open-webui
Use log.warning instead of log.debug
This commit is contained in:
parent
81c8717d75
commit
faa5884150
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ def transcribe(
|
||||||
try:
|
try:
|
||||||
model = WhisperModel(**whisper_kwargs)
|
model = WhisperModel(**whisper_kwargs)
|
||||||
except:
|
except:
|
||||||
log.debug(
|
log.warning(
|
||||||
"WhisperModel initialization failed, attempting download with local_files_only=False"
|
"WhisperModel initialization failed, attempting download with local_files_only=False"
|
||||||
)
|
)
|
||||||
whisper_kwargs["local_files_only"] = False
|
whisper_kwargs["local_files_only"] = False
|
||||||
|
|
Loading…
Reference in a new issue