mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-17 02:12:58 +08:00
improve: [a/]() link population
update DB
This commit is contained in:
parent
4662b3dfbd
commit
3f51b7d2dd
10
__init__.py
10
__init__.py
@ -20,7 +20,7 @@ import nodes
|
|||||||
import torch
|
import torch
|
||||||
|
|
||||||
|
|
||||||
version = [1, 13, 6]
|
version = [1, 13, 7]
|
||||||
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
||||||
print(f"### Loading: ComfyUI-Manager ({version_str})")
|
print(f"### Loading: ComfyUI-Manager ({version_str})")
|
||||||
|
|
||||||
@ -756,7 +756,7 @@ def convert_markdown_to_html(input_text):
|
|||||||
pattern_white = re.compile(r'%%([^*]+)%%')
|
pattern_white = re.compile(r'%%([^*]+)%%')
|
||||||
|
|
||||||
def replace_a(match):
|
def replace_a(match):
|
||||||
return f"<a href='{match.group(2)}'>{match.group(1)}</a>"
|
return f"<a href='{match.group(2)}' target='blank'>{match.group(1)}</a>"
|
||||||
|
|
||||||
def replace_w(match):
|
def replace_w(match):
|
||||||
return f"<p class='cm-warn-note'>{match.group(1)}</p>"
|
return f"<p class='cm-warn-note'>{match.group(1)}</p>"
|
||||||
@ -785,6 +785,9 @@ def populate_markdown(x):
|
|||||||
if 'description' in x:
|
if 'description' in x:
|
||||||
x['description'] = convert_markdown_to_html(x['description'])
|
x['description'] = convert_markdown_to_html(x['description'])
|
||||||
|
|
||||||
|
if 'name' in x:
|
||||||
|
x['name'] = x['name'].replace('<', '<').replace('>', '>')
|
||||||
|
|
||||||
if 'title' in x:
|
if 'title' in x:
|
||||||
x['title'] = x['title'].replace('<', '<').replace('>', '>')
|
x['title'] = x['title'].replace('<', '<').replace('>', '>')
|
||||||
|
|
||||||
@ -891,6 +894,9 @@ async def fetch_externalmodel_list(request):
|
|||||||
|
|
||||||
check_model_installed(json_obj)
|
check_model_installed(json_obj)
|
||||||
|
|
||||||
|
for x in json_obj['models']:
|
||||||
|
populate_markdown(x)
|
||||||
|
|
||||||
return web.json_response(json_obj, content_type='application/json')
|
return web.json_response(json_obj, content_type='application/json')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1338,94 +1338,104 @@
|
|||||||
"url": "https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomOut.ckpt"
|
"url": "https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomOut.ckpt"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter_sd15.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter_sd15.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "Pressing 'install' directly downloads the model from the ComfyUI_IPAdapter_plus/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter_sd15.bin",
|
"filename": "ip-adapter_sd15.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter_sd15_light.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter_sd15_light.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "Use this when text prompt is more important than reference images",
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter_sd15_light.bin",
|
"filename": "ip-adapter_sd15_light.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15_light.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15_light.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter-plus_sd15.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter_sd15_vit-G.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "Pressing 'install' directly downloads the model from the ComfyUI_IPAdapter_plus/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter-plus_sd15.bin",
|
"filename": "ip-adapter_sd15_vit-G.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-plus_sd15.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15_vit-G.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter-plus-face_sd15.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter-plus_sd15.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "Pressing 'install' directly downloads the model from the ComfyUI_IPAdapter_plus/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter-plus-face_sd15.bin",
|
"filename": "ip-adapter-plus_sd15.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-plus-face_sd15.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-plus_sd15.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter-full-face_sd15.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter-plus-face_sd15.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "Pressing 'install' directly downloads the model from the ComfyUI_IPAdapter_plus/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter-full-face_sd15.bin",
|
"filename": "ip-adapter-plus-face_sd15.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-full-face_sd15.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-plus-face_sd15.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter_sdxl.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter-full-face_sd15.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter-full-face_sd15.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-full-face_sd15.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter_sdxl.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "Pressing 'install' directly downloads the model from the ComfyUI_IPAdapter_plus/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter_sdxl.bin",
|
"filename": "ip-adapter_sdxl.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter_sdxl.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter_sdxl.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter_sdxl_vit-h.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter_sdxl_vit-h.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter_sdxl_vit-h.bin",
|
"filename": "ip-adapter_sdxl_vit-h.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter_sdxl_vit-h.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter_sdxl_vit-h.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter-plus_sdxl_vit-h.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter-plus_sdxl_vit-h.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter-plus_sdxl_vit-h.bin",
|
"filename": "ip-adapter-plus_sdxl_vit-h.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter-plus_sdxl_vit-h.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter-plus_sdxl_vit-h.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ip-adapter-plus-face_sdxl_vit-h.bin<BR>(ComfyUI_IPAdapter_plus)",
|
"name": "ip-adapter-plus-face_sdxl_vit-h.safetensors",
|
||||||
"type": "IP-Adapter",
|
"type": "IP-Adapter",
|
||||||
"base": "SDXL",
|
"base": "SDXL",
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
"save_path": "ipadapter",
|
||||||
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
"filename": "ip-adapter-plus-face_sdxl_vit-h.bin",
|
"filename": "ip-adapter-plus-face_sdxl_vit-h.safetensors",
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter-plus-face_sdxl_vit-h.bin"
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter-plus-face_sdxl_vit-h.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "pfg-novel-n10.pt",
|
"name": "pfg-novel-n10.pt",
|
||||||
|
|||||||
@ -1,5 +1,106 @@
|
|||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
|
{
|
||||||
|
"name": "ip-adapter_sd15.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter_sd15.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter_sd15_light.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter_sd15_light.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15_light.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter_sd15_vit-G.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter_sd15_vit-G.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15_vit-G.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter-plus_sd15.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter-plus_sd15.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-plus_sd15.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter-plus-face_sd15.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter-plus-face_sd15.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-plus-face_sd15.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter-full-face_sd15.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter-full-face_sd15.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter-full-face_sd15.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter_sdxl.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SDXL",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter_sdxl.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter_sdxl.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter_sdxl_vit-h.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SDXL",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter_sdxl_vit-h.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter_sdxl_vit-h.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter-plus_sdxl_vit-h.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SDXL",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter-plus_sdxl_vit-h.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter-plus_sdxl_vit-h.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ip-adapter-plus-face_sdxl_vit-h.safetensors",
|
||||||
|
"type": "IP-Adapter",
|
||||||
|
"base": "SDXL",
|
||||||
|
"save_path": "ipadapter",
|
||||||
|
"description": "This model requires the use of the SD1.5 encoder despite being for SDXL checkpoints",
|
||||||
|
"reference": "https://huggingface.co/h94/IP-Adapter",
|
||||||
|
"filename": "ip-adapter-plus-face_sdxl_vit-h.safetensors",
|
||||||
|
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter-plus-face_sdxl_vit-h.safetensors"
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "SDXL-Turbo 1.0 (fp16)",
|
"name": "SDXL-Turbo 1.0 (fp16)",
|
||||||
"type": "checkpoints",
|
"type": "checkpoints",
|
||||||
@ -235,26 +336,6 @@
|
|||||||
"url": "https://github.com/hben35096/assets/releases/download/yolo8/skin_yolov8n-seg_800.pt"
|
"url": "https://github.com/hben35096/assets/releases/download/yolo8/skin_yolov8n-seg_800.pt"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
"name": "ip-adapter-plus_sdxl_vit-h.bin<BR>(install to ComfyUI_IPAdapter_plus)",
|
|
||||||
"type": "IP-Adapter",
|
|
||||||
"base": "SDXL",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
|
||||||
"description": "Pressing 'install' directly downloads the model from the ComfyUI_IPAdapter_plus/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
|
||||||
"filename": "ip-adapter-plus_sdxl_vit-h.bin",
|
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter-plus_sdxl_vit-h.bin"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ip-adapter_sdxl_vit-h.bin<BR>(install to ComfyUI_IPAdapter_plus)",
|
|
||||||
"type": "IP-Adapter",
|
|
||||||
"base": "SDXL",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_IPAdapter_plus/models",
|
|
||||||
"description": "Pressing 'install' directly downloads the model from the ComfyUI_IPAdapter_plus/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
|
||||||
"reference": "https://huggingface.co/h94/IP-Adapter",
|
|
||||||
"filename": "ip-adapter_sdxl_vit-h.bin",
|
|
||||||
"url": "https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/ip-adapter_sdxl_vit-h.bin"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "CiaraRowles/temporaldiff-v1-animatediff.ckpt (ComfyUI-AnimateDiff-Evolved)",
|
"name": "CiaraRowles/temporaldiff-v1-animatediff.ckpt (ComfyUI-AnimateDiff-Evolved)",
|
||||||
"type": "animatediff",
|
"type": "animatediff",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user