forked from extern/easydiffusion
Reload the model if the path exists in the request but the model has been unloaded
This commit is contained in:
parent
6a95c602b1
commit
9a528496a3
@ -148,7 +148,7 @@ def reload_models_if_necessary(context: Context, models_data: ModelsData, models
|
|||||||
models_to_reload = {
|
models_to_reload = {
|
||||||
model_type: path
|
model_type: path
|
||||||
for model_type, path in models_data.model_paths.items()
|
for model_type, path in models_data.model_paths.items()
|
||||||
if context.model_paths.get(model_type) != path
|
if context.model_paths.get(model_type) != path or (path is not None and context.models.get(model_type) is None)
|
||||||
}
|
}
|
||||||
|
|
||||||
if models_data.model_paths.get("codeformer"):
|
if models_data.model_paths.get("codeformer"):
|
||||||
|
Loading…
Reference in New Issue
Block a user