mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2026-02-10 13:12:35 +08:00
Merge branch 'ltdrdata:main' into main
This commit is contained in:
commit
295750071a
2
.gitignore
vendored
2
.gitignore
vendored
@ -14,4 +14,4 @@ comfyworkflows_sharekey
|
||||
github-stats-cache.json
|
||||
pip_overrides.json
|
||||
*.json
|
||||
|
||||
check2.sh
|
||||
|
||||
@ -109,7 +109,7 @@ class Ctx:
|
||||
install_script_path = os.path.join(repo_path, 'install.py')
|
||||
|
||||
if os.path.exists(requirements_path):
|
||||
with (open(requirements_path, 'r', encoding="UTF-8", errors="ignore") as file):
|
||||
with open(requirements_path, 'r', encoding="UTF-8", errors="ignore") as file:
|
||||
for line in file:
|
||||
package_name = core.remap_pip_package(line.strip())
|
||||
if package_name and not core.is_installed(package_name):
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
4421
github-stats.json
4421
github-stats.json
File diff suppressed because it is too large
Load Diff
@ -23,7 +23,7 @@ sys.path.append(glob_path)
|
||||
import cm_global
|
||||
from manager_util import *
|
||||
|
||||
version = [2, 50, 1]
|
||||
version = [2, 50, 3]
|
||||
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
||||
|
||||
|
||||
@ -410,6 +410,14 @@ def execute_install_script(url, repo_path, lazy_mode=False, instant_execution=Fa
|
||||
print("Install: pip packages")
|
||||
with open(requirements_path, "r") as requirements_file:
|
||||
for line in requirements_file:
|
||||
#handle comments
|
||||
if '#' in line:
|
||||
if line.strip()[0] == '#':
|
||||
print("Line is comment...skipping")
|
||||
continue
|
||||
else:
|
||||
line = line.split('#')[0].strip()
|
||||
|
||||
package_name = remap_pip_package(line.strip())
|
||||
|
||||
if package_name and not package_name.startswith('#'):
|
||||
|
||||
@ -240,7 +240,7 @@ def get_model_dir(data):
|
||||
if data['save_path'] != 'default':
|
||||
if '..' in data['save_path'] or data['save_path'].startswith('/'):
|
||||
print(f"[WARN] '{data['save_path']}' is not allowed path. So it will be saved into 'models/etc'.")
|
||||
base_model = "etc"
|
||||
base_model = os.path.join(folder_paths.models_dir, "etc")
|
||||
else:
|
||||
if data['save_path'].startswith("custom_nodes"):
|
||||
base_model = os.path.join(core.comfy_path, data['save_path'])
|
||||
@ -279,7 +279,7 @@ def get_model_dir(data):
|
||||
print(f"[ComfyUI-Manager] Your ComfyUI is outdated version.")
|
||||
base_model = folder_paths.folder_names_and_paths["unet"][0][0] # outdated version
|
||||
else:
|
||||
base_model = "etc"
|
||||
base_model = os.path.join(folder_paths.models_dir, "etc")
|
||||
|
||||
return base_model
|
||||
|
||||
|
||||
546
model-list.json
546
model-list.json
@ -594,40 +594,255 @@
|
||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_offset_example-lora_1.0.safetensors",
|
||||
"size": "49.6MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "SDXL Lightning LoRA (2step)",
|
||||
"name": "SDXL Lightning LoRA (2steps)",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/SDXL-Lightning",
|
||||
"description": "SDXL Lightning LoRA (2step)",
|
||||
"description": "SDXL Lightning LoRA (2steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/SDXL-Lightning",
|
||||
"filename": "sdxl_lightning_2step_lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/SDXL-Lightning/resolve/main/sdxl_lightning_2step_lora.safetensors",
|
||||
"size": "393.9MB"
|
||||
},
|
||||
{
|
||||
"name": "SDXL Lightning LoRA (4step)",
|
||||
"name": "SDXL Lightning LoRA (4steps)",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/SDXL-Lightning",
|
||||
"description": "SDXL Lightning LoRA (4step)",
|
||||
"description": "SDXL Lightning LoRA (4steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/SDXL-Lightning",
|
||||
"filename": "sdxl_lightning_4step_lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/SDXL-Lightning/resolve/main/sdxl_lightning_4step_lora.safetensors",
|
||||
"size": "393.9MB"
|
||||
},
|
||||
{
|
||||
"name": "SDXL Lightning LoRA (8step)",
|
||||
"name": "SDXL Lightning LoRA (8steps)",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/SDXL-Lightning",
|
||||
"description": "SDXL Lightning LoRA (8tep)",
|
||||
"description": "SDXL Lightning LoRA (8steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/SDXL-Lightning",
|
||||
"filename": "sdxl_lightning_8step_lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/SDXL-Lightning/resolve/main/sdxl_lightning_8step_lora.safetensors",
|
||||
"size": "393.9MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "DMD2 LoRA (4steps)",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/DMD2",
|
||||
"description": "DMD2 LoRA (4steps)",
|
||||
"reference": "https://huggingface.co/tianweiy/DMD2",
|
||||
"filename": "dmd2_sdxl_4step_lora.safetensors",
|
||||
"url": "https://huggingface.co/tianweiy/DMD2/resolve/main/dmd2_sdxl_4step_lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "DMD2 LoRA (4steps/fp16)",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/DMD2",
|
||||
"description": "DMD2 LoRA (4steps/fp16)",
|
||||
"reference": "https://huggingface.co/tianweiy/DMD2",
|
||||
"filename": "dmd2_sdxl_4step_lora_fp16.safetensors",
|
||||
"url": "https://huggingface.co/tianweiy/DMD2/resolve/main/dmd2_sdxl_4step_lora_fp16.safetensors",
|
||||
"size": "394MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (8steps) - FLUX.1 [Dev]",
|
||||
"type": "lora",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "loras/HyperSD/FLUX.1",
|
||||
"description": "Hyper-SD LoRA (8steps) - FLUX.1 [Dev]",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-FLUX.1-dev-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-FLUX.1-dev-8steps-lora.safetensors",
|
||||
"size": "1.39GB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (16steps) - FLUX.1 [Dev]",
|
||||
"type": "lora",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "loras/HyperSD/FLUX.1",
|
||||
"description": "Hyper-SD LoRA (16steps) - FLUX.1 [Dev]",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-FLUX.1-dev-16steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-FLUX.1-dev-16steps-lora.safetensors",
|
||||
"size": "1.39GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (1step) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (1step) - SD1.5",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-1step-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-1step-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (2steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (2steps) - SD1.5",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-2steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-2steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (4steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (4steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-4steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-4steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (8steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (8steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-8steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD CFG LoRA (8steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-8steps-CFG-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (12steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD CFG LoRA (12steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-12steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-12steps-CFG-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (1step) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (1step) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-1step-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-1step-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (2steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (2steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-2steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-2steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (4steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (4steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-4steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-4steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (8steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (8steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-8steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD CFG LoRA (8steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-8steps-CFG-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (12steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD CFG LoRA (12steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-12steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-12steps-CFG-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (4steps) - SD3",
|
||||
"type": "lora",
|
||||
"base": "SD3",
|
||||
"save_path": "loras/HyperSD/SD3",
|
||||
"description": "Hyper-SD CFG LoRA (4steps) - SD3",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD3-4steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD3-4steps-CFG-lora.safetensors",
|
||||
"size": "472MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SD3",
|
||||
"type": "lora",
|
||||
"base": "SD3",
|
||||
"save_path": "loras/HyperSD/SD3",
|
||||
"description": "Hyper-SD CFG LoRA (8steps) - SD3",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD3-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD3-8steps-CFG-lora.safetensors",
|
||||
"size": "472MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (16steps) - SD3",
|
||||
"type": "lora",
|
||||
"base": "SD3",
|
||||
"save_path": "loras/HyperSD/SD3",
|
||||
"description": "Hyper-SD CFG LoRA (16steps) - SD3",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD3-16steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD3-16steps-CFG-lora.safetensors",
|
||||
"size": "472MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "google-t5/t5-base",
|
||||
"type": "clip",
|
||||
@ -978,7 +1193,7 @@
|
||||
{
|
||||
"name": "LCM LoRA SDXL",
|
||||
"type": "lora",
|
||||
"base": "SSD-1B",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/lcm/SDXL",
|
||||
"description": "Latent Consistency LoRA for SDXL",
|
||||
"reference": "https://huggingface.co/latent-consistency/lcm-lora-sdxl",
|
||||
@ -1121,7 +1336,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (lineart) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for lineart",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
||||
@ -1132,7 +1347,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (canny) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for canny",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
||||
@ -1143,7 +1358,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (depth-zoe) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
||||
@ -1154,7 +1369,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (depth-midas) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
||||
@ -1165,7 +1380,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (sketch) FP16",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for sketch",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
||||
@ -1176,7 +1391,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (lineart)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for lineart",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-lineart-sdxl-1.0",
|
||||
@ -1187,7 +1402,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (canny)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for canny",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-canny-sdxl-1.0",
|
||||
@ -1198,7 +1413,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (depth-zoe)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-zoe",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-zoe-sdxl-1.0",
|
||||
@ -1209,7 +1424,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (depth-midas)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for depth-midas",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-depth-midas-sdxl-1.0",
|
||||
@ -1220,7 +1435,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (sketch)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for sketch",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-sketch-sdxl-1.0",
|
||||
@ -1231,7 +1446,7 @@
|
||||
{
|
||||
"name": "T2I-Adapter XL (openpose)",
|
||||
"type": "T2I-Adapter",
|
||||
"base": "SDXL 1.0",
|
||||
"base": "SDXL",
|
||||
"save_path": "default",
|
||||
"description": "ControlNet T2I-Adapter XL for openpose",
|
||||
"reference": "https://huggingface.co/TencentARC/t2i-adapter-openpose-sdxl-1.0",
|
||||
@ -1264,7 +1479,7 @@
|
||||
{
|
||||
"name": "CLIPVision model (stabilityai/clip_vision_g)",
|
||||
"type": "clip_vision",
|
||||
"base": "vit-g",
|
||||
"base": "ViT-G",
|
||||
"save_path": "clip_vision",
|
||||
"description": "clip_g vision model",
|
||||
"reference": "https://huggingface.co/stabilityai/control-lora",
|
||||
@ -2287,7 +2502,7 @@
|
||||
{
|
||||
"name": "ip-adapter-faceid_sdxl.bin",
|
||||
"type": "IP-Adapter",
|
||||
"base": "SD1.5",
|
||||
"base": "SDXL",
|
||||
"save_path": "ipadapter",
|
||||
"description": "IP-Adapter-FaceID Model (SDXL) [ipadapter]",
|
||||
"reference": "https://huggingface.co/h94/IP-Adapter-FaceID",
|
||||
@ -2298,7 +2513,7 @@
|
||||
{
|
||||
"name": "ip-adapter-faceid-plusv2_sdxl.bin",
|
||||
"type": "IP-Adapter",
|
||||
"base": "SD1.5",
|
||||
"base": "SDXL",
|
||||
"save_path": "ipadapter",
|
||||
"description": "IP-Adapter-FaceID Plus Model (SDXL) [ipadapter]",
|
||||
"reference": "https://huggingface.co/h94/IP-Adapter-FaceID",
|
||||
@ -3209,6 +3424,29 @@
|
||||
"size": "10.5GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "InstantX/FLUX.1-dev Controlnet (Union)",
|
||||
"type": "controlnet",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "controlnet/FLUX.1/InstantX-FLUX1-Dev-Union",
|
||||
"description": "FLUX.1 [Dev] Union Controlnet. Supports Canny, Depth, Pose, Tile, Blur, Gray Low Quality.",
|
||||
"reference": "https://huggingface.co/InstantX/FLUX.1-dev-Controlnet-Union",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/InstantX/FLUX.1-dev-Controlnet-Union/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "6.6GB"
|
||||
},
|
||||
{
|
||||
"name": "Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro",
|
||||
"type": "controlnet",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "controlnet/FLUX.1/Shakker-Labs-ControlNet-Union-Pro",
|
||||
"description": "FLUX.1 [Dev] Union Controlnet. Supports Canny, Tile, Depth, Blur, Pose, Gray, Low Quality",
|
||||
"reference": "https://huggingface.co/Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "6.6GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "xinsir/ControlNet++: All-in-one ControlNet",
|
||||
"type": "controlnet",
|
||||
@ -3227,7 +3465,7 @@
|
||||
"save_path": "controlnet/SDXL/controlnet-union-sdxl-1.0",
|
||||
"description": "All-in-one ControlNet for image generations and editing! (ProMax model)",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0",
|
||||
"filename": "iffusion_pytorch_model_promax.safetensors",
|
||||
"filename": "diffusion_pytorch_model_promax.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0/resolve/main/diffusion_pytorch_model_promax.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
@ -3577,7 +3815,7 @@
|
||||
},
|
||||
|
||||
{
|
||||
"name": "FLUX.1 [schnell] Diffusion model",
|
||||
"name": "FLUX.1 [Schnell] Diffusion model",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
@ -3590,12 +3828,12 @@
|
||||
|
||||
{
|
||||
"name": "FLUX.1 VAE model",
|
||||
"type": "vae",
|
||||
"type": "VAE",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "vae/FLUX1",
|
||||
"description": "FLUX.1 [Schnell] VAE model",
|
||||
"description": "FLUX.1 VAE model",
|
||||
"reference": "https://huggingface.co/black-forest-labs/FLUX.1-schnell",
|
||||
"filename": "ae.sft",
|
||||
"filename": "ae.safetensors",
|
||||
"url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors",
|
||||
"size": "335MB"
|
||||
},
|
||||
@ -3644,6 +3882,262 @@
|
||||
"filename": "flux1-schnell-fp8.safetensors",
|
||||
"url": "https://huggingface.co/Comfy-Org/flux1-schnell/resolve/main/flux1-schnell-fp8.safetensors",
|
||||
"size": "17.2GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "city96/flux1-dev-F16.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_model/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (f16/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-F16.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-F16.gguf",
|
||||
"size": "23.8GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q2_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q2_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q2_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q2_K.gguf",
|
||||
"size": "4.03GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q3_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q3_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q3_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q3_K_S.gguf",
|
||||
"size": "5.23GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q4_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q4_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q4_0.gguf",
|
||||
"size": "6.79GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q4_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q4_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q4_1.gguf",
|
||||
"size": "7.53GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q4_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q4_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q4_K_S.gguf",
|
||||
"size": "6.81GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_0.gguf",
|
||||
"size": "8.27GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_1.gguf",
|
||||
"size": "9.01GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_K_S.gguf",
|
||||
"size": "8.29GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q6_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q6_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q6_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q6_K.gguf",
|
||||
"size": "9.86GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q8_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q8_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q8_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q8_0.gguf",
|
||||
"size": "12.7GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "city96/flux1-schnell-F16.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (f16/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-F16.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-F16.gguf",
|
||||
"size": "23.8GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q2_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q2_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q2_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q2_K.gguf",
|
||||
"size": "4.01GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q3_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q3_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q3_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q3_K_S.gguf",
|
||||
"size": "5.21GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_0.gguf",
|
||||
"size": "6.77GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_1.gguf",
|
||||
"size": "7.51GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_K_S.gguf",
|
||||
"size": "6.78GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_0.gguf",
|
||||
"size": "8.25GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_1.gguf",
|
||||
"size": "8.99GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_K_S.gguf",
|
||||
"size": "8.26GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q6_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q6_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q6_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q6_K.gguf",
|
||||
"size": "9.83GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q8_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q8_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q8_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q8_0.gguf",
|
||||
"size": "12.7GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "BAAI/SegGPT",
|
||||
"type": "SegGPT",
|
||||
"base": "SegGPT",
|
||||
"save_path": "custom_nodes/comfyui-SegGPT",
|
||||
"description": "SegGPT",
|
||||
"reference": "https://huggingface.co/BAAI/SegGPT",
|
||||
"filename": "seggpt_vit_large.pth",
|
||||
"url": "https://huggingface.co/BAAI/SegGPT/resolve/main/seggpt_vit_large.pth",
|
||||
"size": "1.48GB"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -12,7 +12,147 @@
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "jgbrblmd",
|
||||
"title": "ComfyUI-ComfyFluxSize [WIP]",
|
||||
"reference": "https://github.com/jgbrblmd/ComfyUI-ComfyFluxSize",
|
||||
"files": [
|
||||
"https://github.com/jgbrblmd/ComfyUI-ComfyFluxSize"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:ComfyFlux Size\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "yojimbodayne",
|
||||
"title": "ComfyUI-Dropbox-API [WIP]",
|
||||
"reference": "https://github.com/yojimbodayne/ComfyUI-Dropbox-API",
|
||||
"files": [
|
||||
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node package for ComfyUI allows users to interact with Dropbox API, enabling image, text, and video uploads, downloads, and management directly from ComfyUI workflows.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "ilovejohnwhite",
|
||||
"title": "Kolors Awesome Prompts [WIP]",
|
||||
"reference": "https://github.com/ilovejohnwhite/Tracer",
|
||||
"files": [
|
||||
"https://github.com/ilovejohnwhite/Tracer"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:Image Load TTK, SuckerPunch, LinkMasterNode, PixelPerfectResolution, ImageGenResolutionFromImage, ImageGenResolutionFromLatent, HintImageEnchance\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "shuanshtalon468uan",
|
||||
"title": "ComfyUI-Rpg-Architect [WIP]",
|
||||
"reference": "https://github.com/talon468/ComfyUI-Rpg-Architect",
|
||||
"files": [
|
||||
"https://github.com/talon468/ComfyUI-Rpg-Architect"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom Node for ComfyUI to create RPG Characters\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "shuanshuan",
|
||||
"title": "ComfyUI_CheckPointLoader_Ext [WIP]",
|
||||
"reference": "https://github.com/shuanshuan/ComfyUI_CheckPointLoader_Ext",
|
||||
"files": [
|
||||
"https://github.com/shuanshuan/ComfyUI_CheckPointLoader_Ext"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:Checkpoint Loader Ext"
|
||||
},
|
||||
{
|
||||
"author": "123jimin",
|
||||
"title": "ComfyUI MobileForm [WIP]",
|
||||
"reference": "https://github.com/123jimin/ComfyUI-MobileForm",
|
||||
"files": [
|
||||
"https://github.com/123jimin/ComfyUI-MobileForm"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "MobileForm is an extension for ComfyUI, providing simple form for any workflows, suitable for use on mobile phones.[w/Currently MobileForm is in a PoC state; expect bugs and breaking changes.]"
|
||||
},
|
||||
{
|
||||
"author": "go-package-lab",
|
||||
"title": "ComfyUI-Tools-Video-Combine [WIP]",
|
||||
"reference": "https://github.com/go-package-lab/ComfyUI-Tools-Video-Combine",
|
||||
"files": [
|
||||
"https://github.com/go-package-lab/ComfyUI-Tools-Video-Combine"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:LoadAudioUrl, VideoWatermark"
|
||||
},
|
||||
{
|
||||
"author": "jinljin",
|
||||
"title": "ComfyUI-Talking-Head [WIP]",
|
||||
"reference": "https://github.com/jinljin/ComfyUI-ElevenlabsAndDID-Combine",
|
||||
"files": [
|
||||
"https://github.com/jinljin/ComfyUI-ElevenlabsAndDID-Combine"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Talking-Head"
|
||||
},
|
||||
{
|
||||
"author": "zhongpei",
|
||||
"title": "Comfyui_image2prompt",
|
||||
"id": "img2prompt",
|
||||
"reference": "https://github.com/zhongpei/Comfyui_image2prompt",
|
||||
"files": [
|
||||
"https://github.com/zhongpei/Comfyui_image2prompt"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:Image to Text, Loader Image to Text Model.[w/This custom node may break dependencies by reinstalling the torch package.]"
|
||||
},
|
||||
{
|
||||
"author": "APZmedia",
|
||||
"title": "comfyui-textools [WIP]",
|
||||
"reference": "https://github.com/APZmedia/comfyui-textools",
|
||||
"files": [
|
||||
"https://github.com/APZmedia/comfyui-textools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-textools is a collection of custom nodes designed for use with ComfyUI. These nodes enhance text processing capabilities, including applying rich text overlays on images and cleaning file names for safe and consistent file management.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "VykosX",
|
||||
"title": "ControlFlowUtils [UNSTABLE]",
|
||||
"reference": "https://github.com/VykosX/ControlFlowUtils",
|
||||
"files": [
|
||||
"https://github.com/VykosX/ControlFlowUtils"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom nodes for ComfyUI to enable flow control with advanced loops, conditional branching, logic operations and several other nifty utilities to enhance your ComfyUI workflows"
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-event-handler [USAFE]",
|
||||
"reference": "https://github.com/shinich39/comfyui-event-handler",
|
||||
"files": [
|
||||
"https://github.com/shinich39/comfyui-event-handler"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Javascript code will run when an event fires. [w/This node allows you to execute arbitrary JavaScript code as input for the workflow.]"
|
||||
},
|
||||
{
|
||||
"author": "Comfy Org",
|
||||
"title": "ComfyUI_devtools [WIP]",
|
||||
"reference": "https://github.com/Comfy-Org/ComfyUI_devtools",
|
||||
"files": [
|
||||
"https://github.com/Comfy-Org/ComfyUI_devtools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI developer tools (Custom Node)"
|
||||
},
|
||||
{
|
||||
"author": "Sakura-nee",
|
||||
"title": "ComfyUI_Save2Discord",
|
||||
"reference": "https://github.com/Sakura-nee/ComfyUI_Save2Discord",
|
||||
"files": [
|
||||
"https://github.com/Sakura-nee/ComfyUI_Save2Discord"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:Send Generated Image To Discord Webhook.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "ThisModernDay",
|
||||
"title": "ComfyUI Instructor Ollama",
|
||||
@ -43,16 +183,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Original repo: [a/https://github.com/Vchitect/VEnhancer](https://github.com/Vchitect/VEnhancer)"
|
||||
},
|
||||
{
|
||||
"author": "TTPlanetPig",
|
||||
"title": "Comfyui_TTP_Toolset",
|
||||
"reference": "https://github.com/TTPlanetPig/Comfyui_TTP_Toolset",
|
||||
"files": [
|
||||
"https://github.com/TTPlanetPig/Comfyui_TTP_Toolset"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a workflow for my simple logic amazing upscale node for DIT model. it can be common use for Flux,Hunyuan,SD3 It can simple tile the initial image into pieces and then use image-interrogator to get each tile prompts for more accurate upscale process. The condition will be properly handled and the hallucination will be significantly eliminated.\nNOTE: The files in the repo are not organized, which may lead to update issues."
|
||||
},
|
||||
{
|
||||
"author": "jimstudt",
|
||||
"title": "Jim's ComfyUI Nodes [WIP]",
|
||||
@ -83,6 +213,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "this will automaticlaly read the subfolders like 'checkpoints', 'loras' under the extra model folder path you specify in extra_model_paths.yaml and add them to folder paths, so you don't need to define those subfolders one by one.\nNOTE: invalid pyproject.toml"
|
||||
},
|
||||
{
|
||||
"author": "Weixuanf",
|
||||
"title": "ComfyUI File Manager for nodecafe.co [WIP]",
|
||||
"reference": "https://github.com/Weixuanf/nodecafe-file-manager",
|
||||
"files": [
|
||||
"https://github.com/Weixuanf/nodecafe-file-manager"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "To view and download files in ComfyUI\nNOTE: invalid pyproject.toml"
|
||||
},
|
||||
{
|
||||
"author": "sebord",
|
||||
"title": "ComfyUI-LMCQ [WIP]",
|
||||
@ -173,26 +313,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A Video2Video framework for text2image models in ComfyUI. Supports SD1.5 and SDXL."
|
||||
},
|
||||
{
|
||||
"author": "kijai",
|
||||
"title": "ComfyUI-LLaVA-OneVision [WIP]",
|
||||
"reference": "https://github.com/kijai/ComfyUI-LLaVA-OneVision",
|
||||
"files": [
|
||||
"https://github.com/kijai/ComfyUI-LLaVA-OneVision"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Original repo: [a/https://github.com/LLaVA-VL/LLaVA-NeXT](https://github.com/LLaVA-VL/LLaVA-NeXT)\nUnsure of the dependencies, the original was a huge list, but I didn't install single new one to my environment and it worked."
|
||||
},
|
||||
{
|
||||
"author": "TTPlanetPig",
|
||||
"title": "for comfyui image proprocessor",
|
||||
"reference": "https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor",
|
||||
"files": [
|
||||
"https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Adapt for Hunyuan now\nNOTE: The files in the repo are not organized, which may lead to update issues."
|
||||
},
|
||||
{
|
||||
"author": "IuvenisSapiens",
|
||||
"title": "ComfyUI_MiniCPM-V-2_6-int4",
|
||||
@ -214,16 +334,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI_EnvAutopsyAPI is a powerful debugging tool designed for ComfyUI that provides in-depth analysis of your environment and dependencies through an API interface. This tool allows you to inspect environment variables, pip packages, and dependency trees, making it easier to diagnose and resolve issues in your ComfyUI setup.[w/This tool may expose sensitive system information if used on a public server. MUST READ [a/THIS](https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI#%EF%B8%8F-warning-security-risk-%EF%B8%8F) before install.]"
|
||||
},
|
||||
{
|
||||
"author": "kijai",
|
||||
"title": "ComfyUI-CogVideoXWrapper [WIP]",
|
||||
"reference": "https://github.com/kijai/ComfyUI-CogVideoXWrapper",
|
||||
"files": [
|
||||
"https://github.com/kijai/ComfyUI-CogVideoXWrapper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Original repo: [a/https://github.com/THUDM/CogVideo](https://github.com/THUDM/CogVideo)\nNOTE:Currently requires diffusers with PR: [a/huggingface/diffusers#9082](https://github.com/huggingface/diffusers/pull/9082)"
|
||||
},
|
||||
{
|
||||
"author": "neuratech-ai",
|
||||
"title": "ComfyUI-MultiGPU",
|
||||
@ -294,16 +404,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "[a/SadTalker](https://github.com/OpenTalker/SadTalker) for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "maepopi",
|
||||
"title": "Diffusers-in-ComfyUI",
|
||||
"reference": "https://github.com/maepopi/Diffusers-in-ComfyUI",
|
||||
"files": [
|
||||
"https://github.com/maepopi/Diffusers-in-ComfyUI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a custom node allowing the use of the diffusers pipeline into ComfyUI. Based on [a/Limitex/ComfyUI-Diffusers](https://github.com/Limitex/ComfyUI-Diffusers)"
|
||||
},
|
||||
{
|
||||
"author": "hotpizzatactics",
|
||||
"title": "ComfyUI-WaterMark-Detector",
|
||||
@ -315,16 +415,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:CLAHE Enhancement, High Pass Filter, Edge Detection, Combine Enhancements, Adaptive Thresholding, Morphological Operations, Gray Color Enhancement, Improved Gray Color Enhancement, Texture Enhancement, Denoising Filter, Flexible Combine Enhancements."
|
||||
},
|
||||
{
|
||||
"author": "drmbt",
|
||||
"title": "comfyui-dreambait-nodes",
|
||||
"reference": "https://github.com/drmbt/comfyui-dreambait-nodes",
|
||||
"files": [
|
||||
"https://github.com/drmbt/comfyui-dreambait-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:Aspect Pad Image For Outpainting"
|
||||
},
|
||||
{
|
||||
"author": "AIFSH",
|
||||
"title": "IMAGDressing-ComfyUI",
|
||||
@ -522,16 +612,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom ComfyUI nodes to run [a/fal-ai/AuraSR](https://huggingface.co/fal-ai/AuraSR) model.[w/This node cannot be installed simultaneously with AIFSH/ComfyUI-AuraSR due to overlapping repository names.]"
|
||||
},
|
||||
{
|
||||
"author": "m-ai-studio",
|
||||
"title": "mai-prompt-progress",
|
||||
"reference": "https://github.com/m-ai-studio/mai-prompt-progress",
|
||||
"files": [
|
||||
"https://github.com/m-ai-studio/mai-prompt-progress"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "mai-prompt-progress"
|
||||
},
|
||||
{
|
||||
"author": "linhusyung",
|
||||
"title": "ComfyUI Build and Train Your Network [WIP]",
|
||||
@ -956,17 +1036,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Fixed AttentionCouple/NegPip(negative weights in prompts), more CFG++ samplers, etc."
|
||||
},
|
||||
{
|
||||
"author": "Scorpinaus",
|
||||
"title": "ComfyUI-DiffusersLoader",
|
||||
"id": "diffusersloader",
|
||||
"reference": "https://github.com/Scorpinaus/ComfyUI-DiffusersLoader",
|
||||
"files": [
|
||||
"https://github.com/Scorpinaus/ComfyUI-DiffusersLoader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The purpose of this package is to understand how loading of diffusers format checkpoints are done in comfyUI and to create a loader that works for SDXL."
|
||||
},
|
||||
{
|
||||
"author": "FoundD-oka",
|
||||
"title": "ComfyUI KISEKAE-OOTD",
|
||||
|
||||
@ -250,6 +250,7 @@
|
||||
"> Sharpen",
|
||||
"> Text",
|
||||
"> Text Combine",
|
||||
"> Text Pick Line by Index",
|
||||
"> Text Pick Random Line",
|
||||
"> Text Random Weights",
|
||||
"> Text Replace",
|
||||
@ -259,6 +260,18 @@
|
||||
"title_aux": "YANC- Yet Another Node Collection"
|
||||
}
|
||||
],
|
||||
"https://github.com/APZmedia/comfyui-textools": [
|
||||
[
|
||||
"APZmediaImageRichTextOverlay"
|
||||
],
|
||||
{
|
||||
"author": "Pablo Apiolazza",
|
||||
"description": "This extension provides rich text overlay functionalities, color management, and text parsing utilities for ComfyUI.",
|
||||
"nickname": "ComfyUI Text Tools",
|
||||
"title": "ComfyUI APZmedia Text Tools",
|
||||
"title_aux": "comfyui-textools [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes": [
|
||||
[
|
||||
"Add Human Styler",
|
||||
@ -379,6 +392,14 @@
|
||||
"title_aux": "ComfyUI-Get-Random-File [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/Comfy-Org/ComfyUI_devtools": [
|
||||
[
|
||||
"DevToolsErrorRaiseNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_devtools [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/DeTK/ComfyUI-Switch": [
|
||||
[
|
||||
"NodeSwitch"
|
||||
@ -513,7 +534,7 @@
|
||||
"MiniCPM_VQA",
|
||||
"MiniCPM_VQA_Polished",
|
||||
"MultipleImagesInput",
|
||||
"PreViewVideo"
|
||||
"PreviewVideo"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_MiniCPM-V-2_6-int4"
|
||||
@ -539,6 +560,8 @@
|
||||
[
|
||||
"AppendNode",
|
||||
"ApplyVoiceConversion",
|
||||
"CombineVideos",
|
||||
"ImAppendFreeChatAction",
|
||||
"ImAppendQuickbackNode",
|
||||
"ImAppendQuickbackVideoNode",
|
||||
"ImAppendVideoNode",
|
||||
@ -554,7 +577,9 @@
|
||||
"SetEvent",
|
||||
"SetNodeMapping",
|
||||
"SetProperties",
|
||||
"String2Node",
|
||||
"batchNodes",
|
||||
"grepNodeByText",
|
||||
"mergeEntityAndPointer",
|
||||
"redirectToNode"
|
||||
],
|
||||
@ -768,15 +793,12 @@
|
||||
"title_aux": "ComfyUI-MS-Nodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/Scorpinaus/ComfyUI-DiffusersLoader": [
|
||||
"https://github.com/Sakura-nee/ComfyUI_Save2Discord": [
|
||||
[
|
||||
"CombinedDiffusersLoader",
|
||||
"DiffusersClipLoader",
|
||||
"DiffusersUNETLoader",
|
||||
"DiffusersVAELoader"
|
||||
"SendToWebhook"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-DiffusersLoader"
|
||||
"title_aux": "ComfyUI_Save2Discord"
|
||||
}
|
||||
],
|
||||
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
||||
@ -802,8 +824,6 @@
|
||||
"KSampler (Shinsplat)",
|
||||
"Lora Loader (Shinsplat)",
|
||||
"Nupoma (Shinsplat)",
|
||||
"Python (Shinsplat)",
|
||||
"Python - More Inputs (Shinsplat)",
|
||||
"Seed (Shinsplat)",
|
||||
"String Interpolated (Shinsplat)",
|
||||
"Sum Wrap (Shinsplat)",
|
||||
@ -853,31 +873,6 @@
|
||||
"title_aux": "ComfyUI-TSFNodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor": [
|
||||
[
|
||||
"TTPlanet_Tile_Preprocessor_GF",
|
||||
"TTPlanet_Tile_Preprocessor_Simple",
|
||||
"TTPlanet_Tile_Preprocessor_cufoff",
|
||||
"TTPlanet_inpainting_Preprecessor"
|
||||
],
|
||||
{
|
||||
"title_aux": "for comfyui image proprocessor"
|
||||
}
|
||||
],
|
||||
"https://github.com/TTPlanetPig/Comfyui_TTP_Toolset": [
|
||||
[
|
||||
"TTP_CoordinateSplitter",
|
||||
"TTP_Image_Assy",
|
||||
"TTP_Image_Tile_Batch",
|
||||
"TTP_Tile_image_size",
|
||||
"TTP_condsetarea_merge",
|
||||
"TTP_condtobatch",
|
||||
"TTPlanet_Tile_Preprocessor_Simple"
|
||||
],
|
||||
{
|
||||
"title_aux": "Comfyui_TTP_Toolset"
|
||||
}
|
||||
],
|
||||
"https://github.com/ThisModernDay/ComfyUI-InstructorOllama": [
|
||||
[
|
||||
"OllamaInstructorNode"
|
||||
@ -906,6 +901,32 @@
|
||||
"title_aux": "ve_custom_comfyui_nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/VykosX/ControlFlowUtils": [
|
||||
[
|
||||
"CheckpointSelector",
|
||||
"Cycle",
|
||||
"CycleEnd",
|
||||
"CycleStart",
|
||||
"DataMonitor",
|
||||
"GarbageCollector",
|
||||
"HaltExecution",
|
||||
"IfConditionSelector",
|
||||
"ImageResolutionAdjust",
|
||||
"LoraSelector",
|
||||
"MemoryStorage",
|
||||
"NullInput",
|
||||
"NullOutput",
|
||||
"ReadTextFile",
|
||||
"SaveTextFile",
|
||||
"UniversalSwitch",
|
||||
"UnloadModels",
|
||||
"VAESelector",
|
||||
"Wait"
|
||||
],
|
||||
{
|
||||
"title_aux": "ControlFlowUtils [UNSTABLE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/WSJUSA/Comfyui-StableSR": [
|
||||
[
|
||||
"ColorFix",
|
||||
@ -1333,6 +1354,7 @@
|
||||
"StableCascade_SuperResolutionControlnet",
|
||||
"StableZero123_Conditioning",
|
||||
"StableZero123_Conditioning_Batched",
|
||||
"StubConstantImage",
|
||||
"StubFloat",
|
||||
"StubImage",
|
||||
"StubInt",
|
||||
@ -1360,6 +1382,7 @@
|
||||
"TestForLoopOpen",
|
||||
"TestIntConditions",
|
||||
"TestIntMathOperation",
|
||||
"TestIsChangedWithConstants",
|
||||
"TestLazyMixImages",
|
||||
"TestListToAccumulationNode",
|
||||
"TestMakeListNode",
|
||||
@ -1480,14 +1503,6 @@
|
||||
"title_aux": "ComfyUI_WcpD_Utility_Kit"
|
||||
}
|
||||
],
|
||||
"https://github.com/drmbt/comfyui-dreambait-nodes": [
|
||||
[
|
||||
"Aspect Pad Image For Outpainting"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-dreambait-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/eigenpunk/ComfyUI-audio": [
|
||||
[
|
||||
"ApplyVoiceFixer",
|
||||
@ -1611,6 +1626,15 @@
|
||||
"title_aux": "comfyui_median_filter"
|
||||
}
|
||||
],
|
||||
"https://github.com/go-package-lab/ComfyUI-Tools-Video-Combine": [
|
||||
[
|
||||
"Tools:LoadAudioUrl",
|
||||
"Tools:VideoWatermark"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Tools-Video-Combine [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/haofanwang/ComfyUI-InstantStyle": [
|
||||
[
|
||||
"BaseModelLoader",
|
||||
@ -1740,6 +1764,21 @@
|
||||
"title_aux": "comfyui-hydit"
|
||||
}
|
||||
],
|
||||
"https://github.com/ilovejohnwhite/Tracer": [
|
||||
[
|
||||
"HintImageEnchance",
|
||||
"Image Load TTK",
|
||||
"ImageGenResolutionFromImage",
|
||||
"ImageGenResolutionFromLatent",
|
||||
"LinkMasterNode",
|
||||
"PixelPerfectResolution",
|
||||
"SuckerPunch",
|
||||
"UWU_Preprocessor"
|
||||
],
|
||||
{
|
||||
"title_aux": "Kolors Awesome Prompts [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/ilovejohnwhite/UncleBillyGoncho": [
|
||||
[
|
||||
"CannyEdgePreprocessor",
|
||||
@ -1772,6 +1811,14 @@
|
||||
"title_aux": "ie-comfyui-color-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/jgbrblmd/ComfyUI-ComfyFluxSize": [
|
||||
[
|
||||
"ComfyFluxSize"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-ComfyFluxSize [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/jh-leon-kim/ComfyUI-JHK-utils": [
|
||||
[
|
||||
"JHK_Utils_ImageRemoveBackground",
|
||||
@ -1800,6 +1847,9 @@
|
||||
"ChooseFromStringList",
|
||||
"Cubby",
|
||||
"DefineWord",
|
||||
"DictionaryToJSON",
|
||||
"JSONToDictionary",
|
||||
"LoadImageAndInfoFromPath",
|
||||
"LookupWord",
|
||||
"ReplaceWords",
|
||||
"TextToStringList",
|
||||
@ -1809,6 +1859,15 @@
|
||||
"title_aux": "Jim's ComfyUI Nodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/jinljin/ComfyUI-ElevenlabsAndDID-Combine": [
|
||||
[
|
||||
"BatchTalkingHeadRun",
|
||||
"\ud83d\ude80SingleTalkingHeadRun"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Talking-Head [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/jn-jairo/jn_node_suite_comfyui": [
|
||||
[
|
||||
"JN_AreaInfo",
|
||||
@ -1973,18 +2032,6 @@
|
||||
"title_aux": "ComfyUI-CV-VAE"
|
||||
}
|
||||
],
|
||||
"https://github.com/kijai/ComfyUI-CogVideoXWrapper": [
|
||||
[
|
||||
"CogVideoDecode",
|
||||
"CogVideoImageEncode",
|
||||
"CogVideoSampler",
|
||||
"CogVideoTextEncode",
|
||||
"DownloadAndLoadCogVideoModel"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-CogVideoXWrapper [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kijai/ComfyUI-DeepSeek-VL": [
|
||||
[
|
||||
"deepseek_vl_inference",
|
||||
@ -2040,15 +2087,6 @@
|
||||
"title_aux": "ComfyUI-FollowYourEmojiWrapper [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kijai/ComfyUI-LLaVA-OneVision": [
|
||||
[
|
||||
"DownloadAndLoadLLaVAOneVisionModel",
|
||||
"LLaVA_OneVision_Run"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-LLaVA-OneVision [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kijai/ComfyUI-VEnhancer": [
|
||||
[
|
||||
"DownloadAndLoadVEnhancerModel",
|
||||
@ -2192,20 +2230,6 @@
|
||||
"title_aux": "ComfyUI-Workflow-Component [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/maepopi/Diffusers-in-ComfyUI": [
|
||||
[
|
||||
"BLoRALoader",
|
||||
"GenerateInpaintImage",
|
||||
"GenerateTxt2Image",
|
||||
"InpaintingStableDiffusionPipeline",
|
||||
"LoRALoader",
|
||||
"MakeCanny",
|
||||
"Text2ImgStableDiffusionPipeline"
|
||||
],
|
||||
{
|
||||
"title_aux": "Diffusers-in-ComfyUI"
|
||||
}
|
||||
],
|
||||
"https://github.com/majorsauce/comfyui_indieTools": [
|
||||
[
|
||||
"IndCutByMask",
|
||||
@ -2396,6 +2420,7 @@
|
||||
"CLIPNegPip",
|
||||
"CLIPTextEncodeBREAK",
|
||||
"CLIPTokenCounter",
|
||||
"DynSamplerSelect",
|
||||
"EmptyLatentImageAR",
|
||||
"EmptyLatentImageARAdvanced",
|
||||
"Guidance Limiter",
|
||||
@ -2522,6 +2547,18 @@
|
||||
"title_aux": "comfyui-musicgen"
|
||||
}
|
||||
],
|
||||
"https://github.com/shinich39/comfyui-event-handler": [
|
||||
[
|
||||
"EventHandler"
|
||||
],
|
||||
{
|
||||
"author": "shinich39",
|
||||
"description": "Javascript code will run when an event fires.",
|
||||
"nickname": "event-handler",
|
||||
"title": "event-handler",
|
||||
"title_aux": "comfyui-event-handler [USAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/shirazdesigner/CLIPTextEncodeAndEnhancev4": [
|
||||
[
|
||||
"CLIPTextEncodeAndEnhance"
|
||||
@ -2530,6 +2567,14 @@
|
||||
"title_aux": "CLIPTextEncodeAndEnhancev4 (shirazdesigner)"
|
||||
}
|
||||
],
|
||||
"https://github.com/shuanshuan/ComfyUI_CheckPointLoader_Ext": [
|
||||
[
|
||||
"CheckpointLoaderExt"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_CheckPointLoader_Ext [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/sofakid/dandy": [
|
||||
[
|
||||
"DandyBooleanCollector",
|
||||
@ -2590,6 +2635,14 @@
|
||||
"title_aux": "comfyui_psd [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/talon468/ComfyUI-Rpg-Architect": [
|
||||
[
|
||||
"ComfyUI Rpg Architect \ud83e\ude84"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Rpg-Architect [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/thderoo/ComfyUI-_topfun_s_nodes": [
|
||||
[
|
||||
"ConditioningPerturbation",
|
||||
@ -2728,6 +2781,20 @@
|
||||
"title_aux": "comfyui-wormley-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API": [
|
||||
[
|
||||
"FetchTokenFromDropbox",
|
||||
"PostImagesToDropboxAPI",
|
||||
"PostPromptsToDropboxAPI",
|
||||
"PullImagesFromDropboxAPI",
|
||||
"PullTextFromDropboxAPI",
|
||||
"PullVideosFromDropboxAPI",
|
||||
"VideoCombineAndExportToDropboxAPI"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Dropbox-API [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/yushan777/ComfyUI-Y7Nodes": [
|
||||
[
|
||||
"Count_Tokens_(Y7)"
|
||||
@ -2735,5 +2802,29 @@
|
||||
{
|
||||
"title_aux": "Y7 Nodes for ComfyUI"
|
||||
}
|
||||
],
|
||||
"https://github.com/zhongpei/Comfyui_image2prompt": [
|
||||
[
|
||||
"CLIP AdvancedTextEncode|fofo",
|
||||
"CLIP PromptConditioning|fofo",
|
||||
"Image2Text",
|
||||
"Image2TextWithTags",
|
||||
"ImageBatchToList|fofo",
|
||||
"ImageRewardScore|fofo",
|
||||
"LoadImage2TextModel",
|
||||
"LoadImageRewardScoreModel|fofo",
|
||||
"LoadT5Model|fofo",
|
||||
"LoadText2PromptModel",
|
||||
"ShowText|fofo",
|
||||
"T5QuantizationConfig|fofo",
|
||||
"T5Text2Prompt|fofo",
|
||||
"Text2GPTPrompt",
|
||||
"Text2Prompt",
|
||||
"TextBox|fofo",
|
||||
"Translate2Chinese|fofo"
|
||||
],
|
||||
{
|
||||
"title_aux": "Comfyui_image2prompt"
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,15 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "SeaArtLab",
|
||||
"title": "zer0int/ComfyUI-Long-CLIP",
|
||||
"reference": "https://github.com/zer0int/ComfyUI-Long-CLIP",
|
||||
"files": [
|
||||
"https://github.com/zer0int/ComfyUI-Long-CLIP"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This forked repo supports FLUX.1 not only SD1.5, SDXL."
|
||||
},
|
||||
{
|
||||
"author": "meimeilook",
|
||||
"title": "ComfyUI_IPAdapter_plus.old [backward compatbility]",
|
||||
|
||||
@ -11,6 +11,36 @@
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "ader47",
|
||||
"title": "ComfyUI-MeshHamer [REMOVED]",
|
||||
"reference": "https://github.com/ader47/comfyui_meshhamer",
|
||||
"files": [
|
||||
"https://github.com/ader47/comfyui_meshhamer"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:MeshHamer Hand Refiner. See also: [a/HaMeR: Hand Mesh Recovery](https://github.com/geopavlakos/hamer/tree/main)"
|
||||
},
|
||||
{
|
||||
"author": "SEkINVR",
|
||||
"title": "ComfyUI-Animator",
|
||||
"reference": "https://github.com/SEkINVR/ComfyUI-Animator [REMOVED]",
|
||||
"files": [
|
||||
"https://github.com/SEkINVR/ComfyUI-Animator"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node for ComfyUI provides full-body animation capabilities, including facial rigging, various lighting styles, and green screen output."
|
||||
},
|
||||
{
|
||||
"author": "m-ai-studio",
|
||||
"title": "mai-prompt-progress [REMOVED]",
|
||||
"reference": "https://github.com/m-ai-studio/mai-prompt-progress",
|
||||
"files": [
|
||||
"https://github.com/m-ai-studio/mai-prompt-progress"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "mai-prompt-progress"
|
||||
},
|
||||
{
|
||||
"author": "ZHO-ZHO-ZHO",
|
||||
"title": "ComfyUI-AnyText [NOT MAINTAINED]",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,125 +1,497 @@
|
||||
{
|
||||
"models": [
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_L.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q3_K_L quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q3_K_L.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q3_K_L.gguf",
|
||||
"size": "2.46GB"
|
||||
"name": "Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro",
|
||||
"type": "controlnet",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "controlnet/FLUX.1/Shakker-Labs-ControlNet-Union-Pro",
|
||||
"description": "FLUX.1 [Dev] Union Controlnet. Supports Canny, Tile, Depth, Blur, Pose, Gray, Low Quality",
|
||||
"reference": "https://huggingface.co/Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "6.6GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (8steps) - FLUX.1 [Dev]",
|
||||
"type": "lora",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "loras/HyperSD/FLUX.1",
|
||||
"description": "Hyper-SD LoRA (8steps) - FLUX.1 [Dev]",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-FLUX.1-dev-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-FLUX.1-dev-8steps-lora.safetensors",
|
||||
"size": "1.39GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_M.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q3_K_M quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q3_K_M.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q3_K_M.gguf",
|
||||
"size": "2.3GB"
|
||||
"name": "Hyper-SD LoRA (16steps) - FLUX.1 [Dev]",
|
||||
"type": "lora",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "loras/HyperSD/FLUX.1",
|
||||
"description": "Hyper-SD LoRA (16steps) - FLUX.1 [Dev]",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-FLUX.1-dev-16steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-FLUX.1-dev-16steps-lora.safetensors",
|
||||
"size": "1.39GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "BAAI/SegGPT",
|
||||
"type": "SegGPT",
|
||||
"base": "SegGPT",
|
||||
"save_path": "custom_nodes/comfyui-SegGPT",
|
||||
"description": "SegGPT",
|
||||
"reference": "https://huggingface.co/BAAI/SegGPT",
|
||||
"filename": "seggpt_vit_large.pth",
|
||||
"url": "https://huggingface.co/BAAI/SegGPT/resolve/main/seggpt_vit_large.pth",
|
||||
"size": "1.48GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "DMD2 LoRA (4steps)",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/DMD2",
|
||||
"description": "DMD2 LoRA (4steps)",
|
||||
"reference": "https://huggingface.co/tianweiy/DMD2",
|
||||
"filename": "dmd2_sdxl_4step_lora.safetensors",
|
||||
"url": "https://huggingface.co/tianweiy/DMD2/resolve/main/dmd2_sdxl_4step_lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_S.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q3_K_S quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q3_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q3_K_S.gguf",
|
||||
"size": "2.1GB"
|
||||
"name": "DMD2 LoRA (4steps/fp16)",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/DMD2",
|
||||
"description": "DMD2 LoRA (4steps/fp16)",
|
||||
"reference": "https://huggingface.co/tianweiy/DMD2",
|
||||
"filename": "dmd2_sdxl_4step_lora_fp16.safetensors",
|
||||
"url": "https://huggingface.co/tianweiy/DMD2/resolve/main/dmd2_sdxl_4step_lora_fp16.safetensors",
|
||||
"size": "394MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (1step) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (1step) - SD1.5",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-1step-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-1step-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q4_K_M quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
||||
"size": "2.9GB"
|
||||
"name": "Hyper-SD LoRA (2steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (2steps) - SD1.5",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-2steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-2steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q4_K_S.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q4_K_S quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q4_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q4_K_S.gguf",
|
||||
"size": "2.74GB"
|
||||
"name": "Hyper-SD LoRA (4steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (4steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-4steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-4steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q5_K_M.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q5_K_M quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q5_K_M.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q5_K_M.gguf",
|
||||
"size": "3.39GB"
|
||||
"name": "Hyper-SD LoRA (8steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (8steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-8steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q5_K_S.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q5_K_S quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q5_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q5_K_S.gguf",
|
||||
"size": "3.29GB"
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD CFG LoRA (8steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-8steps-CFG-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q6_K.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q6_K quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q6_K.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q6_K.gguf",
|
||||
"size": "3.91GB"
|
||||
"name": "Hyper-SD CFG LoRA (12steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD CFG LoRA (12steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-12steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-12steps-CFG-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (1step) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (1step) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-1step-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-1step-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-Q8_0.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (Q8_0 quantized)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-Q8_0.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-Q8_0.gguf",
|
||||
"size": "5.06GB"
|
||||
"name": "Hyper-SD LoRA (2steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (2steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-2steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-2steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-f16.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (float 16)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-f16.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-f16.gguf",
|
||||
"size": "9.53GB"
|
||||
"name": "Hyper-SD LoRA (4steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (4steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-4steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-4steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "city96/t5-v1_1-xxl-encoder-f32.gguf",
|
||||
"type": "clip",
|
||||
"base": "t5",
|
||||
"save_path": "clip/t5",
|
||||
"description": "t5xxl Text Encoder GGUF model. (float 32)",
|
||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||
"filename": "t5-v1_1-xxl-encoder-f32.gguf",
|
||||
"url": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf/resolve/main/t5-v1_1-xxl-encoder-f32.gguf",
|
||||
"size": "19.1GB"
|
||||
"name": "Hyper-SD LoRA (8steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (8steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-8steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD CFG LoRA (8steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-8steps-CFG-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (12steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD CFG LoRA (12steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-12steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-12steps-CFG-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (4steps) - SD3",
|
||||
"type": "lora",
|
||||
"base": "SD3",
|
||||
"save_path": "loras/HyperSD/SD3",
|
||||
"description": "Hyper-SD CFG LoRA (4steps) - SD3",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD3-4steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD3-4steps-CFG-lora.safetensors",
|
||||
"size": "472MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SD3",
|
||||
"type": "lora",
|
||||
"base": "SD3",
|
||||
"save_path": "loras/HyperSD/SD3",
|
||||
"description": "Hyper-SD CFG LoRA (8steps) - SD3",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD3-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD3-8steps-CFG-lora.safetensors",
|
||||
"size": "472MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (16steps) - SD3",
|
||||
"type": "lora",
|
||||
"base": "SD3",
|
||||
"save_path": "loras/HyperSD/SD3",
|
||||
"description": "Hyper-SD CFG LoRA (16steps) - SD3",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD3-16steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD3-16steps-CFG-lora.safetensors",
|
||||
"size": "472MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "InstantX/FLUX.1-dev Controlnet (Union)",
|
||||
"type": "controlnet",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "controlnet/FLUX.1/InstantX-FLUX1-Dev-Union",
|
||||
"description": "FLUX.1 [Dev] Union Controlnet. Supports Canny, Depth, Pose, Tile, Blur, Gray Low Quality.",
|
||||
"reference": "https://huggingface.co/InstantX/FLUX.1-dev-Controlnet-Union",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/InstantX/FLUX.1-dev-Controlnet-Union/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "6.6GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "city96/flux1-dev-F16.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_model/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (f16/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-F16.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-F16.gguf",
|
||||
"size": "23.8GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q2_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q2_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q2_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q2_K.gguf",
|
||||
"size": "4.03GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q3_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q3_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q3_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q3_K_S.gguf",
|
||||
"size": "5.23GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q4_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q4_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q4_0.gguf",
|
||||
"size": "6.79GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q4_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q4_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q4_1.gguf",
|
||||
"size": "7.53GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q4_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q4_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q4_K_S.gguf",
|
||||
"size": "6.81GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_0.gguf",
|
||||
"size": "8.27GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_1.gguf",
|
||||
"size": "9.01GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q5_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q5_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q5_K_S.gguf",
|
||||
"size": "8.29GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q6_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q6_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q6_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q6_K.gguf",
|
||||
"size": "9.86GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-dev-Q8_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q8_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-dev-gguf",
|
||||
"filename": "flux1-dev-Q8_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-dev-gguf/resolve/main/flux1-dev-Q8_0.gguf",
|
||||
"size": "12.7GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "city96/flux1-schnell-F16.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (f16/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-F16.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-F16.gguf",
|
||||
"size": "23.8GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q2_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q2_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q2_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q2_K.gguf",
|
||||
"size": "4.01GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q3_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q3_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q3_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q3_K_S.gguf",
|
||||
"size": "5.21GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_0.gguf",
|
||||
"size": "6.77GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_1.gguf",
|
||||
"size": "7.51GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q4_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q4_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q4_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q4_K_S.gguf",
|
||||
"size": "6.78GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_0.gguf",
|
||||
"size": "8.25GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_1.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_1/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_1.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_1.gguf",
|
||||
"size": "8.99GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q5_K_S.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q5_K_S/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q5_K_S.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q5_K_S.gguf",
|
||||
"size": "8.26GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q6_K.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q6_K/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q6_K.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q6_K.gguf",
|
||||
"size": "9.83GB"
|
||||
},
|
||||
{
|
||||
"name": "city96/flux1-schnell-Q8_0.gguf",
|
||||
"type": "diffusion_model",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "diffusion_models/FLUX1",
|
||||
"description": "FLUX.1 [Dev] Diffusion model (Q8_0/.gguf)",
|
||||
"reference": "https://huggingface.co/city96/FLUX.1-schnell-gguf",
|
||||
"filename": "flux1-schnell-Q8_0.gguf",
|
||||
"url": "https://huggingface.co/city96/FLUX.1-schnell-gguf/resolve/main/flux1-schnell-Q8_0.gguf",
|
||||
"size": "12.7GB"
|
||||
},
|
||||
|
||||
{
|
||||
@ -217,10 +589,10 @@
|
||||
|
||||
{
|
||||
"name": "FLUX.1 VAE model",
|
||||
"type": "vae",
|
||||
"type": "VAE",
|
||||
"base": "FLUX.1",
|
||||
"save_path": "vae/FLUX1",
|
||||
"description": "FLUX.1 [Schnell] VAE model",
|
||||
"description": "FLUX.1 VAE model",
|
||||
"reference": "https://huggingface.co/black-forest-labs/FLUX.1-schnell",
|
||||
"filename": "ae.sft",
|
||||
"url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors",
|
||||
@ -303,7 +675,7 @@
|
||||
"save_path": "controlnet/SDXL/controlnet-union-sdxl-1.0",
|
||||
"description": "All-in-one ControlNet for image generations and editing! (ProMax model)",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0",
|
||||
"filename": "iffusion_pytorch_model_promax.safetensors",
|
||||
"filename": "diffusion_pytorch_model_promax.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0/resolve/main/diffusion_pytorch_model_promax.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
@ -317,379 +689,6 @@
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "InstantX/SD3-Controlnet-Canny",
|
||||
"type": "controlnet",
|
||||
"base": "SD3",
|
||||
"save_path": "controlnet/SD3/InstantX-Controlnet-Canny",
|
||||
"description": "Controlnet SD3 Canny model.",
|
||||
"reference": "https://huggingface.co/InstantX/SD3-Controlnet-Canny",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/InstantX/SD3-Controlnet-Canny/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "1.19GB"
|
||||
},
|
||||
{
|
||||
"name": "InstantX/SD3-Controlnet-Pose",
|
||||
"type": "controlnet",
|
||||
"base": "SD3",
|
||||
"save_path": "controlnet/SD3/InstantX-Controlnet-Pose",
|
||||
"description": "Controlnet SD3 Pose model.",
|
||||
"reference": "https://huggingface.co/InstantX/SD3-Controlnet-Pose",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/InstantX/SD3-Controlnet-Pose/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "1.19GB"
|
||||
},
|
||||
{
|
||||
"name": "InstantX/SD3-Controlnet-Tile",
|
||||
"type": "controlnet",
|
||||
"base": "SD3",
|
||||
"save_path": "controlnet/SD3/InstantX-Controlnet-Tile",
|
||||
"description": "Controlnet SD3 Tile model.",
|
||||
"reference": "https://huggingface.co/InstantX/SD3-Controlnet-Tile",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/InstantX/SD3-Controlnet-Tile/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "1.19GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "xinsir/ControlNet Depth SDXL, support zoe, midias",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/controlnet-depth-sdxl-1.0",
|
||||
"description": "Controlnet SDXL Depth model.",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-depth-sdxl-1.0",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-depth-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
{
|
||||
"name": "xinsir/ControlNet Tile SDXL",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/controlnet-tile-sdxl-1.0",
|
||||
"description": "Controlnet SDXL Tile model.",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-tile-sdxl-1.0",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-tile-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "google-t5/t5-base",
|
||||
"type": "clip",
|
||||
"base": "t5-base",
|
||||
"save_path": "clip/t5-base",
|
||||
"description": "T5 Base: Text-To-Text Transfer Transformer. This model can be loaded via CLIPLoader for Stable Audio workflow.",
|
||||
"reference": "https://huggingface.co/google-t5/t5-base",
|
||||
"filename": "model.safetensors",
|
||||
"url": "https://huggingface.co/google-t5/t5-base/resolve/main/model.safetensors",
|
||||
"size": "892MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "PixArt-Sigma-XL-2-1024-MS.pth",
|
||||
"type": "checkpoint",
|
||||
"base": "pixart-sigma",
|
||||
"save_path": "checkpoints/PixArt-Sigma",
|
||||
"description": "PixArt-Sigma Checkpoint model",
|
||||
"reference": "https://huggingface.co/PixArt-alpha/PixArt-Sigma/tree/main",
|
||||
"filename": "PixArt-Sigma-XL-2-1024-MS.pth",
|
||||
"url": "https://huggingface.co/PixArt-alpha/PixArt-Sigma/resolve/main/PixArt-Sigma-XL-2-1024-MS.pth",
|
||||
"size": "2.47GB"
|
||||
},
|
||||
{
|
||||
"name": "TAESD3 Decoder",
|
||||
"type": "TAESD",
|
||||
"base": "SD3",
|
||||
"save_path": "vae_approx",
|
||||
"description": "(SD3 Verison) To view the preview in high quality while running samples in ComfyUI, you will need this model.",
|
||||
"reference": "https://github.com/madebyollin/taesd",
|
||||
"filename": "taesd3_decoder.pth",
|
||||
"url": "https://github.com/madebyollin/taesd/raw/main/taesd3_decoder.pth",
|
||||
"size": "4.94MB"
|
||||
},
|
||||
{
|
||||
"name": "TAESD3 Encoder",
|
||||
"type": "TAESD",
|
||||
"base": "SD3",
|
||||
"save_path": "vae_approx",
|
||||
"description": "(SD3 Verison) To view the preview in high quality while running samples in ComfyUI, you will need this model.",
|
||||
"reference": "https://github.com/madebyollin/taesd",
|
||||
"filename": "taesd3_encoder.pth",
|
||||
"url": "https://github.com/madebyollin/taesd/raw/main/taesd3_encoder.pth",
|
||||
"size": "4.94MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic v2 (rank256)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "Controlnet SDXL Tile model realistic version.",
|
||||
"reference": "https://huggingface.co/TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic",
|
||||
"filename": "TTPLANET_Controlnet_Tile_realistic_v2_rank256.safetensors",
|
||||
"url": "https://huggingface.co/TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic/resolve/main/TTPLANET_Controlnet_Tile_realistic_v2_rank256.safetensors",
|
||||
"size": "774.4MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "kijai/DepthAnythingV2 (vitb/fp16)",
|
||||
"type": "depthanything",
|
||||
"base": "depthanything",
|
||||
"save_path": "depthanything",
|
||||
"description": "DepthAnythingV2 model",
|
||||
"reference": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/tree/main",
|
||||
"filename": "depth_anything_v2_vitb_fp16.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/resolve/main/depth_anything_v2_vitb_fp16.safetensors",
|
||||
"size": "195.0MB"
|
||||
},
|
||||
{
|
||||
"name": "kijai/DepthAnythingV2 (vitb/fp32)",
|
||||
"type": "depthanything",
|
||||
"base": "depthanything",
|
||||
"save_path": "depthanything",
|
||||
"description": "DepthAnythingV2 model",
|
||||
"reference": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/tree/main",
|
||||
"filename": "depth_anything_v2_vitb_fp32.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/resolve/main/depth_anything_v2_vitb_fp32.safetensors",
|
||||
"size": "389.9MB"
|
||||
},
|
||||
{
|
||||
"name": "kijai/DepthAnythingV2 (vitl/fp16)",
|
||||
"type": "depthanything",
|
||||
"base": "depthanything",
|
||||
"save_path": "depthanything",
|
||||
"description": "[671MB] DepthAnythingV2 model",
|
||||
"reference": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/tree/main",
|
||||
"filename": "depth_anything_v2_vitl_fp16.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/resolve/main/depth_anything_v2_vitl_fp16.safetensors",
|
||||
"size": "670.7MB"
|
||||
},
|
||||
{
|
||||
"name": "kijai/DepthAnythingV2 (vitl/fp32)",
|
||||
"type": "depthanything",
|
||||
"base": "depthanything",
|
||||
"save_path": "depthanything",
|
||||
"description": "[195MB] DepthAnythingV2 model",
|
||||
"reference": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/tree/main",
|
||||
"filename": "depth_anything_v2_vitl_fp32.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/resolve/main/depth_anything_v2_vitl_fp32.safetensors",
|
||||
"size": "1.34GB"
|
||||
},
|
||||
{
|
||||
"name": "kijai/DepthAnythingV2 (vits/fp16)",
|
||||
"type": "depthanything",
|
||||
"base": "depthanything",
|
||||
"save_path": "depthanything",
|
||||
"description": "[49.6MB] DepthAnythingV2 model",
|
||||
"reference": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/tree/main",
|
||||
"filename": "depth_anything_v2_vits_fp16.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/resolve/main/depth_anything_v2_vits_fp16.safetensors",
|
||||
"size": "49.6MB"
|
||||
},
|
||||
{
|
||||
"name": "kijai/DepthAnythingV2 (vitb/fp32)",
|
||||
"type": "depthanything",
|
||||
"base": "depthanything",
|
||||
"save_path": "depthanything",
|
||||
"description": "[99.2MB] DepthAnythingV2 model",
|
||||
"reference": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/tree/main",
|
||||
"filename": "depth_anything_v2_vits_fp32.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/DepthAnythingV2-safetensors/resolve/main/depth_anything_v2_vits_fp32.safetensors",
|
||||
"size": "99.2MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "CN-anytest_v4-marged.safetensors",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[2.5GB] AnyTest Controlnet. A model for style transfer.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v4-marged.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v4-marged.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v4-marged_am_dim256.safetensors (dim256/Animagine)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[774MB] AnyTest Controlnet Lora (dim256) for Animagine. A model for style transfer.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v4-marged_am_dim256.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v4-marged_am_dim256.safetensors",
|
||||
"size": "774.4MB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v4-marged_am_dim128.safetensors (dim128/Animagine)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[396MB] AnyTest Controlnet Lora (dim128) for Animagine. A model for style transfer.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v4-marged_am_dim128.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v4-marged_am_dim128.safetensors",
|
||||
"size": "395.7MB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v4-marged_pn_dim256.safetensors (dim256/Pony)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[774MB] AnyTest Controlnet Lora (dim256) for Pony. A model for style transfer.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v4-marged_pn_dim256.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v4-marged_pn_dim256.safetensors",
|
||||
"size": "774.4MB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v4-marged_pn_dim128.safetensors (dim128/Pony)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[396MB] AnyTest Controlnet Lora (dim128) for Pony. A model for style transfer.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v4-marged_pn_dim128.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v4-marged_pn_dim128.safetensors",
|
||||
"size": "395.7MB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v3-50000_fp16.safetensors (fp16)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[2.5GB] AnyTest Controlnet. A strict control model.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v3-50000_fp16.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v3-50000_fp16.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v3-50000_am_dim256.safetensors (dim256/Animagine)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[774MB] AnyTest Controlnet Lora (dim256) for Animagine. A strict control model.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v3-50000_am_dim256.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v3-50000_am_dim256.safetensors",
|
||||
"size": "774.4MB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v3-50000_am_dim128.safetensors (dim128/Animagine)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[396MB] AnyTest Controlnet Lora (dim128) for Animagine. A strict control model.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v3-50000_am_dim128.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v3-50000_am_dim128.safetensors",
|
||||
"size": "395.7MB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v3-50000_pn_dim256.safetensors (dim256/Pony)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[774MB] AnyTest Controlnet Lora (dim256) for Pony. A strict control model.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v3-50000_pn_dim256.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v3-50000_pn_dim256.safetensors",
|
||||
"size": "774.4MB"
|
||||
},
|
||||
{
|
||||
"name": "CN-anytest_v3-50000_pn_dim128.safetensors (dim128/Pony)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL",
|
||||
"description": "[396MB] AnyTest Controlnet Lora (dim128) for Pony. A strict control model.",
|
||||
"reference": "https://huggingface.co/2vXpSwA7/iroiro-lora/tree/main",
|
||||
"filename": "CN-anytest_v3-50000_pn_dim128.safetensors",
|
||||
"url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v3-50000_pn_dim128.safetensors",
|
||||
"size": "395.7MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Kijai/ToonCrafter model checkpoint (interpolation fp16)",
|
||||
"type": "checkpoint",
|
||||
"base": "ToonCrafter",
|
||||
"save_path": "checkpoints/ToonCrafter",
|
||||
"description": "[5.25GB] ToonCrafter checkpoint model for ComfyUI-DynamiCrafterWrapper",
|
||||
"reference": "https://huggingface.co/Kijai/DynamiCrafter_pruned",
|
||||
"filename": "tooncrafter_512_interp-fp16.safetensors",
|
||||
"url": "https://huggingface.co/Kijai/DynamiCrafter_pruned/resolve/main/tooncrafter_512_interp-fp16.safetensors",
|
||||
"size": "5.25GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "xinsir/Controlnet-Scribble-Sdxl-1.0",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/controlnet-scribble-sdxl-1.0",
|
||||
"description": "[2.5GB] Controlnet SDXL Scribble model.",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-scribble-sdxl-1.0",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-scribble-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
{
|
||||
"name": "xinsir/Controlnet-Canny-Sdxl-1.0 (V2)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/controlnet-canny-sdxl-1.0",
|
||||
"description": "[2.5GB] Controlnet SDXL Canny model.",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-canny-sdxl-1.0",
|
||||
"filename": "diffusion_pytorch_model_V2.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-canny-sdxl-1.0/resolve/main/diffusion_pytorch_model_V2.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
{
|
||||
"name": "xinsir/Controlnet-Openpose-Sdxl-1.0",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/controlnet-openpose-sdxl-1.0",
|
||||
"description": "[2.5GB] Controlnet SDXL Openpose model.",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-openpose-sdxl-1.0",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-openpose-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
{
|
||||
"name": "xinsir/Controlnet-Openpose-Sdxl-1.0 (Ver. twins)",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/controlnet-openpose-sdxl-1.0",
|
||||
"description": "[2.5GB] Controlnet SDXL Openpose model. (Ver. twins)",
|
||||
"reference": "https://huggingface.co/xinsir/controlnet-openpose-sdxl-1.0",
|
||||
"filename": "diffusion_pytorch_model_twins.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/controlnet-openpose-sdxl-1.0/resolve/main/diffusion_pytorch_model_twins.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
{
|
||||
"name": "xinsir/Controlnet-Scribble-Sdxl-1.0-Anime",
|
||||
"type": "controlnet",
|
||||
"base": "SDXL",
|
||||
"save_path": "controlnet/SDXL/controlnet-scribble-sdxl-1.0-anime",
|
||||
"description": "[2.5GB] Controlnet SDXL Scribble model. (Ver. anime)",
|
||||
"reference": "https://huggingface.co/xinsir/anime-painter",
|
||||
"filename": "diffusion_pytorch_model.safetensors",
|
||||
"url": "https://huggingface.co/xinsir/anime-painter/resolve/main/diffusion_pytorch_model.safetensors",
|
||||
"size": "2.50GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Doubiiu/ToonCrafter model checkpoint",
|
||||
"type": "checkpoint",
|
||||
"base": "ToonCrafter",
|
||||
"save_path": "custom_nodes/ComfyUI-ToonCrafter/ToonCrafter/checkpoints/tooncrafter_512_interp_v1",
|
||||
"description": "[10.5GB] ToonCrafter checkpoint model for ComfyUI-ToonCrafter",
|
||||
"reference": "https://huggingface.co/Doubiiu/ToonCrafter/tree/main",
|
||||
"filename": "model.ckpt",
|
||||
"url": "https://huggingface.co/Doubiiu/ToonCrafter/resolve/main/model.ckpt",
|
||||
"size": "10.5GB"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "comfyui-manager"
|
||||
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||
version = "2.50.1"
|
||||
version = "2.50.3"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user