1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-03 07:26:31 +08:00

allow configurable path for diffusers models

This commit is contained in:
sALTaccount
2023-04-06 21:45:08 -07:00
parent 42fd67b5cb
commit 72a8973bd5
2 changed files with 2 additions and 1 deletions

View File

@@ -224,7 +224,7 @@ class DiffusersLoader:
@classmethod
def INPUT_TYPES(cls):
paths = []
search_path = os.path.join(folder_paths.models_dir, 'diffusers')
search_path = folder_paths.get_folder_paths("diffusers")[0]
if os.path.exists(search_path):
paths = next(os.walk(search_path))[1]
return {"required": {"model_path": (paths,), }}