Merge pull request #1166 from JeLuF/not_yet

Don't save model_path if initial load fails
This commit is contained in:
cmdr2 2023-04-18 16:34:12 +05:30 committed by GitHub
commit 7fc2ed28b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,6 +49,7 @@ def load_default_models(context: Context):
except Exception as e:
log.error(f"[red]Error while loading {model_type} model: {context.model_paths[model_type]}[/red]")
log.exception(e)
del context.model_paths[model_type]
def unload_all(context: Context):
for model_type in KNOWN_MODEL_TYPES: