Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0eb1cbce43 | ||
|
|
a935c8bb35 | ||
|
|
03eea8ce15 | ||
|
|
76b1adebc4 | ||
|
|
3be8f685bd | ||
|
|
4a392395ab | ||
|
|
fd9755e4a0 | ||
|
|
34151b03ef | ||
|
|
f63205f86c | ||
|
|
5e5867528d | ||
|
|
05623b0e13 | ||
|
|
12602da16c | ||
|
|
2b6dee9949 | ||
|
|
11fa305508 | ||
|
|
b532a3e784 | ||
|
|
f37f5b0ae2 | ||
|
|
c779573204 | ||
|
|
897debb106 | ||
|
|
0b43716c56 | ||
|
|
4ad1c8a238 | ||
|
|
9578ce0820 | ||
|
|
c5d8a1b3ad | ||
|
|
99049db807 | ||
|
|
70de42ccea | ||
|
|
fb74f39793 | ||
|
|
ef130b23ef | ||
|
|
2549dc7d20 | ||
|
|
85a03e6249 | ||
|
|
0903f28b0c | ||
|
|
c663907e37 | ||
|
|
830be27eb2 | ||
|
|
041f4e4bb5 | ||
|
|
d3fa87fd94 | ||
|
|
4dffb5d593 | ||
|
|
b114672e03 | ||
|
|
3c3713553e |
29
cm-cli.py
29
cm-cli.py
@@ -37,7 +37,6 @@ from manager_core import unified_manager
|
|||||||
import cnr_utils
|
import cnr_utils
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
comfyui_manager_path = os.path.abspath(os.path.dirname(__file__))
|
comfyui_manager_path = os.path.abspath(os.path.dirname(__file__))
|
||||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||||
|
|
||||||
@@ -118,7 +117,7 @@ class Ctx:
|
|||||||
if channel is not None:
|
if channel is not None:
|
||||||
self.channel = channel
|
self.channel = channel
|
||||||
|
|
||||||
asyncio.run(unified_manager.reload(cache_mode=self.mode == 'cache'))
|
asyncio.run(unified_manager.reload(cache_mode=self.mode == 'cache', dont_wait=False))
|
||||||
asyncio.run(unified_manager.load_nightly(self.channel, self.mode))
|
asyncio.run(unified_manager.load_nightly(self.channel, self.mode))
|
||||||
|
|
||||||
def set_no_deps(self, no_deps):
|
def set_no_deps(self, no_deps):
|
||||||
@@ -537,7 +536,7 @@ def get_all_installed_node_specs():
|
|||||||
res.append(node_spec_str)
|
res.append(node_spec_str)
|
||||||
processed.add(k)
|
processed.add(k)
|
||||||
|
|
||||||
for k, _ in unified_manager.cnr_inactive_nodes.keys():
|
for k in unified_manager.cnr_inactive_nodes.keys():
|
||||||
if k in processed:
|
if k in processed:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
@@ -546,7 +545,7 @@ def get_all_installed_node_specs():
|
|||||||
node_spec_str = f"{k}@{str(latest[0])}"
|
node_spec_str = f"{k}@{str(latest[0])}"
|
||||||
res.append(node_spec_str)
|
res.append(node_spec_str)
|
||||||
|
|
||||||
for k, _ in unified_manager.nightly_inactive_nodes.keys():
|
for k in unified_manager.nightly_inactive_nodes.keys():
|
||||||
if k in processed:
|
if k in processed:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
@@ -624,7 +623,10 @@ def install(
|
|||||||
cmd_ctx.set_user_directory(user_directory)
|
cmd_ctx.set_user_directory(user_directory)
|
||||||
cmd_ctx.set_channel_mode(channel, mode)
|
cmd_ctx.set_channel_mode(channel, mode)
|
||||||
cmd_ctx.set_no_deps(no_deps)
|
cmd_ctx.set_no_deps(no_deps)
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
for_each_nodes(nodes, act=install_node)
|
for_each_nodes(nodes, act=install_node)
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
|
|
||||||
@app.command(help="Reinstall custom nodes")
|
@app.command(help="Reinstall custom nodes")
|
||||||
@@ -659,7 +661,10 @@ def reinstall(
|
|||||||
cmd_ctx.set_user_directory(user_directory)
|
cmd_ctx.set_user_directory(user_directory)
|
||||||
cmd_ctx.set_channel_mode(channel, mode)
|
cmd_ctx.set_channel_mode(channel, mode)
|
||||||
cmd_ctx.set_no_deps(no_deps)
|
cmd_ctx.set_no_deps(no_deps)
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
for_each_nodes(nodes, act=reinstall_node)
|
for_each_nodes(nodes, act=reinstall_node)
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
|
|
||||||
@app.command(help="Uninstall custom nodes")
|
@app.command(help="Uninstall custom nodes")
|
||||||
@@ -711,12 +716,15 @@ def update(
|
|||||||
if 'all' in nodes:
|
if 'all' in nodes:
|
||||||
asyncio.run(auto_save_snapshot())
|
asyncio.run(auto_save_snapshot())
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
|
|
||||||
for x in nodes:
|
for x in nodes:
|
||||||
if x.lower() in ['comfyui', 'comfy', 'all']:
|
if x.lower() in ['comfyui', 'comfy', 'all']:
|
||||||
update_comfyui()
|
update_comfyui()
|
||||||
break
|
break
|
||||||
|
|
||||||
update_parallel(nodes)
|
update_parallel(nodes)
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
|
|
||||||
@app.command(help="Disable custom nodes")
|
@app.command(help="Disable custom nodes")
|
||||||
@@ -809,7 +817,9 @@ def fix(
|
|||||||
if 'all' in nodes:
|
if 'all' in nodes:
|
||||||
asyncio.run(auto_save_snapshot())
|
asyncio.run(auto_save_snapshot())
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
for_each_nodes(nodes, fix_node, allow_all=True)
|
for_each_nodes(nodes, fix_node, allow_all=True)
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
|
|
||||||
@app.command("show-versions", help="Show all available versions of the node")
|
@app.command("show-versions", help="Show all available versions of the node")
|
||||||
@@ -1060,12 +1070,14 @@ def restore_snapshot(
|
|||||||
print(f"[bold red]ERROR: `{snapshot_path}` is not exists.[/bold red]")
|
print(f"[bold red]ERROR: `{snapshot_path}` is not exists.[/bold red]")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
try:
|
try:
|
||||||
asyncio.run(core.restore_snapshot(snapshot_path, extras))
|
asyncio.run(core.restore_snapshot(snapshot_path, extras))
|
||||||
except Exception:
|
except Exception:
|
||||||
print("[bold red]ERROR: Failed to restore snapshot.[/bold red]")
|
print("[bold red]ERROR: Failed to restore snapshot.[/bold red]")
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
raise typer.Exit(code=1)
|
raise typer.Exit(code=1)
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
|
|
||||||
@app.command(
|
@app.command(
|
||||||
@@ -1089,11 +1101,14 @@ def restore_dependencies(
|
|||||||
|
|
||||||
total = len(node_paths)
|
total = len(node_paths)
|
||||||
i = 1
|
i = 1
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
for x in node_paths:
|
for x in node_paths:
|
||||||
print("----------------------------------------------------------------------------------------------------")
|
print("----------------------------------------------------------------------------------------------------")
|
||||||
print(f"Restoring [{i}/{total}]: {x}")
|
print(f"Restoring [{i}/{total}]: {x}")
|
||||||
unified_manager.execute_install_script('', x, instant_execution=True)
|
unified_manager.execute_install_script('', x, instant_execution=True)
|
||||||
i += 1
|
i += 1
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
|
|
||||||
@app.command(
|
@app.command(
|
||||||
@@ -1105,7 +1120,10 @@ def post_install(
|
|||||||
)
|
)
|
||||||
):
|
):
|
||||||
path = os.path.expanduser(path)
|
path = os.path.expanduser(path)
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
unified_manager.execute_install_script('', path, instant_execution=True)
|
unified_manager.execute_install_script('', path, instant_execution=True)
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
|
|
||||||
@app.command(
|
@app.command(
|
||||||
@@ -1147,6 +1165,8 @@ def install_deps(
|
|||||||
print(f"[bold red]Invalid json file: {deps}[/bold red]")
|
print(f"[bold red]Invalid json file: {deps}[/bold red]")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||||
for k in json_obj['custom_nodes'].keys():
|
for k in json_obj['custom_nodes'].keys():
|
||||||
state = core.simple_check_custom_node(k)
|
state = core.simple_check_custom_node(k)
|
||||||
if state == 'installed':
|
if state == 'installed':
|
||||||
@@ -1155,6 +1175,7 @@ def install_deps(
|
|||||||
asyncio.run(core.gitclone_install(k, instant_execution=True))
|
asyncio.run(core.gitclone_install(k, instant_execution=True))
|
||||||
else: # disabled
|
else: # disabled
|
||||||
core.gitclone_set_active([k], False)
|
core.gitclone_set_active([k], False)
|
||||||
|
pip_fixer.fix_broken()
|
||||||
|
|
||||||
print("Dependency installation and activation complete.")
|
print("Dependency installation and activation complete.")
|
||||||
|
|
||||||
|
|||||||
610
custom-node-list.json
Normal file → Executable file
610
custom-node-list.json
Normal file → Executable file
@@ -4015,6 +4015,17 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI Nodes for using Spout streams."
|
"description": "ComfyUI Nodes for using Spout streams."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Jovi_Measure",
|
||||||
|
"id": "jovi_measure",
|
||||||
|
"reference": "https://github.com/Amorano/Jovi_Measure",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Amorano/Jovi_Measure"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Image metrics nodes for ComfyUI"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Umikaze-job",
|
"author": "Umikaze-job",
|
||||||
"title": "select_folder_path_easy",
|
"title": "select_folder_path_easy",
|
||||||
@@ -5299,6 +5310,17 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI adaptation of https://github.com/G-U-N/Motion-I2V"
|
"description": "ComfyUI adaptation of https://github.com/G-U-N/Motion-I2V"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "IDGallagher",
|
||||||
|
"title": "IG-Motion-Search",
|
||||||
|
"id": "motion-video-search",
|
||||||
|
"reference": "https://github.com/IDGallagher/MotionVideoSearch",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/IDGallagher/MotionVideoSearch"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes for searching videos by motion"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "violet-chen",
|
"author": "violet-chen",
|
||||||
"title": "comfyui-psd2png",
|
"title": "comfyui-psd2png",
|
||||||
@@ -5343,6 +5365,37 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Hair transfer"
|
"description": "Hair transfer"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "lldacing",
|
||||||
|
"title": "ComfyUI_PuLID_Flux_ll",
|
||||||
|
"id": "comfyui_pulid_flux_ll",
|
||||||
|
"reference": "https://github.com/lldacing/ComfyUI_PuLID_Flux_ll",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lldacing/ComfyUI_PuLID_Flux_ll"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The implementation for PuLID-Flux, support TeaCache, no model pollution."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "lldacing",
|
||||||
|
"title": "ComfyUI_BiRefNet_ll",
|
||||||
|
"reference": "https://github.com/lldacing/ComfyUI_BiRefNet_ll",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lldacing/ComfyUI_BiRefNet_ll"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Sync with version of BiRefNet. NODES:AutoDownloadBiRefNetModel, LoadRembgByBiRefNetModel, RembgByBiRefNet."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "lldacing",
|
||||||
|
"title": "ComfyUI_Patches_ll",
|
||||||
|
"reference": "https://github.com/lldacing/ComfyUI_Patches_ll",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lldacing/ComfyUI_Patches_ll"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Some patches for Flux|HunYuanVideo etc, support TeaCache, PuLID."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "CosmicLaca",
|
"author": "CosmicLaca",
|
||||||
"title": "Primere nodes for ComfyUI",
|
"title": "Primere nodes for ComfyUI",
|
||||||
@@ -5474,7 +5527,7 @@
|
|||||||
"https://github.com/Limitex/ComfyUI-Diffusers"
|
"https://github.com/Limitex/ComfyUI-Diffusers"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This extension enables the use of the diffuser pipeline in ComfyUI."
|
"description": "This extension enables the use of the diffuser pipeline in ComfyUI. It also includes nodes related to Stream Diffusion."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "aiXander",
|
"author": "aiXander",
|
||||||
@@ -7428,6 +7481,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This node provides lip-sync capabilities in ComfyUI using ByteDance's LatentSync model. It allows you to synchronize video lips with audio input."
|
"description": "This node provides lip-sync capabilities in ComfyUI using ByteDance's LatentSync model. It allows you to synchronize video lips with audio input."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "ShmuelRonen",
|
||||||
|
"title": "ComfyUI-HunyuanVideoSamplerSave",
|
||||||
|
"reference": "https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoSamplerSave",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoSamplerSave"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node implementation for optimized video generation and motion effects, designed to work with Hunyuan text-to-video models."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "redhottensors",
|
"author": "redhottensors",
|
||||||
"title": "ComfyUI-Prediction",
|
"title": "ComfyUI-Prediction",
|
||||||
@@ -8307,17 +8370,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This node improves the quality of the image mask. more suitable for image composite matting"
|
"description": "This node improves the quality of the image mask. more suitable for image composite matting"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "Pos13",
|
|
||||||
"title": "Cyclist",
|
|
||||||
"id": "cyclist",
|
|
||||||
"reference": "https://github.com/Pos13/comfyui-cyclist",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Pos13/comfyui-cyclist"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This extension provides tools to iterate generation results between runs. In general, it's for cycles."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "ExponentialML",
|
"author": "ExponentialML",
|
||||||
"title": "ComfyUI_ModelScopeT2V",
|
"title": "ComfyUI_ModelScopeT2V",
|
||||||
@@ -9951,7 +10003,7 @@
|
|||||||
"https://github.com/smthemex/ComfyUI_Stable_Makeup"
|
"https://github.com/smthemex/ComfyUI_Stable_Makeup"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "You can apply makeup to the characters in comfyui\nStable_Makeup From: [a/Stable_Makeup](https://github.com/Xiaojiu-z/Stable-Makeup)"
|
"description": "you can using stable makeup when use comfyUI"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "smthemex",
|
"author": "smthemex",
|
||||||
@@ -10242,6 +10294,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "You can use TRELLIS in comfyUI\n[a/TRELLIS](https://github.com/microsoft/TRELLIS/tree/main), Structured 3D Latents for Scalable and Versatile 3D Generation"
|
"description": "You can use TRELLIS in comfyUI\n[a/TRELLIS](https://github.com/microsoft/TRELLIS/tree/main), Structured 3D Latents for Scalable and Versatile 3D Generation"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "smthemex",
|
||||||
|
"title": "ComfyUI_SVFR",
|
||||||
|
"reference": "https://github.com/smthemex/ComfyUI_SVFR",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/smthemex/ComfyUI_SVFR"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "SVFR is a unified framework for face video restoration that supports tasks such as BFR, Colorization, Inpainting,you can use it in ComfyUI"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "choey",
|
"author": "choey",
|
||||||
"title": "Comfy-Topaz",
|
"title": "Comfy-Topaz",
|
||||||
@@ -11374,6 +11436,26 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Image Manipulation and Prompt Generation Nodes"
|
"description": "Image Manipulation and Prompt Generation Nodes"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "GraftingRayman",
|
||||||
|
"title": "ComfyUI QueueTube",
|
||||||
|
"reference": "https://github.com/GraftingRayman/ComfyUI_QueueTube",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/GraftingRayman/ComfyUI_QueueTube"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "These nodes allow your YouTube LiveStream viewers to create on your local ComfyUI, you can make this a members only feature with a screen behind you displaying your members creations"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "GraftingRayman",
|
||||||
|
"title": "ComfyUI-PuLID-Flux-GR",
|
||||||
|
"reference": "https://github.com/GraftingRayman/ComfyUI-PuLID-Flux-GR",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/GraftingRayman/ComfyUI-PuLID-Flux-GR"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a PuLID node that has been extended with new features."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "royceschultz",
|
"author": "royceschultz",
|
||||||
"title": "ComfyUI-Notifications",
|
"title": "ComfyUI-Notifications",
|
||||||
@@ -12255,7 +12337,7 @@
|
|||||||
"https://github.com/exdysa/comfyui-selector"
|
"https://github.com/exdysa/comfyui-selector"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes:Selector. Quick and dirty parameter generator node for ComfyUI."
|
"description": "Selector and Recourse. Presets & failsafes. Work flow. EXDYSA"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "Jin Liu",
|
"author": "Jin Liu",
|
||||||
@@ -12668,17 +12750,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes:Image Dimension Resizer, Image Sizer, Random Ratio, Show Text, Random Title Character, Random Wildcard Tag Picker, Random Show Atm Loc Outfit, Contains Word, Elements Concatenator, ..."
|
"description": "Nodes:Image Dimension Resizer, Image Sizer, Random Ratio, Show Text, Random Title Character, Random Wildcard Tag Picker, Random Show Atm Loc Outfit, Contains Word, Elements Concatenator, ..."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "leiweiqiang",
|
|
||||||
"title": "ComfyUI-TRA",
|
|
||||||
"id": "tra",
|
|
||||||
"reference": "https://github.com/leiweiqiang/ComfyUI-TRA",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/leiweiqiang/ComfyUI-TRA"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes:TCL EbSynth, TCL Extract Frames (From File), TCL Extract Frames (From Video), TCL Combine Frames, TCL Save Video (From Frames)"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "hwhaocool",
|
"author": "hwhaocool",
|
||||||
"title": "ComfyUI-Select-Any",
|
"title": "ComfyUI-Select-Any",
|
||||||
@@ -14790,6 +14861,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This repository contains custom nodes for ComfyUI that integrate the fal.ai FLUX.1 [dev] with LoRA API, specifically for text-to-image generation. These nodes allow you to use the FLUX.1 model directly within your ComfyUI workflows."
|
"description": "This repository contains custom nodes for ComfyUI that integrate the fal.ai FLUX.1 [dev] with LoRA API, specifically for text-to-image generation. These nodes allow you to use the FLUX.1 model directly within your ComfyUI workflows."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "yhayano-ponotech",
|
||||||
|
"title": "ComfyUI Local Save Node",
|
||||||
|
"reference": "https://github.com/yhayano-ponotech/comfyui-save-image-local",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yhayano-ponotech/comfyui-save-image-local"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom node for directly downloading generated images to your local PC with customizable filenames and formats (PNG/JPEG)."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Rvage0815",
|
"author": "Rvage0815",
|
||||||
"title": "ComfyUI-RvTools",
|
"title": "ComfyUI-RvTools",
|
||||||
@@ -15291,16 +15372,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES:Object Mask.\nNOTE:push [a/yolov8x-seg.pt](https://github.com/ultralytics/assets/releases/download/v8.2.0/yolov8x-seg.pt) in models/yolo"
|
"description": "NODES:Object Mask.\nNOTE:push [a/yolov8x-seg.pt](https://github.com/ultralytics/assets/releases/download/v8.2.0/yolov8x-seg.pt) in models/yolo"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "lldacing",
|
|
||||||
"title": "ComfyUI_BiRefNet_ll",
|
|
||||||
"reference": "https://github.com/lldacing/ComfyUI_BiRefNet_ll",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/lldacing/ComfyUI_BiRefNet_ll"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Sync with version of BiRefNet. NODES:AutoDownloadBiRefNetModel, LoadRembgByBiRefNetModel, RembgByBiRefNet."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Tenney95",
|
"author": "Tenney95",
|
||||||
"title": "ComfyUI-NodeAligner",
|
"title": "ComfyUI-NodeAligner",
|
||||||
@@ -15542,17 +15613,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This repository contains a custom node for ComfyUI that pads an image to be square, filling the new pixels black."
|
"description": "This repository contains a custom node for ComfyUI that pads an image to be square, filling the new pixels black."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "amorano",
|
|
||||||
"title": "Cozy Link Toggle",
|
|
||||||
"id": "cozyLinkToggle",
|
|
||||||
"reference": "https://github.com/cozy-comfyui/cozy_link_toggle",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/cozy-comfyui/cozy_link_toggle"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Toggle ComfyUI Graph Links On/Off from the Menu Bar. Provides an easy example on how to register and use the ComfyUI menubar extensions."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "revirevy",
|
"author": "revirevy",
|
||||||
"title": "Comfyui_saveimage_imgbb",
|
"title": "Comfyui_saveimage_imgbb",
|
||||||
@@ -15959,17 +16019,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This plugin works with [a/IF_AI_Tools](https://github.com/if-ai/ComfyUI-IF_AI_tools) to build a workflow in ComfyUI that uses AI to assist in generating prompts."
|
"description": "This plugin works with [a/IF_AI_Tools](https://github.com/if-ai/ComfyUI-IF_AI_tools) to build a workflow in ComfyUI that uses AI to assist in generating prompts."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "jetchopper",
|
|
||||||
"title": "ComfyUI-GeneraNodes",
|
|
||||||
"id": "genera",
|
|
||||||
"reference": "https://github.com/evolox/ComfyUI-GeneraNodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/evolox/ComfyUI-GeneraNodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Genera custom nodes and extensions"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Nojahhh",
|
"author": "Nojahhh",
|
||||||
"title": "ComfyUI GLM-4 Wrapper",
|
"title": "ComfyUI GLM-4 Wrapper",
|
||||||
@@ -16694,21 +16743,21 @@
|
|||||||
"description": "NODES:Aesthetics, Aesthetics V2, Load AI Toolkit Latent Flux, Send_to_Eagle"
|
"description": "NODES:Aesthetics, Aesthetics V2, Load AI Toolkit Latent Flux, Send_to_Eagle"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "mithamunda",
|
"author": "theshubzworld",
|
||||||
"title": "OllamaKiller Node for ComfyUI",
|
"title": "OllamaKiller Node for ComfyUI",
|
||||||
"reference": "https://github.com/mithamunda/ComfyUI-ollama_killer",
|
"reference": "https://github.com/theshubzworld/ComfyUI-ollama_killer",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/mithamunda/ComfyUI-ollama_killer"
|
"https://github.com/theshubzworld/ComfyUI-ollama_killer"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "OllamaKiller is a utility node for ComfyUI designed to manage VRAM usage more efficiently by automatically terminating the ollama_llama_server.exe process. This is particularly useful for users with limited VRAM, allowing them to clear up memory after running models and improve workflow performance."
|
"description": "OllamaKiller is a utility node for ComfyUI designed to manage VRAM usage more efficiently by automatically terminating the ollama_llama_server.exe process. This is particularly useful for users with limited VRAM, allowing them to clear up memory after running models and improve workflow performance."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "mithamunda",
|
"author": "theshubzworld",
|
||||||
"title": "SD3.5 Empty Latent Size Picker",
|
"title": "SD3.5 Empty Latent Size Picker",
|
||||||
"reference": "https://github.com/mithamunda/ComfyUI-SD3.5-Latent-Size-Picker",
|
"reference": "https://github.com/theshubzworld/ComfyUI-SD3.5-Latent-Size-Picker",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/mithamunda/ComfyUI-SD3.5-Latent-Size-Picker"
|
"https://github.com/theshubzworld/ComfyUI-SD3.5-Latent-Size-Picker"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A utility node for generating empty latent tensors in Stable Diffusion v3.5-compatible resolutions. This node allows for custom batch sizes, width/height overrides, and inverting aspect ratios, ensuring flexibility and compatibility in ComfyUI workflows."
|
"description": "A utility node for generating empty latent tensors in Stable Diffusion v3.5-compatible resolutions. This node allows for custom batch sizes, width/height overrides, and inverting aspect ratios, ensuring flexibility and compatibility in ComfyUI workflows."
|
||||||
@@ -17258,6 +17307,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Another comfy implementation for the short video generation project hpcaitech/Open-Sora, supporting latest V2 and V3 models as well as image to video functions, etc."
|
"description": "Another comfy implementation for the short video generation project hpcaitech/Open-Sora, supporting latest V2 and V3 models as well as image to video functions, etc."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "bombax-xiaoice",
|
||||||
|
"title": "ComfyUI-OpenSoraPlan",
|
||||||
|
"reference": "https://github.com/bombax-xiaoice/ComfyUI-OpenSoraPlan",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bombax-xiaoice/ComfyUI-OpenSoraPlan"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Another comfy implementation for the short video generation project PKU-YuanGroup/Open-Sora-Plan, supporting latest 1.3.0 and 1.2.0 and image to video feature, etc."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "chenbaiyujason",
|
"author": "chenbaiyujason",
|
||||||
"title": "ComfyUI-SCStepFun",
|
"title": "ComfyUI-SCStepFun",
|
||||||
@@ -17422,6 +17481,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: String Formatter, String List"
|
"description": "NODES: String Formatter, String List"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "liuqianhonga",
|
||||||
|
"title": "ComfyUI-QHNodes",
|
||||||
|
"reference": "https://github.com/liuqianhonga/ComfyUI-QHNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/liuqianhonga/ComfyUI-QHNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node collection developed for ComfyUI, offering preset dimensions for Latent, loading LoRA from folders, and integrating multiple commonly used custom nodes."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "duhaifeng",
|
"author": "duhaifeng",
|
||||||
"title": "ComfyUI-BiRefNet-lite",
|
"title": "ComfyUI-BiRefNet-lite",
|
||||||
@@ -17482,6 +17551,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "StyleModelApply adds more controls"
|
"description": "StyleModelApply adds more controls"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "yichengup",
|
||||||
|
"title": "Comfyui_Redux_Advanced",
|
||||||
|
"reference": "https://github.com/yichengup/Comfyui_Redux_Advanced",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yichengup/Comfyui_Redux_Advanced"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Redux style adds more controls"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Horizon Team",
|
"author": "Horizon Team",
|
||||||
"title": "ComfyUI_FluxMod",
|
"title": "ComfyUI_FluxMod",
|
||||||
@@ -17969,12 +18048,12 @@
|
|||||||
"description": "Advanced samplers with new noise scaling math to enable SDE sampling with all publicly available rectified flow models; new unsampling/noise inversion methods and other advanced techniques for inpainting and/or guiding the sampling process with latent images. 40 sampler types, 20 noise types, 7 noise scaling modes, in a single node. Also includes a wide variety of QoF and other utility nodes for manipulating sigmas, latents, images, and more."
|
"description": "Advanced samplers with new noise scaling math to enable SDE sampling with all publicly available rectified flow models; new unsampling/noise inversion methods and other advanced techniques for inpainting and/or guiding the sampling process with latent images. 40 sampler types, 20 noise types, 7 noise scaling modes, in a single node. Also includes a wide variety of QoF and other utility nodes for manipulating sigmas, latents, images, and more."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "mithamunda",
|
"author": "theshubzworld",
|
||||||
"title": "Together Vision Node",
|
"title": "Together Vision Node",
|
||||||
"id": "comfyui_together_vision",
|
"id": "comfyui_together_vision",
|
||||||
"reference": "https://github.com/mithamunda/ComfyUI-TogetherVision",
|
"reference": "https://github.com/theshubzworld/ComfyUI-TogetherVision",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/mithamunda/ComfyUI-TogetherVision"
|
"https://github.com/theshubzworld/ComfyUI-TogetherVision"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A custom ComfyUI node for generating AI-powered image descriptions using Together AI's Vision models (both free and paid versions). Features include customizable prompts, advanced generation parameters, and robust image handling with comprehensive error management."
|
"description": "A custom ComfyUI node for generating AI-powered image descriptions using Together AI's Vision models (both free and paid versions). Features include customizable prompts, advanced generation parameters, and robust image handling with comprehensive error management."
|
||||||
@@ -18073,6 +18152,17 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Write prompt words like WebUI"
|
"description": "Write prompt words like WebUI"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "weilin9999",
|
||||||
|
"title": "WeiLin-Comfyui-Tools",
|
||||||
|
"id": "Comfyui-Tools",
|
||||||
|
"reference": "https://github.com/weilin9999/WeiLin-Comfyui-Tools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/weilin9999/WeiLin-Comfyui-Tools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "quickly use the prompt word tool in ComfyUI"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "jax-explorer",
|
"author": "jax-explorer",
|
||||||
"title": "comfyui-model-dynamic-loader",
|
"title": "comfyui-model-dynamic-loader",
|
||||||
@@ -18103,6 +18193,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
|
"description": "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "LucipherDev",
|
||||||
|
"title": "ComfyUI-TangoFlux",
|
||||||
|
"reference": "https://github.com/LucipherDev/ComfyUI-TangoFlux",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-TangoFlux"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Custom Nodes for 'TangoFlux: Super Fast and Faithful Text to Audio Generation with Flow Matching'. This generates high-quality 44.1kHz audio up to 30 seconds using just a text prompt."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "envy-ai",
|
"author": "envy-ai",
|
||||||
"title": "ComfyUI-ConDelta",
|
"title": "ComfyUI-ConDelta",
|
||||||
@@ -18592,6 +18692,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This is a ComfyUI plugin that makes it easier to call and run workflows from RunningHub in your local ComfyUI setup."
|
"description": "This is a ComfyUI plugin that makes it easier to call and run workflows from RunningHub in your local ComfyUI setup."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "shahkoorosh",
|
||||||
|
"title": "ComfyUI-PersianText",
|
||||||
|
"reference": "https://github.com/shahkoorosh/ComfyUI-PersianText",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/shahkoorosh/ComfyUI-PersianText"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A powerful ComfyUI node for rendering text with advanced styling options, including full support for Persian/Farsi and Arabic scripts."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "wqjuser",
|
"author": "wqjuser",
|
||||||
"title": "ComfyUI-Chat-Image",
|
"title": "ComfyUI-Chat-Image",
|
||||||
@@ -18674,6 +18784,28 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This node pack helps to convert various files to Markdown. It supports pdf, pptx, xlsx, docx, html and image files."
|
"description": "This node pack helps to convert various files to Markdown. It supports pdf, pptx, xlsx, docx, html and image files."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "ciga2011",
|
||||||
|
"title": "ComfyUI Pollinations",
|
||||||
|
"id": "pollinations",
|
||||||
|
"reference": "https://github.com/ciga2011/ComfyUI-Pollinations",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ciga2011/ComfyUI-Pollinations"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Generate images from text prompts using Pollinations' AI models for free."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ciga2011",
|
||||||
|
"title": "ComfyUI Prompt Optimizer",
|
||||||
|
"id": "promptoptimizer",
|
||||||
|
"reference": "https://github.com/ciga2011/ComfyUI-PromptOptimizer",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ciga2011/ComfyUI-PromptOptimizer"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Optimize prompts for text-to-image models at no cost."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "IgalOgonov",
|
"author": "IgalOgonov",
|
||||||
"title": "Simple String Repository",
|
"title": "Simple String Repository",
|
||||||
@@ -18876,7 +19008,7 @@
|
|||||||
"https://github.com/cenzijing/ComfyUI-Markmap"
|
"https://github.com/cenzijing/ComfyUI-Markmap"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A ComfyUI custom node for creating mindmaps from markdown"
|
"description": "A ComfyUI custom node for creating mindmaps from markdown"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "bongsang",
|
"author": "bongsang",
|
||||||
@@ -19009,6 +19141,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A custom LoRA-loading node designed to prevent issues such as blurriness and other artifacts when loading multiple LoRAs in HunYuan Video.\nUsage Instructions: The connection method remains unchanged from the original. The only difference is the additional blocks_type option. Please select double_blocks."
|
"description": "A custom LoRA-loading node designed to prevent issues such as blurriness and other artifacts when loading multiple LoRAs in HunYuan Video.\nUsage Instructions: The connection method remains unchanged from the original. The only difference is the additional blocks_type option. Please select double_blocks."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "facok",
|
||||||
|
"title": "ComfyUI-TeaCacheHunyuanVideo",
|
||||||
|
"reference": "https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a TeaCache acceleration node for HunYuan Video, supporting the native node workflow for seamless upgrades. Simply choose the acceleration multiplier you want—currently, three levels are available."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "FinetunersAI",
|
"author": "FinetunersAI",
|
||||||
"title": "ComfyUI_Finetuners_Suite",
|
"title": "ComfyUI_Finetuners_Suite",
|
||||||
@@ -19083,15 +19225,339 @@
|
|||||||
"description": "gguf node for comfyui"
|
"description": "gguf node for comfyui"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "LucipherDev",
|
"author": "ainewsto",
|
||||||
"title": "ComfyUI-TangoFlux",
|
"title": "comfyui-labs-google",
|
||||||
"reference": "https://github.com/LucipherDev/ComfyUI-TangoFlux",
|
"reference": "https://github.com/ainewsto/comfyui-labs-google",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/LucipherDev/ComfyUI-TangoFlux"
|
"https://github.com/ainewsto/comfyui-labs-google"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI Custom Nodes for 'TangoFlux: Super Fast and Faithful Text to Audio Generation with Flow Matching'. This generates high-quality 44.1kHz audio up to 30 seconds using just a text prompt."
|
"description": "NODES: ComfyUI-ImageFx, ComfyUI-Whisk"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-ViewData",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-ViewData",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-ViewData"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that displays the type and contents of whatever is connected to the input. In the case of a Tensor object, it shows the shape instead of its value."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-JMESPath",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-JMESPath",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-JMESPath"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that runs a [a/JMESPath](https://jmespath.org/) query against input JSON and outputs the result."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-jq",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-jq",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-jq"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that runs a [a/jq](https://jqlang.github.io/jq/) query against input JSON and outputs the result."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-ImageLabel",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-ImageLabel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-ImageLabel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that extends an image vertically to add a label either above or below it."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-TrackAndWheel",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-TrackAndWheel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-TrackAndWheel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI extension that improves panning and zooming on trackpads and with the mouse wheel."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "nmlen",
|
||||||
|
"title": "comfyui-mosaic-blur",
|
||||||
|
"reference": "https://github.com/nmlen/comfyui-mosaic-blur",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/nmlen/comfyui-mosaic-blur"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple mosaic blur node for ComfyUI that uses CV2 or Pillow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jerrylongyan",
|
||||||
|
"title": "ComfyUI-My-Mask",
|
||||||
|
"reference": "https://github.com/jerrylongyan/ComfyUI-My-Mask",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jerrylongyan/ComfyUI-My-Mask"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Some nodes for processing masks, currently including nodes that fill in the concave parts of existing masks with convex hulls."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mira-6",
|
||||||
|
"title": "comfyui-sasolver",
|
||||||
|
"reference": "https://github.com/mira-6/comfyui-sasolver",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/mira-6/comfyui-sasolver"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "SASolver for Comfyui. Adapted from [a/comfyanonymous/ComfyUI#4454](https://github.com/comfyanonymous/ComfyUI/pull/4454) and [a/https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler](https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "dreamhartley",
|
||||||
|
"title": "ComfyUI_show_seed",
|
||||||
|
"reference": "https://github.com/dreamhartley/ComfyUI_show_seed",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/dreamhartley/ComfyUI_show_seed"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node that saves images while displaying the seed value used in generation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bubbliiiing",
|
||||||
|
"title": "Video Generation Nodes for EasyAnimate",
|
||||||
|
"id": "easyanimatenodes",
|
||||||
|
"reference": "https://github.com/aigc-apps/EasyAnimate",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/aigc-apps/EasyAnimate"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Video Generation Nodes for EasyAnimate, which suppors text-to-video, image-to-video, video-to-video and different controls."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "DraconicDragon",
|
||||||
|
"title": "ComfyUI-Venice-API",
|
||||||
|
"reference": "https://github.com/DraconicDragon/ComfyUI-Venice-API",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/DraconicDragon/ComfyUI-Venice-API"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node implementation for ComfyUI that integrates with venice.ai's Flux and SDXL image generation models. This project is adapted from [a/ComfyUI-FLUX-TOGETHER-API](https://github.com/BZcreativ/ComfyUI-FLUX-TOGETHER-API) to work with the venice.ai API."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Wenaka2004",
|
||||||
|
"title": "ComfyUI-TagClassifier",
|
||||||
|
"reference": "https://github.com/Wenaka2004/ComfyUI-TagClassifier",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Wenaka2004/ComfyUI-TagClassifier"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom node,use Deepseek v3 to classify the input tags"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-render",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-render",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-render"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The ultimate openpose render node for ComfyUI with flexible input, output and adjustment."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-estimator"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Super fast tensorrt performance with accuate pose estimation of dwpose model, giving the detecting threshold control, plus pose image render and pose json format output. Fine control for pose plotting."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Enhanced features with flexible choice of inputs and outputs, fine control for pose plotting, freedom to composite poses and fast local pose editting."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "a-und-b",
|
||||||
|
"title": "ComfyUI_Delay",
|
||||||
|
"reference": "https://github.com/a-und-b/ComfyUI_Delay",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/a-und-b/ComfyUI_Delay"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple custom node for ComfyUI to artificially delay a workflow at any point."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "a-und-b",
|
||||||
|
"title": "ComfyUI_JSON_Helper",
|
||||||
|
"reference": "https://github.com/a-und-b/ComfyUI_JSON_Helper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/a-und-b/ComfyUI_JSON_Helper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple custom node for ComfyUI that converts JSON strings to JSON objects."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dial",
|
||||||
|
"title": "Redial Discomphy - Discord Integration for ComfyUI",
|
||||||
|
"reference": "https://github.com/r3dial/redial-discomphy",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/r3dial/redial-discomphy"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node for ComfyUI that enables direct posting of images, videos, and messages to Discord channels. This node seamlessly integrates your ComfyUI workflows with Discord communication, allowing you to automatically share your generated content."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dsd",
|
||||||
|
"title": "Comfyui-Template-Loader",
|
||||||
|
"reference": "https://github.com/r3dsd/comfyui-template-loader",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/r3dsd/comfyui-template-loader"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Easily Load Your Frequently Used Prompts in ComfyUI\nWith ComfyUI Template Loader, managing and reusing your favorite prompts has never been simpler. Save time and streamline your workflow by loading your go-to templates with just a few clicks!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dsd",
|
||||||
|
"title": "HommageTools for ComfyUI",
|
||||||
|
"reference": "https://github.com/ArtHommage/HommageTools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ArtHommage/HommageTools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Entry point for HommageTools node collection for ComfyUI. Handles node registration, imports, and logging configuration."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "l-comm",
|
||||||
|
"title": "WatermarkRemoval",
|
||||||
|
"id": "watermark-removal",
|
||||||
|
"reference": "https://github.com/l-comm/WatermarkRemoval",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/l-comm/WatermarkRemoval"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Watermark removal project"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jhj0517",
|
||||||
|
"title": "ComfyUI-Moondream-Gaze-Detection",
|
||||||
|
"id": "comfyui-moondream-gaze-detection",
|
||||||
|
"reference": "https://github.com/jhj0517/ComfyUI-Moondream-Gaze-Detection",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jhj0517/ComfyUI-Moondream-Gaze-Detection"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Moondream's gaze detection feature wrapper node."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jnxmx",
|
||||||
|
"title": "ComfyUI_HuggingFace_Downloader",
|
||||||
|
"reference": "https://github.com/jnxmx/ComfyUI_HuggingFace_Downloader",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jnxmx/ComfyUI_HuggingFace_Downloader"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The ComfyUI HuggingFace Downloader is a custom node extension for ComfyUI, designed to streamline the process of downloading models, checkpoints, and other resources from the Hugging Face Hub directly into your models directory. This tool simplifies workflow integration by providing a seamless interface to select and download required resources."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "philiprodriguez",
|
||||||
|
"title": "ComfyUI-HunyuanImageLatentToVideoLatent",
|
||||||
|
"reference": "https://github.com/philiprodriguez/ComfyUI-HunyuanImageLatentToVideoLatent",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/philiprodriguez/ComfyUI-HunyuanImageLatentToVideoLatent"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node which copies a given latent's samples tensor along the time axis ((length - 1) // 4) + 1 times to form a longer latent (see EmptyHunyuanLatentVideo's implementation for why this specific number of copies is used) and then prepares a noise_mask tensor of the same shape such that the value of the mask for a given time step is given by the function at https://www.desmos.com/calculator/vhw74mr1vh."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "benjiyaya",
|
||||||
|
"title": "ComfyUI-HunyuanVideoImagesGuider",
|
||||||
|
"reference": "https://github.com/benjiyaya/ComfyUI-HunyuanVideoImagesGuider",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/benjiyaya/ComfyUI-HunyuanVideoImagesGuider"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A specialized node for ComfyUI that enable advanced motion and animation capabilities for image as guider for video processing In Hunyuan Video."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Zeks",
|
||||||
|
"title": "comfyui-rapidfire",
|
||||||
|
"reference": "https://github.com/Zeks/comfyui-rapidfire",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Zeks/comfyui-rapidfire"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A set of nodes for rapidfiring the half backed latents, cleaning up obvious bad generations and automatically queueing the rest to fully generate."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "meanin2",
|
||||||
|
"title": "ComfyUI Watermark Image Node",
|
||||||
|
"reference": "https://github.com/meanin2/comfyui-watermarking",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/meanin2/comfyui-watermarking"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node allows you to overlay a watermark image onto an existing image within ComfyUI."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Kurdknight",
|
||||||
|
"title": "KurdKnight ComfyUI System Check Node",
|
||||||
|
"reference": "https://github.com/Kurdknight/Kurdknight_comfycheck",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Kurdknight/Kurdknight_comfycheck"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A comprehensive system information node for ComfyUI that provides detailed information about your system, GPU, CUDA, and AI libraries configuration. Works on both Windows and Linux systems."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ThepExcel",
|
||||||
|
"title": "Multiline Text Choice Node for ComfyUI",
|
||||||
|
"reference": "https://github.com/ThepExcel/aiangelgallery-comfyui",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ThepExcel/aiangelgallery-comfyui"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node for ComfyUI allows users to input multiline text and select a specific line by its number. The node processes the input and returns the selected line along with its index."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hosterosi",
|
||||||
|
"title": "ComfyUI OpenAI Node",
|
||||||
|
"reference": "https://github.com/hosterosi/ComfyUI_OpenAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hosterosi/ComfyUI_OpenAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node for ComfyUI allows users to input multiline text and select a specific line by its number. The node processes the input and returns the selected line along with its index."
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -124,18 +124,47 @@ def gitcheck(path, do_fetch=False):
|
|||||||
print("CUSTOM NODE CHECK: Error")
|
print("CUSTOM NODE CHECK: Error")
|
||||||
|
|
||||||
|
|
||||||
|
def get_remote_name(repo):
|
||||||
|
available_remotes = [remote.name for remote in repo.remotes]
|
||||||
|
if 'origin' in available_remotes:
|
||||||
|
return 'origin'
|
||||||
|
elif 'upstream' in available_remotes:
|
||||||
|
return 'upstream'
|
||||||
|
elif len(available_remotes) > 0:
|
||||||
|
return available_remotes[0]
|
||||||
|
|
||||||
|
if not available_remotes:
|
||||||
|
print(f"[ComfyUI-Manager] No remotes are configured for this repository: {repo.working_dir}")
|
||||||
|
else:
|
||||||
|
print(f"[ComfyUI-Manager] Available remotes in '{repo.working_dir}': ")
|
||||||
|
for remote in available_remotes:
|
||||||
|
print(f"- {remote}")
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def switch_to_default_branch(repo):
|
def switch_to_default_branch(repo):
|
||||||
|
remote_name = get_remote_name(repo)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
if remote_name is None:
|
||||||
|
return False
|
||||||
|
|
||||||
|
default_branch = repo.git.symbolic_ref(f'refs/remotes/{remote_name}/HEAD').replace(f'refs/remotes/{remote_name}/', '')
|
||||||
repo.git.checkout(default_branch)
|
repo.git.checkout(default_branch)
|
||||||
|
return True
|
||||||
except:
|
except:
|
||||||
try:
|
try:
|
||||||
repo.git.checkout(repo.heads.master)
|
repo.git.checkout(repo.heads.master)
|
||||||
except:
|
except:
|
||||||
try:
|
try:
|
||||||
repo.git.checkout('-b', 'master', 'origin/master')
|
if remote_name is not None:
|
||||||
|
repo.git.checkout('-b', 'master', f'{remote_name}/master')
|
||||||
except:
|
except:
|
||||||
print("[ComfyUI Manager] Failed to switch to the default branch")
|
pass
|
||||||
|
|
||||||
|
print("[ComfyUI Manager] Failed to switch to the default branch")
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def gitpull(path):
|
def gitpull(path):
|
||||||
@@ -166,7 +195,11 @@ def gitpull(path):
|
|||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
|
|
||||||
remote.fetch()
|
remote.fetch()
|
||||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
if f'{remote_name}/{branch_name}' in repo.refs:
|
||||||
|
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||||
|
else:
|
||||||
|
print("CUSTOM NODE PULL: Fail") # update fail
|
||||||
|
return
|
||||||
|
|
||||||
if commit_hash == remote_commit_hash:
|
if commit_hash == remote_commit_hash:
|
||||||
print("CUSTOM NODE PULL: None") # there is no update
|
print("CUSTOM NODE PULL: None") # there is no update
|
||||||
|
|||||||
5393
github-stats.json
5393
github-stats.json
File diff suppressed because it is too large
Load Diff
@@ -110,3 +110,6 @@ def add_on_revision_detected(k, f):
|
|||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
else:
|
else:
|
||||||
variables['cm.on_revision_detected_handler'].append((k, f))
|
variables['cm.on_revision_detected_handler'].append((k, f))
|
||||||
|
|
||||||
|
|
||||||
|
error_dict = {}
|
||||||
@@ -4,23 +4,49 @@ from typing import List
|
|||||||
import manager_util
|
import manager_util
|
||||||
import toml
|
import toml
|
||||||
import os
|
import os
|
||||||
|
import asyncio
|
||||||
|
|
||||||
base_url = "https://api.comfy.org"
|
base_url = "https://api.comfy.org"
|
||||||
|
|
||||||
|
|
||||||
async def get_cnr_data(page=1, limit=1000, cache_mode=True):
|
lock = asyncio.Lock()
|
||||||
try:
|
|
||||||
uri = f'{base_url}/nodes?page={page}&limit={limit}'
|
|
||||||
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode)
|
|
||||||
|
|
||||||
|
is_cache_loading = False
|
||||||
|
|
||||||
|
async def get_cnr_data(page=1, limit=1000, cache_mode=True, dont_wait=True):
|
||||||
|
global is_cache_loading
|
||||||
|
|
||||||
|
uri = f'{base_url}/nodes?page={page}&limit={limit}'
|
||||||
|
|
||||||
|
def touch(json_obj):
|
||||||
for v in json_obj['nodes']:
|
for v in json_obj['nodes']:
|
||||||
if 'latest_version' not in v:
|
if 'latest_version' not in v:
|
||||||
v['latest_version'] = dict(version='nightly')
|
v['latest_version'] = dict(version='nightly')
|
||||||
|
|
||||||
|
|
||||||
|
if cache_mode:
|
||||||
|
if dont_wait:
|
||||||
|
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode, dont_wait=True) # fallback
|
||||||
|
|
||||||
|
if 'nodes' in json_obj:
|
||||||
|
touch(json_obj)
|
||||||
|
return json_obj['nodes']
|
||||||
|
else:
|
||||||
|
return {}
|
||||||
|
|
||||||
|
is_cache_loading = True
|
||||||
|
|
||||||
|
try:
|
||||||
|
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode)
|
||||||
|
touch(json_obj)
|
||||||
|
|
||||||
return json_obj['nodes']
|
return json_obj['nodes']
|
||||||
except:
|
except:
|
||||||
res = {}
|
res = {}
|
||||||
print("Cannot connect to comfyregistry.")
|
print("Cannot connect to comfyregistry.")
|
||||||
|
finally:
|
||||||
|
if cache_mode:
|
||||||
|
is_cache_loading = False
|
||||||
|
|
||||||
return res
|
return res
|
||||||
|
|
||||||
@@ -92,7 +118,7 @@ def install_node(node_id, version=None):
|
|||||||
|
|
||||||
|
|
||||||
def all_versions_of_node(node_id):
|
def all_versions_of_node(node_id):
|
||||||
url = f"https://api.comfy.org/nodes/{node_id}/versions?statuses=NodeVersionStatusActive&statuses=NodeVersionStatusPending"
|
url = f"{base_url}/nodes/{node_id}/versions?statuses=NodeVersionStatusActive&statuses=NodeVersionStatusPending"
|
||||||
|
|
||||||
response = requests.get(url)
|
response = requests.get(url)
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
@@ -113,7 +139,7 @@ def read_cnr_info(fullpath):
|
|||||||
data = toml.load(f)
|
data = toml.load(f)
|
||||||
|
|
||||||
project = data.get('project', {})
|
project = data.get('project', {})
|
||||||
name = project.get('name')
|
name = project.get('name').strip().lower()
|
||||||
version = project.get('version')
|
version = project.get('version')
|
||||||
|
|
||||||
urls = project.get('urls', {})
|
urls = project.get('urls', {})
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ import manager_downloader
|
|||||||
from node_package import InstalledNodePackage
|
from node_package import InstalledNodePackage
|
||||||
|
|
||||||
|
|
||||||
version_code = [3, 5]
|
version_code = [3, 8]
|
||||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||||
|
|
||||||
|
|
||||||
@@ -122,7 +122,6 @@ def check_invalid_nodes():
|
|||||||
if subdir in ['.disabled', '__pycache__']:
|
if subdir in ['.disabled', '__pycache__']:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
||||||
package = unified_manager.installed_node_packages.get(subdir)
|
package = unified_manager.installed_node_packages.get(subdir)
|
||||||
if not package:
|
if not package:
|
||||||
continue
|
continue
|
||||||
@@ -233,7 +232,7 @@ def remap_pip_package(pkg):
|
|||||||
def is_blacklisted(name):
|
def is_blacklisted(name):
|
||||||
name = name.strip()
|
name = name.strip()
|
||||||
|
|
||||||
pattern = r'([^<>!=]+)([<>!=]=?)([^ ]*)'
|
pattern = r'([^<>!~=]+)([<>!~=]=?)([^ ]*)'
|
||||||
match = re.search(pattern, name)
|
match = re.search(pattern, name)
|
||||||
|
|
||||||
if match:
|
if match:
|
||||||
@@ -248,7 +247,7 @@ def is_blacklisted(name):
|
|||||||
if match is None:
|
if match is None:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
return True
|
return True
|
||||||
elif match.group(2) in ['<=', '==', '<']:
|
elif match.group(2) in ['<=', '==', '<', '~=']:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
||||||
return True
|
return True
|
||||||
@@ -262,7 +261,7 @@ def is_installed(name):
|
|||||||
if name.startswith('#'):
|
if name.startswith('#'):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
pattern = r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)'
|
pattern = r'([^<>!~=]+)([<>!~=]=?)([0-9.a-zA-Z]*)'
|
||||||
match = re.search(pattern, name)
|
match = re.search(pattern, name)
|
||||||
|
|
||||||
if match:
|
if match:
|
||||||
@@ -277,7 +276,7 @@ def is_installed(name):
|
|||||||
if match is None:
|
if match is None:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
return True
|
return True
|
||||||
elif match.group(2) in ['<=', '==', '<']:
|
elif match.group(2) in ['<=', '==', '<', '~=']:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
||||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
||||||
@@ -368,6 +367,16 @@ class UnifiedManager:
|
|||||||
self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json
|
self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json
|
||||||
self.processed_install = set()
|
self.processed_install = set()
|
||||||
|
|
||||||
|
def get_module_name(self, x):
|
||||||
|
info = self.active_nodes.get(x)
|
||||||
|
if info is None:
|
||||||
|
for url, fullpath in self.unknown_active_nodes.values():
|
||||||
|
if url == x:
|
||||||
|
return os.path.basename(fullpath)
|
||||||
|
else:
|
||||||
|
return os.path.basename(info[1])
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
def get_cnr_by_repo(self, url):
|
def get_cnr_by_repo(self, url):
|
||||||
return self.repo_cnr_map.get(git_utils.normalize_url(url))
|
return self.repo_cnr_map.get(git_utils.normalize_url(url))
|
||||||
@@ -501,18 +510,18 @@ class UnifiedManager:
|
|||||||
self.installed_node_packages[node_package.id] = node_package
|
self.installed_node_packages[node_package.id] = node_package
|
||||||
|
|
||||||
if node_package.is_disabled and node_package.is_unknown:
|
if node_package.is_disabled and node_package.is_unknown:
|
||||||
# NOTE: unknown package does not have an url.
|
url = git_utils.git_url(node_package.fullpath)
|
||||||
self.unknown_inactive_nodes[node_package.id] = ('', node_package.fullpath)
|
self.unknown_inactive_nodes[node_package.id] = (url, node_package.fullpath)
|
||||||
|
|
||||||
if node_package.is_disabled and node_package.is_nightly:
|
if node_package.is_disabled and node_package.is_nightly:
|
||||||
self.nightly_inactive_nodes[node_package.id] = node_package.fullpath
|
self.nightly_inactive_nodes[node_package.id] = node_package.fullpath
|
||||||
|
|
||||||
if node_package.is_enabled:
|
if node_package.is_enabled and not node_package.is_unknown:
|
||||||
self.active_nodes[node_package.id] = node_package.version, node_package.fullpath
|
self.active_nodes[node_package.id] = node_package.version, node_package.fullpath
|
||||||
|
|
||||||
if node_package.is_enabled and node_package.is_unknown:
|
if node_package.is_enabled and node_package.is_unknown:
|
||||||
# NOTE: unknown package does not have an url.
|
url = git_utils.git_url(node_package.fullpath)
|
||||||
self.unknown_active_nodes[node_package.id] = ('', node_package.fullpath)
|
self.unknown_active_nodes[node_package.id] = (url, node_package.fullpath)
|
||||||
|
|
||||||
if node_package.is_from_cnr and node_package.is_disabled:
|
if node_package.is_from_cnr and node_package.is_disabled:
|
||||||
self.add_to_cnr_inactive_nodes(node_package.id, node_package.version, node_package.fullpath)
|
self.add_to_cnr_inactive_nodes(node_package.id, node_package.version, node_package.fullpath)
|
||||||
@@ -664,7 +673,7 @@ class UnifiedManager:
|
|||||||
|
|
||||||
return latest
|
return latest
|
||||||
|
|
||||||
async def reload(self, cache_mode):
|
async def reload(self, cache_mode, dont_wait=True):
|
||||||
self.custom_node_map_cache = {}
|
self.custom_node_map_cache = {}
|
||||||
self.cnr_inactive_nodes = {} # node_id -> node_version -> fullpath
|
self.cnr_inactive_nodes = {} # node_id -> node_version -> fullpath
|
||||||
self.nightly_inactive_nodes = {} # node_id -> fullpath
|
self.nightly_inactive_nodes = {} # node_id -> fullpath
|
||||||
@@ -673,7 +682,7 @@ class UnifiedManager:
|
|||||||
self.active_nodes = {} # node_id -> node_version * fullpath
|
self.active_nodes = {} # node_id -> node_version * fullpath
|
||||||
|
|
||||||
# reload 'cnr_map' and 'repo_cnr_map'
|
# reload 'cnr_map' and 'repo_cnr_map'
|
||||||
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode)
|
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode, dont_wait=dont_wait)
|
||||||
|
|
||||||
for x in cnrs:
|
for x in cnrs:
|
||||||
self.cnr_map[x['id']] = x
|
self.cnr_map[x['id']] = x
|
||||||
@@ -723,8 +732,11 @@ class UnifiedManager:
|
|||||||
return res
|
return res
|
||||||
|
|
||||||
async def get_custom_nodes(self, channel, mode):
|
async def get_custom_nodes(self, channel, mode):
|
||||||
default_channel = normalize_channel('default')
|
# default_channel = normalize_channel('default')
|
||||||
cache = self.custom_node_map_cache.get((default_channel, mode)) # CNR/nightly should always be based on the default channel.
|
# cache = self.custom_node_map_cache.get((default_channel, mode)) # CNR/nightly should always be based on the default channel.
|
||||||
|
|
||||||
|
channel = normalize_channel(channel)
|
||||||
|
cache = self.custom_node_map_cache.get((channel, mode)) # CNR/nightly should always be based on the default channel.
|
||||||
|
|
||||||
if cache is not None:
|
if cache is not None:
|
||||||
return cache
|
return cache
|
||||||
@@ -749,6 +761,8 @@ class UnifiedManager:
|
|||||||
v['title'] = cnr['name']
|
v['title'] = cnr['name']
|
||||||
v['description'] = cnr['description']
|
v['description'] = cnr['description']
|
||||||
v['health'] = '-'
|
v['health'] = '-'
|
||||||
|
if 'repository' in cnr:
|
||||||
|
v['repository'] = cnr['repository']
|
||||||
added_cnr.add(cnr['id'])
|
added_cnr.add(cnr['id'])
|
||||||
node_id = v['id']
|
node_id = v['id']
|
||||||
else:
|
else:
|
||||||
@@ -889,7 +903,7 @@ class UnifiedManager:
|
|||||||
|
|
||||||
archive_name = f"CNR_temp_{str(uuid.uuid4())}.zip" # should be unpredictable name - security precaution
|
archive_name = f"CNR_temp_{str(uuid.uuid4())}.zip" # should be unpredictable name - security precaution
|
||||||
download_path = os.path.join(get_default_custom_nodes_path(), archive_name)
|
download_path = os.path.join(get_default_custom_nodes_path(), archive_name)
|
||||||
manager_downloader.download_url(node_info.download_url, get_default_custom_nodes_path(), archive_name)
|
manager_downloader.basic_download_url(node_info.download_url, get_default_custom_nodes_path(), archive_name)
|
||||||
|
|
||||||
# 2. extract files into <node_id>
|
# 2. extract files into <node_id>
|
||||||
install_path = self.active_nodes[node_id][1]
|
install_path = self.active_nodes[node_id][1]
|
||||||
@@ -1227,16 +1241,21 @@ class UnifiedManager:
|
|||||||
repo = git.Repo(repo_path)
|
repo = git.Repo(repo_path)
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
return result.fail(f"Failed to switch to default branch: {repo_path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
|
|
||||||
if current_branch.tracking_branch() is None:
|
if current_branch.tracking_branch() is None:
|
||||||
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
||||||
remote_name = 'origin'
|
remote_name = get_remote_name(repo)
|
||||||
else:
|
else:
|
||||||
remote_name = current_branch.tracking_branch().remote_name
|
remote_name = current_branch.tracking_branch().remote_name
|
||||||
|
|
||||||
|
if remote_name is None:
|
||||||
|
return result.fail(f"Failed to get remote when installing: {repo_path}")
|
||||||
|
|
||||||
remote = repo.remote(name=remote_name)
|
remote = repo.remote(name=remote_name)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -1255,7 +1274,10 @@ class UnifiedManager:
|
|||||||
"-----------------------------------------------------------------------------------------\n")
|
"-----------------------------------------------------------------------------------------\n")
|
||||||
|
|
||||||
commit_hash = repo.head.commit.hexsha
|
commit_hash = repo.head.commit.hexsha
|
||||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
if f'{remote_name}/{branch_name}' in repo.refs:
|
||||||
|
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||||
|
else:
|
||||||
|
return result.fail(f"Not updatable branch: {branch_name}")
|
||||||
|
|
||||||
if commit_hash != remote_commit_hash:
|
if commit_hash != remote_commit_hash:
|
||||||
git_pull(repo_path)
|
git_pull(repo_path)
|
||||||
@@ -1316,7 +1338,10 @@ class UnifiedManager:
|
|||||||
custom_nodes = await self.get_custom_nodes(channel, mode)
|
custom_nodes = await self.get_custom_nodes(channel, mode)
|
||||||
the_node = custom_nodes.get(node_id)
|
the_node = custom_nodes.get(node_id)
|
||||||
if the_node is not None:
|
if the_node is not None:
|
||||||
repo_url = the_node['files'][0]
|
if version_spec == 'unknown':
|
||||||
|
repo_url = the_node['files'][0]
|
||||||
|
else: # nightly
|
||||||
|
repo_url = the_node['repository']
|
||||||
else:
|
else:
|
||||||
result = ManagedResult('install')
|
result = ManagedResult('install')
|
||||||
return result.fail(f"Node '{node_id}@{version_spec}' not found in [{channel}, {mode}]")
|
return result.fail(f"Node '{node_id}@{version_spec}' not found in [{channel}, {mode}]")
|
||||||
@@ -1341,6 +1366,8 @@ class UnifiedManager:
|
|||||||
elif version_spec == 'nightly':
|
elif version_spec == 'nightly':
|
||||||
cnr_utils.generate_cnr_id(to_path, node_id)
|
cnr_utils.generate_cnr_id(to_path, node_id)
|
||||||
self.active_nodes[node_id] = 'nightly', to_path
|
self.active_nodes[node_id] = 'nightly', to_path
|
||||||
|
else:
|
||||||
|
return res
|
||||||
|
|
||||||
return res.with_target(version_spec)
|
return res.with_target(version_spec)
|
||||||
|
|
||||||
@@ -1586,18 +1613,47 @@ def get_config():
|
|||||||
return cached_config
|
return cached_config
|
||||||
|
|
||||||
|
|
||||||
|
def get_remote_name(repo):
|
||||||
|
available_remotes = [remote.name for remote in repo.remotes]
|
||||||
|
if 'origin' in available_remotes:
|
||||||
|
return 'origin'
|
||||||
|
elif 'upstream' in available_remotes:
|
||||||
|
return 'upstream'
|
||||||
|
elif len(available_remotes) > 0:
|
||||||
|
return available_remotes[0]
|
||||||
|
|
||||||
|
if not available_remotes:
|
||||||
|
print(f"[ComfyUI-Manager] No remotes are configured for this repository: {repo.working_dir}")
|
||||||
|
else:
|
||||||
|
print(f"[ComfyUI-Manager] Available remotes in '{repo.working_dir}': ")
|
||||||
|
for remote in available_remotes:
|
||||||
|
print(f"- {remote}")
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def switch_to_default_branch(repo):
|
def switch_to_default_branch(repo):
|
||||||
|
remote_name = get_remote_name(repo)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
if remote_name is None:
|
||||||
|
return False
|
||||||
|
|
||||||
|
default_branch = repo.git.symbolic_ref(f'refs/remotes/{remote_name}/HEAD').replace(f'refs/remotes/{remote_name}/', '')
|
||||||
repo.git.checkout(default_branch)
|
repo.git.checkout(default_branch)
|
||||||
|
return True
|
||||||
except:
|
except:
|
||||||
try:
|
try:
|
||||||
repo.git.checkout(repo.heads.master)
|
repo.git.checkout(repo.heads.master)
|
||||||
except:
|
except:
|
||||||
try:
|
try:
|
||||||
repo.git.checkout('-b', 'master', 'origin/master')
|
if remote_name is not None:
|
||||||
|
repo.git.checkout('-b', 'master', f'{remote_name}/master')
|
||||||
except:
|
except:
|
||||||
print("[ComfyUI Manager] Failed to switch to the default branch")
|
pass
|
||||||
|
|
||||||
|
print("[ComfyUI Manager] Failed to switch to the default branch")
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
||||||
@@ -1778,7 +1834,11 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
|||||||
# Fetch the latest commits from the remote repository
|
# Fetch the latest commits from the remote repository
|
||||||
repo = git.Repo(path)
|
repo = git.Repo(path)
|
||||||
|
|
||||||
remote_name = 'origin'
|
remote_name = get_remote_name(repo)
|
||||||
|
|
||||||
|
if remote_name is None:
|
||||||
|
raise ValueError(f"No remotes are configured for this repository: {path}")
|
||||||
|
|
||||||
remote = repo.remote(name=remote_name)
|
remote = repo.remote(name=remote_name)
|
||||||
|
|
||||||
if not do_update and repo.head.is_detached:
|
if not do_update and repo.head.is_detached:
|
||||||
@@ -1788,7 +1848,8 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
|||||||
return True, True # detached branch is treated as updatable
|
return True, True # detached branch is treated as updatable
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
raise ValueError(f"Failed to switch detached branch to default branch: {path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
@@ -1805,11 +1866,16 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
|||||||
repo.git.stash()
|
repo.git.stash()
|
||||||
|
|
||||||
if f'{remote_name}/{branch_name}' not in repo.refs:
|
if f'{remote_name}/{branch_name}' not in repo.refs:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
raise ValueError(f"Failed to switch to default branch while updating: {path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
|
|
||||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
if f'{remote_name}/{branch_name}' in repo.refs:
|
||||||
|
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||||
|
else:
|
||||||
|
return False, False
|
||||||
|
|
||||||
if commit_hash == remote_commit_hash:
|
if commit_hash == remote_commit_hash:
|
||||||
repo.close()
|
repo.close()
|
||||||
@@ -1964,7 +2030,8 @@ def git_pull(path):
|
|||||||
repo.git.stash()
|
repo.git.stash()
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
raise ValueError(f"Failed to switch to default branch while pulling: {path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
remote_name = current_branch.tracking_branch().remote_name
|
remote_name = current_branch.tracking_branch().remote_name
|
||||||
@@ -2228,14 +2295,15 @@ def update_path(repo_path, instant_execution=False, no_deps=False):
|
|||||||
repo = git.Repo(repo_path)
|
repo = git.Repo(repo_path)
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
return "fail"
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
|
|
||||||
if current_branch.tracking_branch() is None:
|
if current_branch.tracking_branch() is None:
|
||||||
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
||||||
remote_name = 'origin'
|
remote_name = get_remote_name(repo)
|
||||||
else:
|
else:
|
||||||
remote_name = current_branch.tracking_branch().remote_name
|
remote_name = current_branch.tracking_branch().remote_name
|
||||||
remote = repo.remote(name=remote_name)
|
remote = repo.remote(name=remote_name)
|
||||||
@@ -2254,9 +2322,14 @@ def update_path(repo_path, instant_execution=False, no_deps=False):
|
|||||||
f"-----------------------------------------------------------------------------------------\n"
|
f"-----------------------------------------------------------------------------------------\n"
|
||||||
f'git config --global --add safe.directory "{safedir_path}"\n'
|
f'git config --global --add safe.directory "{safedir_path}"\n'
|
||||||
f"-----------------------------------------------------------------------------------------\n")
|
f"-----------------------------------------------------------------------------------------\n")
|
||||||
|
return "fail"
|
||||||
|
|
||||||
commit_hash = repo.head.commit.hexsha
|
commit_hash = repo.head.commit.hexsha
|
||||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
|
||||||
|
if f'{remote_name}/{branch_name}' in repo.refs:
|
||||||
|
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||||
|
else:
|
||||||
|
return "fail"
|
||||||
|
|
||||||
if commit_hash != remote_commit_hash:
|
if commit_hash != remote_commit_hash:
|
||||||
git_pull(repo_path)
|
git_pull(repo_path)
|
||||||
@@ -2323,11 +2396,14 @@ def check_state_of_git_node_pack_single(item, do_fetch=False, do_update_check=Tr
|
|||||||
|
|
||||||
if dir_path and os.path.exists(dir_path):
|
if dir_path and os.path.exists(dir_path):
|
||||||
if do_update_check:
|
if do_update_check:
|
||||||
update_state, success = git_repo_update_check_with(dir_path, do_fetch, do_update)
|
try:
|
||||||
if (do_update_check or do_update) and update_state:
|
update_state, success = git_repo_update_check_with(dir_path, do_fetch, do_update)
|
||||||
item['update-state'] = 'true'
|
if (do_update_check or do_update) and update_state:
|
||||||
elif do_update and not success:
|
item['update-state'] = 'true'
|
||||||
item['update-state'] = 'fail'
|
elif do_update and not success:
|
||||||
|
item['update-state'] = 'fail'
|
||||||
|
except Exception:
|
||||||
|
print(f"[ComfyUI-Manager] Failed to check state of the git node pack: {dir_path}")
|
||||||
|
|
||||||
|
|
||||||
def get_installed_pip_packages():
|
def get_installed_pip_packages():
|
||||||
@@ -2397,8 +2473,21 @@ async def get_current_snapshot():
|
|||||||
cnr_custom_nodes[info['id']] = info['ver']
|
cnr_custom_nodes[info['id']] = info['ver']
|
||||||
else:
|
else:
|
||||||
repo = git.Repo(fullpath)
|
repo = git.Repo(fullpath)
|
||||||
|
|
||||||
|
if repo.head.is_detached:
|
||||||
|
remote_name = get_remote_name(repo)
|
||||||
|
else:
|
||||||
|
current_branch = repo.active_branch
|
||||||
|
|
||||||
|
if current_branch.tracking_branch() is None:
|
||||||
|
remote_name = get_remote_name(repo)
|
||||||
|
else:
|
||||||
|
remote_name = current_branch.tracking_branch().remote_name
|
||||||
|
|
||||||
commit_hash = repo.head.commit.hexsha
|
commit_hash = repo.head.commit.hexsha
|
||||||
url = repo.remotes.origin.url
|
|
||||||
|
url = repo.remotes[remote_name].url
|
||||||
|
|
||||||
git_custom_nodes[url] = dict(hash=commit_hash, disabled=is_disabled)
|
git_custom_nodes[url] = dict(hash=commit_hash, disabled=is_disabled)
|
||||||
except:
|
except:
|
||||||
print(f"Failed to extract snapshots for the custom node '{path}'.")
|
print(f"Failed to extract snapshots for the custom node '{path}'.")
|
||||||
|
|||||||
@@ -16,7 +16,11 @@ if aria2 is not None:
|
|||||||
aria2 = aria2p.API(aria2p.Client(host=host, port=port, secret=secret))
|
aria2 = aria2p.API(aria2p.Client(host=host, port=port, secret=secret))
|
||||||
|
|
||||||
|
|
||||||
def basic_download_url(url, dest_folder, filename):
|
def basic_download_url(url, dest_folder: str, filename: str):
|
||||||
|
'''
|
||||||
|
Download file from url to dest_folder with filename
|
||||||
|
using requests library.
|
||||||
|
'''
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
# Ensure the destination folder exists
|
# Ensure the destination folder exists
|
||||||
@@ -111,4 +115,4 @@ def download_url_with_agent(url, save_path):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
print("Installation was successful.")
|
print("Installation was successful.")
|
||||||
return True
|
return True
|
||||||
|
|||||||
@@ -839,6 +839,23 @@ async def get_disabled_versions(request):
|
|||||||
return web.Response(status=400)
|
return web.Response(status=400)
|
||||||
|
|
||||||
|
|
||||||
|
@routes.post("/customnode/import_fail_info")
|
||||||
|
async def import_fail_info(request):
|
||||||
|
json_data = await request.json()
|
||||||
|
|
||||||
|
if 'cnr_id' in json_data:
|
||||||
|
module_name = core.unified_manager.get_module_name(json_data['cnr_id'])
|
||||||
|
else:
|
||||||
|
module_name = core.unified_manager.get_module_name(json_data['url'])
|
||||||
|
|
||||||
|
if module_name is not None:
|
||||||
|
info = cm_global.error_dict.get(module_name)
|
||||||
|
if info is not None:
|
||||||
|
return web.json_response(info)
|
||||||
|
|
||||||
|
return web.Response(status=400)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/reinstall")
|
@routes.post("/customnode/reinstall")
|
||||||
async def reinstall_custom_node(request):
|
async def reinstall_custom_node(request):
|
||||||
await uninstall_custom_node(request)
|
await uninstall_custom_node(request)
|
||||||
@@ -858,6 +875,8 @@ async def install_custom_node(request):
|
|||||||
cnr_id = json_data.get('id')
|
cnr_id = json_data.get('id')
|
||||||
skip_post_install = json_data.get('skip_post_install')
|
skip_post_install = json_data.get('skip_post_install')
|
||||||
|
|
||||||
|
git_url = None
|
||||||
|
|
||||||
if json_data['version'] != 'unknown':
|
if json_data['version'] != 'unknown':
|
||||||
selected_version = json_data.get('selected_version', 'latest')
|
selected_version = json_data.get('selected_version', 'latest')
|
||||||
if selected_version != 'nightly':
|
if selected_version != 'nightly':
|
||||||
@@ -865,14 +884,22 @@ async def install_custom_node(request):
|
|||||||
node_spec_str = f"{cnr_id}@{selected_version}"
|
node_spec_str = f"{cnr_id}@{selected_version}"
|
||||||
else:
|
else:
|
||||||
node_spec_str = f"{cnr_id}@nightly"
|
node_spec_str = f"{cnr_id}@nightly"
|
||||||
|
git_url = [json_data.get('repository')]
|
||||||
|
if git_url is None:
|
||||||
|
logging.error(f"[ComfyUI-Manager] Following node pack doesn't provide `nightly` version: ${git_url}")
|
||||||
|
return web.Response(status=404, text=f"Following node pack doesn't provide `nightly` version: ${git_url}")
|
||||||
else:
|
else:
|
||||||
# unknown
|
# unknown
|
||||||
unknown_name = os.path.basename(json_data['files'][0])
|
unknown_name = os.path.basename(json_data['files'][0])
|
||||||
node_spec_str = f"{unknown_name}@unknown"
|
node_spec_str = f"{unknown_name}@unknown"
|
||||||
|
git_url = json_data.get('files')
|
||||||
|
|
||||||
# apply security policy if not cnr node (nightly isn't regarded as cnr node)
|
# apply security policy if not cnr node (nightly isn't regarded as cnr node)
|
||||||
if risky_level is None:
|
if risky_level is None:
|
||||||
risky_level = await get_risky_level(json_data['files'], json_data.get('pip', []))
|
if git_url is not None:
|
||||||
|
risky_level = await get_risky_level(git_url, json_data.get('pip', []))
|
||||||
|
else:
|
||||||
|
return web.Response(status=404, text=f"Following node pack doesn't provide `nightly` version: ${git_url}")
|
||||||
|
|
||||||
if not is_allowed_security_level(risky_level):
|
if not is_allowed_security_level(risky_level):
|
||||||
logging.error(SECURITY_MESSAGE_GENERAL)
|
logging.error(SECURITY_MESSAGE_GENERAL)
|
||||||
@@ -888,7 +915,11 @@ async def install_custom_node(request):
|
|||||||
# discard post install if skip_post_install mode
|
# discard post install if skip_post_install mode
|
||||||
|
|
||||||
if res.action not in ['skip', 'enable', 'install-git', 'install-cnr', 'switch-cnr']:
|
if res.action not in ['skip', 'enable', 'install-git', 'install-cnr', 'switch-cnr']:
|
||||||
return web.Response(status=400, text=f"Installation failed: {res}")
|
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
||||||
|
return web.Response(status=400, text=res.msg)
|
||||||
|
elif not res.result:
|
||||||
|
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
||||||
|
return web.Response(status=400, text=res.msg)
|
||||||
|
|
||||||
return web.Response(status=200, text="Installation success.")
|
return web.Response(status=200, text="Installation success.")
|
||||||
|
|
||||||
@@ -912,10 +943,10 @@ async def fix_custom_node(request):
|
|||||||
res = core.unified_manager.unified_fix(node_name, node_ver)
|
res = core.unified_manager.unified_fix(node_name, node_ver)
|
||||||
|
|
||||||
if res.result:
|
if res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.json_response({}, content_type='application/json')
|
return web.json_response({}, content_type='application/json')
|
||||||
|
|
||||||
logging.error(f"ERROR: An error occurred while fixing '{node_name}@{node_ver}'.")
|
logging.error(f"\nERROR: An error occurred while fixing '{node_name}@{node_ver}'.")
|
||||||
return web.Response(status=400, text=f"An error occurred while fixing '{node_name}@{node_ver}'.")
|
return web.Response(status=400, text=f"An error occurred while fixing '{node_name}@{node_ver}'.")
|
||||||
|
|
||||||
|
|
||||||
@@ -929,10 +960,10 @@ async def install_custom_node_git_url(request):
|
|||||||
res = await core.gitclone_install(url)
|
res = await core.gitclone_install(url)
|
||||||
|
|
||||||
if res.action == 'skip':
|
if res.action == 'skip':
|
||||||
logging.info(f"Already installed: '{res.target}'")
|
logging.info(f"\nAlready installed: '{res.target}'")
|
||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
elif res.result:
|
elif res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
|
|
||||||
logging.error(res.msg)
|
logging.error(res.msg)
|
||||||
@@ -971,10 +1002,10 @@ async def uninstall_custom_node(request):
|
|||||||
res = core.unified_manager.unified_uninstall(node_name, is_unknown)
|
res = core.unified_manager.unified_uninstall(node_name, is_unknown)
|
||||||
|
|
||||||
if res.result:
|
if res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.json_response({}, content_type='application/json')
|
return web.json_response({}, content_type='application/json')
|
||||||
|
|
||||||
logging.error(f"ERROR: An error occurred while uninstalling '{node_name}'.")
|
logging.error(f"\nERROR: An error occurred while uninstalling '{node_name}'.")
|
||||||
return web.Response(status=400, text=f"An error occurred while uninstalling '{node_name}'.")
|
return web.Response(status=400, text=f"An error occurred while uninstalling '{node_name}'.")
|
||||||
|
|
||||||
|
|
||||||
@@ -998,10 +1029,10 @@ async def update_custom_node(request):
|
|||||||
manager_util.clear_pip_cache()
|
manager_util.clear_pip_cache()
|
||||||
|
|
||||||
if res.result:
|
if res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.json_response({}, content_type='application/json')
|
return web.json_response({}, content_type='application/json')
|
||||||
|
|
||||||
logging.error(f"ERROR: An error occurred while updating '{node_name}'.")
|
logging.error(f"\nERROR: An error occurred while updating '{node_name}'.")
|
||||||
return web.Response(status=400, text=f"An error occurred while updating '{node_name}'.")
|
return web.Response(status=400, text=f"An error occurred while updating '{node_name}'.")
|
||||||
|
|
||||||
|
|
||||||
@@ -1400,6 +1431,10 @@ async def default_cache_update():
|
|||||||
|
|
||||||
await asyncio.gather(a, b, c, d, e)
|
await asyncio.gather(a, b, c, d, e)
|
||||||
|
|
||||||
|
# load at least once
|
||||||
|
await core.unified_manager.reload('cache', dont_wait=False)
|
||||||
|
await core.unified_manager.get_custom_nodes('default', 'cache')
|
||||||
|
|
||||||
# NOTE: hide migration button temporarily.
|
# NOTE: hide migration button temporarily.
|
||||||
# if not core.get_config()['skip_migration_check']:
|
# if not core.get_config()['skip_migration_check']:
|
||||||
# await core.check_need_to_migrate()
|
# await core.check_need_to_migrate()
|
||||||
@@ -1419,3 +1454,4 @@ cm_global.register_extension('ComfyUI-Manager',
|
|||||||
'nodes': {},
|
'nodes': {},
|
||||||
'description': 'This extension provides the ability to manage custom nodes in ComfyUI.', })
|
'description': 'This extension provides the ability to manage custom nodes in ComfyUI.', })
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ from datetime import datetime
|
|||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import re
|
import re
|
||||||
|
import logging
|
||||||
|
|
||||||
|
|
||||||
cache_lock = threading.Lock()
|
cache_lock = threading.Lock()
|
||||||
|
|
||||||
@@ -128,20 +130,31 @@ async def get_data(uri, silent=False):
|
|||||||
return json_obj
|
return json_obj
|
||||||
|
|
||||||
|
|
||||||
async def get_data_with_cache(uri, silent=False, cache_mode=True):
|
async def get_data_with_cache(uri, silent=False, cache_mode=True, dont_wait=False):
|
||||||
cache_uri = str(simple_hash(uri)) + '_' + os.path.basename(uri).replace('&', "_").replace('?', "_").replace('=', "_")
|
cache_uri = str(simple_hash(uri)) + '_' + os.path.basename(uri).replace('&', "_").replace('?', "_").replace('=', "_")
|
||||||
cache_uri = os.path.join(cache_dir, cache_uri+'.json')
|
cache_uri = os.path.join(cache_dir, cache_uri+'.json')
|
||||||
|
|
||||||
|
if cache_mode and dont_wait:
|
||||||
|
# NOTE: return the cache if possible, even if it is expired, so do not cache
|
||||||
|
if not os.path.exists(cache_uri):
|
||||||
|
logging.error(f"[ComfyUI-Manager] The network connection is unstable, so it is operating in fallback mode: {uri}")
|
||||||
|
|
||||||
|
return {}
|
||||||
|
else:
|
||||||
|
if not is_file_created_within_one_day(cache_uri):
|
||||||
|
logging.error(f"[ComfyUI-Manager] The network connection is unstable, so it is operating in outdated cache mode: {uri}")
|
||||||
|
|
||||||
|
return await get_data(cache_uri, silent=silent)
|
||||||
|
|
||||||
if cache_mode and is_file_created_within_one_day(cache_uri):
|
if cache_mode and is_file_created_within_one_day(cache_uri):
|
||||||
json_obj = await get_data(cache_uri, silent=silent)
|
json_obj = await get_data(cache_uri, silent=silent)
|
||||||
else:
|
else:
|
||||||
json_obj = await get_data(uri, silent=silent)
|
json_obj = await get_data(uri, silent=silent)
|
||||||
|
|
||||||
with cache_lock:
|
with cache_lock:
|
||||||
with open(cache_uri, "w", encoding='utf-8') as file:
|
with open(cache_uri, "w", encoding='utf-8') as file:
|
||||||
json.dump(json_obj, file, indent=4, sort_keys=True)
|
json.dump(json_obj, file, indent=4, sort_keys=True)
|
||||||
if not silent:
|
if not silent:
|
||||||
print(f"[ComfyUI-Manager] default cache updated: {uri}")
|
logging.info(f"[ComfyUI-Manager] default cache updated: {uri}")
|
||||||
|
|
||||||
return json_obj
|
return json_obj
|
||||||
|
|
||||||
@@ -156,10 +169,10 @@ def extract_package_as_zip(file_path, extract_path):
|
|||||||
with zipfile.ZipFile(file_path, "r") as zip_ref:
|
with zipfile.ZipFile(file_path, "r") as zip_ref:
|
||||||
zip_ref.extractall(extract_path)
|
zip_ref.extractall(extract_path)
|
||||||
extracted_files = zip_ref.namelist()
|
extracted_files = zip_ref.namelist()
|
||||||
print(f"Extracted zip file to {extract_path}")
|
logging.info(f"Extracted zip file to {extract_path}")
|
||||||
return extracted_files
|
return extracted_files
|
||||||
except zipfile.BadZipFile:
|
except zipfile.BadZipFile:
|
||||||
print(f"File '{file_path}' is not a zip or is corrupted.")
|
logging.error(f"File '{file_path}' is not a zip or is corrupted.")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
@@ -183,7 +196,7 @@ def get_installed_packages(renew=False):
|
|||||||
|
|
||||||
pip_map[y[0]] = y[1]
|
pip_map[y[0]] = y[1]
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
print("[ComfyUI-Manager] Failed to retrieve the information of installed pip packages.")
|
logging.error("[ComfyUI-Manager] Failed to retrieve the information of installed pip packages.")
|
||||||
return set()
|
return set()
|
||||||
|
|
||||||
return pip_map
|
return pip_map
|
||||||
@@ -223,7 +236,7 @@ class PIPFixer:
|
|||||||
else:
|
else:
|
||||||
cmd = [sys.executable, '-m', 'pip', 'install', '--force', 'torch', 'torchvision', 'torchaudio']
|
cmd = [sys.executable, '-m', 'pip', 'install', '--force', 'torch', 'torchvision', 'torchaudio']
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
print(cmd)
|
logging.error(cmd)
|
||||||
return
|
return
|
||||||
|
|
||||||
torch_ver = StrictVersion(spec[0])
|
torch_ver = StrictVersion(spec[0])
|
||||||
@@ -234,12 +247,12 @@ class PIPFixer:
|
|||||||
cmd = [sys.executable, '-m', 'pip', 'install', '--pre',
|
cmd = [sys.executable, '-m', 'pip', 'install', '--pre',
|
||||||
'torch', 'torchvision', 'torchaudio',
|
'torch', 'torchvision', 'torchaudio',
|
||||||
'--index-url', f"https://download.pytorch.org/whl/nightly/{platform}"]
|
'--index-url', f"https://download.pytorch.org/whl/nightly/{platform}"]
|
||||||
print("[manager-core] restore PyTorch to nightly version")
|
logging.info("[ComfyUI-Manager] restore PyTorch to nightly version")
|
||||||
else:
|
else:
|
||||||
cmd = [sys.executable, '-m', 'pip', 'install',
|
cmd = [sys.executable, '-m', 'pip', 'install',
|
||||||
f'torch=={torch_ver}', f'torchvision=={torchvision_ver}', f"torchaudio=={torch_ver}",
|
f'torch=={torch_ver}', f'torchvision=={torchvision_ver}', f"torchaudio=={torch_ver}",
|
||||||
'--index-url', f"https://download.pytorch.org/whl/{platform}"]
|
'--index-url', f"https://download.pytorch.org/whl/{platform}"]
|
||||||
print(f"[manager-core] restore PyTorch to {torch_ver}+{platform}")
|
logging.info(f"[ComfyUI-Manager] restore PyTorch to {torch_ver}+{platform}")
|
||||||
|
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
|
|
||||||
@@ -252,20 +265,22 @@ class PIPFixer:
|
|||||||
cmd = [sys.executable, '-m', 'pip', 'uninstall', 'comfy']
|
cmd = [sys.executable, '-m', 'pip', 'uninstall', 'comfy']
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
|
|
||||||
print("[manager-core] 'comfy' python package is uninstalled.\nWARN: The 'comfy' package is completely unrelated to ComfyUI and should never be installed as it causes conflicts with ComfyUI.")
|
logging.warning("[ComfyUI-Manager] 'comfy' python package is uninstalled.\nWARN: The 'comfy' package is completely unrelated to ComfyUI and should never be installed as it causes conflicts with ComfyUI.")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("[manager-core] Failed to uninstall `comfy` python package")
|
logging.error("[ComfyUI-Manager] Failed to uninstall `comfy` python package")
|
||||||
print(e)
|
logging.error(e)
|
||||||
|
|
||||||
# fix torch - reinstall torch packages if version is changed
|
# fix torch - reinstall torch packages if version is changed
|
||||||
try:
|
try:
|
||||||
if self.prev_pip_versions['torch'] != new_pip_versions['torch'] \
|
if 'torch' not in self.prev_pip_versions or 'torchvision' not in self.prev_pip_versions or 'torchaudio' not in self.prev_pip_versions:
|
||||||
|
logging.error("[ComfyUI-Manager] PyTorch is not installed")
|
||||||
|
elif self.prev_pip_versions['torch'] != new_pip_versions['torch'] \
|
||||||
or self.prev_pip_versions['torchvision'] != new_pip_versions['torchvision'] \
|
or self.prev_pip_versions['torchvision'] != new_pip_versions['torchvision'] \
|
||||||
or self.prev_pip_versions['torchaudio'] != new_pip_versions['torchaudio']:
|
or self.prev_pip_versions['torchaudio'] != new_pip_versions['torchaudio']:
|
||||||
self.torch_rollback()
|
self.torch_rollback()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("[manager-core] Failed to restore PyTorch")
|
logging.error("[ComfyUI-Manager] Failed to restore PyTorch")
|
||||||
print(e)
|
logging.error(e)
|
||||||
|
|
||||||
# fix opencv
|
# fix opencv
|
||||||
try:
|
try:
|
||||||
@@ -296,10 +311,10 @@ class PIPFixer:
|
|||||||
cmd = [sys.executable, '-m', 'pip', 'install', f"{x}=={versions[0].version_string}"]
|
cmd = [sys.executable, '-m', 'pip', 'install', f"{x}=={versions[0].version_string}"]
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
|
|
||||||
print(f"[manager-core] 'opencv' dependencies were fixed: {targets}")
|
logging.info(f"[ComfyUI-Manager] 'opencv' dependencies were fixed: {targets}")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("[manager-core] Failed to restore opencv")
|
logging.error("[ComfyUI-Manager] Failed to restore opencv")
|
||||||
print(e)
|
logging.error(e)
|
||||||
|
|
||||||
# fix numpy
|
# fix numpy
|
||||||
try:
|
try:
|
||||||
@@ -308,8 +323,8 @@ class PIPFixer:
|
|||||||
if StrictVersion(np) >= StrictVersion('2'):
|
if StrictVersion(np) >= StrictVersion('2'):
|
||||||
subprocess.check_output([sys.executable, '-m', 'pip', 'install', "numpy<2"], universal_newlines=True)
|
subprocess.check_output([sys.executable, '-m', 'pip', 'install', "numpy<2"], universal_newlines=True)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("[manager-core] Failed to restore numpy")
|
logging.error("[ComfyUI-Manager] Failed to restore numpy")
|
||||||
print(e)
|
logging.error(e)
|
||||||
|
|
||||||
|
|
||||||
def sanitize(data):
|
def sanitize(data):
|
||||||
|
|||||||
@@ -45,6 +45,11 @@ async function tryInstallCustomNode(event) {
|
|||||||
show_message('This action is not allowed with this security level configuration.');
|
show_message('This action is not allowed with this security level configuration.');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
else if(response.status == 400) {
|
||||||
|
let msg = await res.text();
|
||||||
|
show_message(msg);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let response = await api.fetchApi("/manager/reboot");
|
let response = await api.fetchApi("/manager/reboot");
|
||||||
|
|||||||
@@ -963,7 +963,7 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
this.datasrc_combo.className = "cm-menu-combo";
|
this.datasrc_combo.className = "cm-menu-combo";
|
||||||
this.datasrc_combo.appendChild($el('option', { value: 'cache', text: 'DB: Channel (1day cache)' }, []));
|
this.datasrc_combo.appendChild($el('option', { value: 'cache', text: 'DB: Channel (1day cache)' }, []));
|
||||||
this.datasrc_combo.appendChild($el('option', { value: 'local', text: 'DB: Local' }, []));
|
this.datasrc_combo.appendChild($el('option', { value: 'local', text: 'DB: Local' }, []));
|
||||||
this.datasrc_combo.appendChild($el('option', { value: 'url', text: 'DB: Channel (remote)' }, []));
|
this.datasrc_combo.appendChild($el('option', { value: 'remote', text: 'DB: Channel (remote)' }, []));
|
||||||
|
|
||||||
// preview method
|
// preview method
|
||||||
let preview_combo = document.createElement("select");
|
let preview_combo = document.createElement("select");
|
||||||
|
|||||||
11
js/common.js
11
js/common.js
@@ -96,7 +96,7 @@ function internalCustomConfirm(message, confirmMessage, cancelMessage) {
|
|||||||
|
|
||||||
export function show_message(msg) {
|
export function show_message(msg) {
|
||||||
app.ui.dialog.show(msg);
|
app.ui.dialog.show(msg);
|
||||||
app.ui.dialog.element.style.zIndex = 1099;
|
app.ui.dialog.element.style.zIndex = 1100;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function sleep(ms) {
|
export async function sleep(ms) {
|
||||||
@@ -397,3 +397,12 @@ export const icons = {
|
|||||||
passed: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 426.667 426.667"><path fill="#6AC259" d="M213.333,0C95.518,0,0,95.514,0,213.333s95.518,213.333,213.333,213.333c117.828,0,213.333-95.514,213.333-213.333S331.157,0,213.333,0z M174.199,322.918l-93.935-93.931l31.309-31.309l62.626,62.622l140.894-140.898l31.309,31.309L174.199,322.918z"/></svg>',
|
passed: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 426.667 426.667"><path fill="#6AC259" d="M213.333,0C95.518,0,0,95.514,0,213.333s95.518,213.333,213.333,213.333c117.828,0,213.333-95.514,213.333-213.333S331.157,0,213.333,0z M174.199,322.918l-93.935-93.931l31.309-31.309l62.626,62.622l140.894-140.898l31.309,31.309L174.199,322.918z"/></svg>',
|
||||||
download: '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" width="100%" height="100%" viewBox="0 0 32 32"><path fill="currentColor" d="M26 24v4H6v-4H4v4a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-4zm0-10l-1.41-1.41L17 20.17V2h-2v18.17l-7.59-7.58L6 14l10 10l10-10z"></path></svg>'
|
download: '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" width="100%" height="100%" viewBox="0 0 32 32"><path fill="currentColor" d="M26 24v4H6v-4H4v4a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-4zm0-10l-1.41-1.41L17 20.17V2h-2v18.17l-7.59-7.58L6 14l10 10l10-10z"></path></svg>'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function sanitizeHTML(str) {
|
||||||
|
return str
|
||||||
|
.replace(/&/g, "&")
|
||||||
|
.replace(/</g, "<")
|
||||||
|
.replace(/>/g, ">")
|
||||||
|
.replace(/"/g, """)
|
||||||
|
.replace(/'/g, "'");
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@ import { api } from "../../scripts/api.js";
|
|||||||
|
|
||||||
import {
|
import {
|
||||||
manager_instance, rebootAPI, install_via_git_url,
|
manager_instance, rebootAPI, install_via_git_url,
|
||||||
fetchData, md5, icons, show_message, customConfirm, customAlert, customPrompt
|
fetchData, md5, icons, show_message, customConfirm, customAlert, customPrompt, sanitizeHTML
|
||||||
} from "./common.js";
|
} from "./common.js";
|
||||||
|
|
||||||
// https://cenfun.github.io/turbogrid/api.html
|
// https://cenfun.github.io/turbogrid/api.html
|
||||||
@@ -250,6 +250,13 @@ const pageCss = `
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cn-manager .cn-btn-import-failed {
|
||||||
|
background-color: #AA1111;
|
||||||
|
font-size: 10px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.cn-manager .cn-btn-install {
|
.cn-manager .cn-btn-install {
|
||||||
background-color: black;
|
background-color: black;
|
||||||
color: white;
|
color: white;
|
||||||
@@ -872,6 +879,38 @@ export class CustomNodesManager {
|
|||||||
return this.filter === ShowMode.ALTERNATIVES
|
return this.filter === ShowMode.ALTERNATIVES
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async handleImportFail(rowItem) {
|
||||||
|
var info;
|
||||||
|
if(rowItem.version == 'unknown'){
|
||||||
|
info = {
|
||||||
|
'url': rowItem.originalData.files[0]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
info = {
|
||||||
|
'cnr_id': rowItem.originalData.id
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await api.fetchApi(`/customnode/import_fail_info`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json' },
|
||||||
|
body: JSON.stringify(info)
|
||||||
|
});
|
||||||
|
|
||||||
|
let res = await response.json();
|
||||||
|
|
||||||
|
let title = `<FONT COLOR=GREEN><B>Error message occurred while importing the '${rowItem.title}' module.</B></FONT><BR><HR><BR>`
|
||||||
|
|
||||||
|
if(res.code == 400)
|
||||||
|
{
|
||||||
|
show_message(title+'The information is not available.')
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
show_message(title+sanitizeHTML(res['msg']).replace(/ /g, ' ').replace(/\n/g, '<BR>'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
renderGrid() {
|
renderGrid() {
|
||||||
|
|
||||||
// update theme
|
// update theme
|
||||||
@@ -905,6 +944,7 @@ export class CustomNodesManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let self = this;
|
||||||
const columns = [{
|
const columns = [{
|
||||||
id: 'id',
|
id: 'id',
|
||||||
name: 'ID',
|
name: 'ID',
|
||||||
@@ -918,16 +958,29 @@ export class CustomNodesManager {
|
|||||||
maxWidth: 500,
|
maxWidth: 500,
|
||||||
classMap: 'cn-node-name',
|
classMap: 'cn-node-name',
|
||||||
formatter: (title, rowItem, columnItem) => {
|
formatter: (title, rowItem, columnItem) => {
|
||||||
var prefix = '';
|
const container = document.createElement('div');
|
||||||
if(rowItem.action === 'invalid-installation') {
|
|
||||||
prefix = '<font color="red"><B>(INVALID)</B></font>';
|
|
||||||
}
|
|
||||||
|
|
||||||
else if(rowItem.action === 'import-fail') {
|
if (rowItem.action === 'invalid-installation') {
|
||||||
prefix = '<font color="red"><B>(IMPORT FAILED)</B></font>';
|
const invalidTag = document.createElement('span');
|
||||||
}
|
invalidTag.style.color = 'red';
|
||||||
|
invalidTag.innerHTML = '<b>(INVALID)</b>';
|
||||||
|
container.appendChild(invalidTag);
|
||||||
|
} else if (rowItem.action === 'import-fail') {
|
||||||
|
const button = document.createElement('button');
|
||||||
|
button.className = 'cn-btn-import-failed';
|
||||||
|
button.innerText = 'IMPORT FAILED ↗';
|
||||||
|
button.onclick = () => self.handleImportFail(rowItem);
|
||||||
|
container.appendChild(button);
|
||||||
|
container.appendChild(document.createElement('br'));
|
||||||
|
}
|
||||||
|
|
||||||
return `${prefix}<a href=${rowItem.reference} target="_blank"><b>${title}</b></a>`;
|
const link = document.createElement('a');
|
||||||
|
link.href = rowItem.reference;
|
||||||
|
link.target = '_blank';
|
||||||
|
link.innerHTML = `<b>${title}</b>`;
|
||||||
|
container.appendChild(link);
|
||||||
|
|
||||||
|
return container;
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
id: 'version',
|
id: 'version',
|
||||||
@@ -1281,7 +1334,7 @@ export class CustomNodesManager {
|
|||||||
body: JSON.stringify(data)
|
body: JSON.stringify(data)
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.error) {
|
if (res.status != 200) {
|
||||||
|
|
||||||
errorMsg = `${item.title} ${mode} failed: `;
|
errorMsg = `${item.title} ${mode} failed: `;
|
||||||
if(res.status == 403) {
|
if(res.status == 403) {
|
||||||
@@ -1289,7 +1342,7 @@ export class CustomNodesManager {
|
|||||||
} else if(res.status == 404) {
|
} else if(res.status == 404) {
|
||||||
errorMsg += `With the current security level configuration, only custom nodes from the <B>"default channel"</B> can be installed.`;
|
errorMsg += `With the current security level configuration, only custom nodes from the <B>"default channel"</B> can be installed.`;
|
||||||
} else {
|
} else {
|
||||||
errorMsg += res.error.message;
|
errorMsg += await res.text();
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@@ -1310,6 +1363,7 @@ export class CustomNodesManager {
|
|||||||
|
|
||||||
if (errorMsg) {
|
if (errorMsg) {
|
||||||
this.showError(errorMsg);
|
this.showError(errorMsg);
|
||||||
|
show_message("Installation Error:\n"+errorMsg);
|
||||||
} else {
|
} else {
|
||||||
this.showStatus(`${label} ${list.length} custom node(s) successfully`);
|
this.showStatus(`${label} ${list.length} custom node(s) successfully`);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,7 +53,9 @@ class WorkflowMetadataExtension {
|
|||||||
const nodeInfo =
|
const nodeInfo =
|
||||||
this.installedNodes[nodePackageName] ??
|
this.installedNodes[nodePackageName] ??
|
||||||
this.installedNodes[nodePackageName.toLowerCase()];
|
this.installedNodes[nodePackageName.toLowerCase()];
|
||||||
nodeVersions[nodePackageName] = nodeInfo.ver;
|
if (nodeInfo) {
|
||||||
|
nodeVersions[nodePackageName] = nodeInfo.ver;
|
||||||
|
}
|
||||||
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
||||||
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
||||||
} else {
|
} else {
|
||||||
@@ -78,7 +80,11 @@ class WorkflowMetadataExtension {
|
|||||||
workflow.extra = {};
|
workflow.extra = {};
|
||||||
}
|
}
|
||||||
const graph = this;
|
const graph = this;
|
||||||
workflow.extra["node_versions"] = extension.getGraphNodeVersions(graph);
|
try {
|
||||||
|
workflow.extra["node_versions"] = extension.getGraphNodeVersions(graph);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
return workflow;
|
return workflow;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4040,7 +4040,7 @@
|
|||||||
"name": "Comfy-Org/hunyuan_video_vae_bf16.safetensors",
|
"name": "Comfy-Org/hunyuan_video_vae_bf16.safetensors",
|
||||||
"type": "VAE",
|
"type": "VAE",
|
||||||
"base": "Hunyuan Video",
|
"base": "Hunyuan Video",
|
||||||
"save_path": "VAE",
|
"save_path": "default",
|
||||||
"description": "Huyuan Video VAE model. repackaged version.",
|
"description": "Huyuan Video VAE model. repackaged version.",
|
||||||
"reference": "https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged",
|
"reference": "https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged",
|
||||||
"filename": "hunyuan_video_vae_bf16.safetensors",
|
"filename": "hunyuan_video_vae_bf16.safetensors",
|
||||||
|
|||||||
@@ -9,7 +9,167 @@
|
|||||||
"description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel."
|
"description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel."
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "ArmandAlbert",
|
||||||
|
"title": "Kwai_font_comfyui",
|
||||||
|
"reference": "https://github.com/ArmandAlbert/Kwai_font_comfyui",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ArmandAlbert/Kwai_font_comfyui"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Kwaifont_Resnet50_Runner, Kwaifont_Resnet50_Loader, Kwaifont_Resnet101_Runner, Kwaifont_Resnet101_Loader, Kwaifont_Image_Cropper"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "SpatialDeploy",
|
||||||
|
"title": "ComfyUI-Voxels [WIP]",
|
||||||
|
"reference": "https://github.com/SpatialDeploy/ComfyUI-Voxels",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/SpatialDeploy/ComfyUI-Voxels"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Tools for creating voxel based videos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Njbx",
|
||||||
|
"title": "ComfyUI-blockswap",
|
||||||
|
"reference": "https://github.com/Njbx/ComfyUI-blockswap",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Njbx/ComfyUI-blockswap"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Block Swap"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "PATATAJEC",
|
||||||
|
"title": "Patatajec-Nodes [WIP]",
|
||||||
|
"reference": "https://github.com/PATATAJEC/Patatajec-Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/PATATAJEC/Patatajec-Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: HyVid Switcher\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sourceful-official",
|
||||||
|
"title": "comfyui-sourceful-official",
|
||||||
|
"reference": "https://github.com/sourceful-official/comfyui-sourceful-official",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sourceful-official/comfyui-sourceful-official"
|
||||||
|
],
|
||||||
|
"description": "NODES: SourcefulOfficialComfyuiIncontextThreePanels, FalFluxLoraSourcefulOfficial, FalIcLightV2SourcefulOfficial",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Alvaroeai",
|
||||||
|
"title": "ComfyUI-SunoAI-Mds",
|
||||||
|
"reference": "https://github.com/Alvaroeai/ComfyUI-SunoAI-Mds",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Alvaroeai/ComfyUI-SunoAI-Mds"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Suno Generate, Suno Download, Suno Proxy Generate, Suno Proxy Download"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "parmarjh",
|
||||||
|
"title": "ComfyUI-MochiWrapper-I2V [WIP]",
|
||||||
|
"reference": "https://github.com/parmarjh/ComfyUI-MochiWrapper-I2V",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/parmarjh/ComfyUI-MochiWrapper-I2V"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI wrapper nodes for [a/Mochi](https://github.com/genmoai/models) video generator"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Symbiomatrix",
|
||||||
|
"title": "Comfyui-Sort-Files",
|
||||||
|
"reference": "https://github.com/Symbiomatrix/Comfyui-Sort-Files",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Symbiomatrix/Comfyui-Sort-Files"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Monkeypatch file sort to date modified or custom instead of lexicographic."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "x3bits",
|
||||||
|
"title": "ComfyUI-Power-Flow [UNSAFE]",
|
||||||
|
"reference": "https://github.com/x3bits/ComfyUI-Power-Flow",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/x3bits/ComfyUI-Power-Flow"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node package that introduces common programming logic to enhance the flexibility of ComfyUI workflows. It supports features such as function definition and execution, 'for' loops, 'while' loops, and Python code execution.\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "EmilioPlumed",
|
||||||
|
"title": "ComfyUI-Math [WIP]",
|
||||||
|
"reference": "https://github.com/EmilioPlumed/ComfyUI-Math",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/EmilioPlumed/ComfyUI-Math"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes that take 2 float inputs and calculates greatest common denominator and least common multiple, returning them as ints.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mliand",
|
||||||
|
"title": "ComfyUI-Calendar-Node [WIP]",
|
||||||
|
"reference": "https://github.com/mliand/ComfyUI-Calendar-Node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/mliand/ComfyUI-Calendar-Node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node for Comfyui to create a Calendar like grid\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "phamngoctukts",
|
||||||
|
"title": "ComyUI-Tupham",
|
||||||
|
"reference": "https://github.com/phamngoctukts/ComyUI-Tupham",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/phamngoctukts/ComyUI-Tupham"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Ghép Ảnh, Multi Prompt v2.0, Condition Upscale, Multi sampler, Run node selected"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "5x00",
|
||||||
|
"title": "ComfyUI-Prompt-Plus [WIP]",
|
||||||
|
"reference": "https://github.com/5x00/ComfyUI-Prompt-Plus",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/5x00/ComfyUI-Prompt-Plus"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Prompt Plus is a collection of LLM and VLM nodes that make prompting easier for image and video generation.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "aria1th",
|
||||||
|
"title": "ComfyUI-CairoSVG",
|
||||||
|
"reference": "https://github.com/aria1th/ComfyUI-CairoSVG",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/aria1th/ComfyUI-CairoSVG"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: VectorizedUpscaleScaling, VectorizedUpscaleSize"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gitmylo",
|
||||||
|
"title": "FlowNodes [WIP]",
|
||||||
|
"reference": "https://github.com/gitmylo/FlowNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gitmylo/FlowNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node pack containing nodes for basic programming logic."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "chengzeyi",
|
||||||
|
"title": "Comfy-WaveSpeed [WIP]",
|
||||||
|
"reference": "https://github.com/chengzeyi/Comfy-WaveSpeed",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/chengzeyi/Comfy-WaveSpeed"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The all in one inference optimization solution for ComfyUI, universal, flexible, and fast."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "zyd232",
|
"author": "zyd232",
|
||||||
"title": "ComfyUI-zyd232-Nodes",
|
"title": "ComfyUI-zyd232-Nodes",
|
||||||
@@ -40,16 +200,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Very early W.I.P of clustered ComfyUI inference."
|
"description": "Very early W.I.P of clustered ComfyUI inference."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "5x00",
|
|
||||||
"title": "ComfyUI-LLM-Concat [WIP]",
|
|
||||||
"reference": "https://github.com/5x00/ComfyUI-LLM-Concat",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/5x00/ComfyUI-LLM-Concat"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Simple ComfyUI node to combine strings using ChatGPT / Claude. Can be helpful to combine multiple keywords into a single prompt.\nNOTE: The files in the repo are not organized."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "waynepimpzhang",
|
"author": "waynepimpzhang",
|
||||||
"title": "FindBrightestSpot [WIP]",
|
"title": "FindBrightestSpot [WIP]",
|
||||||
@@ -60,16 +210,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Analyze the image to find the x and y coordinates of the brightest point.\nNOTE: The files in the repo are not organized."
|
"description": "Analyze the image to find the x and y coordinates of the brightest point.\nNOTE: The files in the repo are not organized."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "nmlen",
|
|
||||||
"title": "comfyui-mosaic-blur [WIP]",
|
|
||||||
"reference": "https://github.com/nmlen/comfyui-mosaic-blur",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/nmlen/comfyui-mosaic-blur"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A simple mosaic blur node for ComfyUI that uses CV2 or Pillow\nNOTE: The files in the repo are not organized."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "power88",
|
"author": "power88",
|
||||||
"title": "ComfyUI-PDiD-Nodes [WIP]",
|
"title": "ComfyUI-PDiD-Nodes [WIP]",
|
||||||
@@ -269,7 +409,7 @@
|
|||||||
"https://github.com/warshanks/Shank-Tools"
|
"https://github.com/warshanks/Shank-Tools"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: Tile Calculator"
|
"description": "NODES: Tile Calculator, Resolution Divider"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "BaronVonBoolean",
|
"author": "BaronVonBoolean",
|
||||||
@@ -1035,7 +1175,7 @@
|
|||||||
"https://github.com/m-ai-studio/mai-prompt-progress"
|
"https://github.com/m-ai-studio/mai-prompt-progress"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "mai-prompt-progress"
|
"description": "ComfyUI extensions for sending prompt progress to webhook"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "neeltheninja",
|
"author": "neeltheninja",
|
||||||
@@ -1238,11 +1378,11 @@
|
|||||||
"description": "for preprocessing images, presented in a visual way. It also calculates the corresponding image area."
|
"description": "for preprocessing images, presented in a visual way. It also calculates the corresponding image area."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "void15700",
|
"author": "cwebbi1",
|
||||||
"title": "VoidCustomNodes",
|
"title": "VoidCustomNodes",
|
||||||
"reference": "https://github.com/void15700/VoidCustomNodes",
|
"reference": "https://github.com/cwebbi1/VoidCustomNodes",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/void15700/VoidCustomNodes"
|
"https://github.com/cwebbi1/VoidCustomNodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES:Prompt Parser, String Combiner"
|
"description": "NODES:Prompt Parser, String Combiner"
|
||||||
@@ -1308,17 +1448,6 @@
|
|||||||
"install_type": "copy",
|
"install_type": "copy",
|
||||||
"description": "This platform extension provides ZhipuAI nodes, enabling you to configure a workflow for online video generation."
|
"description": "This platform extension provides ZhipuAI nodes, enabling you to configure a workflow for online video generation."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "jetchopper",
|
|
||||||
"title": "ComfyUI-GeneraNodes",
|
|
||||||
"id": "genera",
|
|
||||||
"reference": "https://github.com/evolox/ComfyUI-GeneraNodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/evolox/ComfyUI-GeneraNodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Genera custom nodes and extensions"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "HavocsCall",
|
"author": "HavocsCall",
|
||||||
"title": "comfyui_HavocsCall_Custom_Nodes",
|
"title": "comfyui_HavocsCall_Custom_Nodes",
|
||||||
@@ -1789,7 +1918,7 @@
|
|||||||
"https://github.com/jimstudt/ComfyUI-Jims-Nodes"
|
"https://github.com/jimstudt/ComfyUI-Jims-Nodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Zoom and Enhance Nodes, Text Dictionary Nodes"
|
"description": "NODES: Zoom and Enhance Nodes, Text To String List, Choose String, Define Word, Lookup Word, Substitute Words, Dictionary to JSON, JSON file to Dictionary, JSON to Dictionary, Load Image And Info From Path, CubbyHack, Image to Solid Background"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "hananbeer",
|
"author": "hananbeer",
|
||||||
|
|||||||
@@ -154,12 +154,20 @@
|
|||||||
"title_aux": "ComfyUI_Fooocus"
|
"title_aux": "ComfyUI_Fooocus"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/5x00/ComfyUI-LLM-Concat": [
|
"https://github.com/5x00/ComfyUI-Prompt-Plus": [
|
||||||
[
|
[
|
||||||
"LLMConcate"
|
"LoadAPI",
|
||||||
|
"LoadCustomModel",
|
||||||
|
"LoadFlorenceModel",
|
||||||
|
"Prompt",
|
||||||
|
"RunAPIVLM",
|
||||||
|
"RunCustomVLM",
|
||||||
|
"TriggerToPromptAPI",
|
||||||
|
"TriggerToPromptCustom",
|
||||||
|
"TriggerToPromptSimple"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-LLM-Concat [WIP]"
|
"title_aux": "ComfyUI-Prompt-Plus [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
||||||
@@ -366,6 +374,17 @@
|
|||||||
"title_aux": "ComfyUI-Xorbis-nodes [WIP]"
|
"title_aux": "ComfyUI-Xorbis-nodes [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Alvaroeai/ComfyUI-SunoAI-Mds": [
|
||||||
|
[
|
||||||
|
"Mideas_SunoAI_AudioManager",
|
||||||
|
"Mideas_SunoAI_Generator",
|
||||||
|
"Mideas_SunoAI_ProxyDownloadNode",
|
||||||
|
"Mideas_SunoAI_ProxyNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-SunoAI-Mds"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Anze-/ComfyUI-OIDN": [
|
"https://github.com/Anze-/ComfyUI-OIDN": [
|
||||||
[
|
[
|
||||||
"OIDN Denoise"
|
"OIDN Denoise"
|
||||||
@@ -382,6 +401,18 @@
|
|||||||
"title_aux": "ComfyUI_deepDeband [WIP]"
|
"title_aux": "ComfyUI_deepDeband [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/ArmandAlbert/Kwai_font_comfyui": [
|
||||||
|
[
|
||||||
|
"Kwaifont_Image_Cropper",
|
||||||
|
"Kwaifont_Resnet101_Loader",
|
||||||
|
"Kwaifont_Resnet101_Runner",
|
||||||
|
"Kwaifont_Resnet50_Loader",
|
||||||
|
"Kwaifont_Resnet50_Runner"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Kwai_font_comfyui"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/ArthusLiang/comfyui-face-remap": [
|
"https://github.com/ArthusLiang/comfyui-face-remap": [
|
||||||
[
|
[
|
||||||
"FaceRemap"
|
"FaceRemap"
|
||||||
@@ -698,6 +729,7 @@
|
|||||||
"AD_mockup-maker",
|
"AD_mockup-maker",
|
||||||
"AD_poster-maker",
|
"AD_poster-maker",
|
||||||
"AD_prompt-saver",
|
"AD_prompt-saver",
|
||||||
|
"ImageCaptioner",
|
||||||
"ImageResize",
|
"ImageResize",
|
||||||
"Incrementer \ud83e\udeb4",
|
"Incrementer \ud83e\udeb4",
|
||||||
"TextAppendNode",
|
"TextAppendNode",
|
||||||
@@ -723,6 +755,15 @@
|
|||||||
"title_aux": "ComfyUI-MusicGen [WIP]"
|
"title_aux": "ComfyUI-MusicGen [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/EmilioPlumed/ComfyUI-Math": [
|
||||||
|
[
|
||||||
|
"GreatestCommonDenominator",
|
||||||
|
"LowestCommonMultiple"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Math [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/ExponentialML/ComfyUI_LiveDirector": [
|
"https://github.com/ExponentialML/ComfyUI_LiveDirector": [
|
||||||
[
|
[
|
||||||
"LiveDirector"
|
"LiveDirector"
|
||||||
@@ -1141,6 +1182,22 @@
|
|||||||
"title_aux": "ComfyUI-APG_ImYourCFGNow"
|
"title_aux": "ComfyUI-APG_ImYourCFGNow"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Njbx/ComfyUI-blockswap": [
|
||||||
|
[
|
||||||
|
"BlockSwap"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-blockswap"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/PATATAJEC/Patatajec-Nodes": [
|
||||||
|
[
|
||||||
|
"HyvidSwitcher"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Patatajec-Nodes [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/PluMaZero/ComfyUI-SpaceFlower": [
|
"https://github.com/PluMaZero/ComfyUI-SpaceFlower": [
|
||||||
[
|
[
|
||||||
"SpaceFlower_HangulPrompt",
|
"SpaceFlower_HangulPrompt",
|
||||||
@@ -1368,6 +1425,15 @@
|
|||||||
"title_aux": "ComfyUI_Remaker_FaceSwap"
|
"title_aux": "ComfyUI_Remaker_FaceSwap"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/SpatialDeploy/ComfyUI-Voxels": [
|
||||||
|
[
|
||||||
|
"MeshToVoxelGrid",
|
||||||
|
"VoxelGridsToVoxelVideo"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Voxels [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/StartHua/Comfyui_CSDMT_CXH": [
|
"https://github.com/StartHua/Comfyui_CSDMT_CXH": [
|
||||||
[
|
[
|
||||||
"CSD"
|
"CSD"
|
||||||
@@ -1631,6 +1697,7 @@
|
|||||||
"https://github.com/backearth1/Comfyui-MiniMax-Video": [
|
"https://github.com/backearth1/Comfyui-MiniMax-Video": [
|
||||||
[
|
[
|
||||||
"MiniMaxAIAPIClient",
|
"MiniMaxAIAPIClient",
|
||||||
|
"MiniMaxImage2Prompt",
|
||||||
"MiniMaxImage2Video",
|
"MiniMaxImage2Video",
|
||||||
"MiniMaxPreviewVideo"
|
"MiniMaxPreviewVideo"
|
||||||
],
|
],
|
||||||
@@ -1954,6 +2021,20 @@
|
|||||||
"title_aux": "ComfyUI_StepFun"
|
"title_aux": "ComfyUI_StepFun"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/chengzeyi/Comfy-WaveSpeed": [
|
||||||
|
[
|
||||||
|
"ApplyFBCacheOnModel",
|
||||||
|
"EnhancedCompileModel",
|
||||||
|
"EnhancedLoadDiffusionModel",
|
||||||
|
"VelocatorCompileModel",
|
||||||
|
"VelocatorLoadAndQuantizeClip",
|
||||||
|
"VelocatorLoadAndQuantizeDiffusionModel",
|
||||||
|
"VelocatorQuantizeModel"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Comfy-WaveSpeed [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/christian-byrne/infinite-zoom-parallax-nodes": [
|
"https://github.com/christian-byrne/infinite-zoom-parallax-nodes": [
|
||||||
[
|
[
|
||||||
"Create Parallax Video",
|
"Create Parallax Video",
|
||||||
@@ -2030,6 +2111,7 @@
|
|||||||
"ControlNetApplySD3",
|
"ControlNetApplySD3",
|
||||||
"ControlNetInpaintingAliMamaApply",
|
"ControlNetInpaintingAliMamaApply",
|
||||||
"ControlNetLoader",
|
"ControlNetLoader",
|
||||||
|
"CosmosImageToVideoLatent",
|
||||||
"CropMask",
|
"CropMask",
|
||||||
"DiffControlNetLoader",
|
"DiffControlNetLoader",
|
||||||
"DifferentialDiffusion",
|
"DifferentialDiffusion",
|
||||||
@@ -2037,6 +2119,7 @@
|
|||||||
"DisableNoise",
|
"DisableNoise",
|
||||||
"DualCFGGuider",
|
"DualCFGGuider",
|
||||||
"DualCLIPLoader",
|
"DualCLIPLoader",
|
||||||
|
"EmptyCosmosLatentVideo",
|
||||||
"EmptyHunyuanLatentVideo",
|
"EmptyHunyuanLatentVideo",
|
||||||
"EmptyImage",
|
"EmptyImage",
|
||||||
"EmptyLTXVLatentVideo",
|
"EmptyLTXVLatentVideo",
|
||||||
@@ -2180,6 +2263,7 @@
|
|||||||
"SaveImageWebsocket",
|
"SaveImageWebsocket",
|
||||||
"SaveLatent",
|
"SaveLatent",
|
||||||
"SelfAttentionGuidance",
|
"SelfAttentionGuidance",
|
||||||
|
"SetFirstSigma",
|
||||||
"SetLatentNoiseMask",
|
"SetLatentNoiseMask",
|
||||||
"SetUnionControlNetType",
|
"SetUnionControlNetType",
|
||||||
"SkipLayerGuidanceDiT",
|
"SkipLayerGuidanceDiT",
|
||||||
@@ -2303,6 +2387,15 @@
|
|||||||
"title_aux": "ComfyUI-Better-Dimensions"
|
"title_aux": "ComfyUI-Better-Dimensions"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/cwebbi1/VoidCustomNodes": [
|
||||||
|
[
|
||||||
|
"Prompt Parser",
|
||||||
|
"String Combiner"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "VoidCustomNodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/denislov/Comfyui_AutoSurvey": [
|
"https://github.com/denislov/Comfyui_AutoSurvey": [
|
||||||
[
|
[
|
||||||
"AddDoc2Knowledge",
|
"AddDoc2Knowledge",
|
||||||
@@ -2471,7 +2564,6 @@
|
|||||||
[
|
[
|
||||||
"DownloadAndLoadHyVideoTextEncoder",
|
"DownloadAndLoadHyVideoTextEncoder",
|
||||||
"HyVideoBlockSwap",
|
"HyVideoBlockSwap",
|
||||||
"HyVideoCustomPromptTemplate",
|
|
||||||
"HyVideoDecode",
|
"HyVideoDecode",
|
||||||
"HyVideoEncode",
|
"HyVideoEncode",
|
||||||
"HyVideoModelLoader",
|
"HyVideoModelLoader",
|
||||||
@@ -2485,19 +2577,6 @@
|
|||||||
"title_aux": "ComfyUI-HunyuanVideoWrapper-Extended [WIP]"
|
"title_aux": "ComfyUI-HunyuanVideoWrapper-Extended [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/evolox/ComfyUI-GeneraNodes": [
|
|
||||||
[
|
|
||||||
"Genera.BatchPreviewer",
|
|
||||||
"Genera.BatchTester",
|
|
||||||
"Genera.GCPStorageNode",
|
|
||||||
"Genera.MaskDrawer",
|
|
||||||
"Genera.Utils",
|
|
||||||
"PainterNode"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "ComfyUI-GeneraNodes"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/exectails/comfyui-et_scripting": [
|
"https://github.com/exectails/comfyui-et_scripting": [
|
||||||
[
|
[
|
||||||
"ETPythonTextScript3Node"
|
"ETPythonTextScript3Node"
|
||||||
@@ -2801,11 +2880,16 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/hy134300/comfyui-hydit": [
|
"https://github.com/hy134300/comfyui-hydit": [
|
||||||
[
|
[
|
||||||
|
"DiffusersCLIPLoader",
|
||||||
|
"DiffusersCheckpointLoader",
|
||||||
"DiffusersClipTextEncode",
|
"DiffusersClipTextEncode",
|
||||||
|
"DiffusersControlNetLoader",
|
||||||
|
"DiffusersLoraLoader",
|
||||||
"DiffusersModelMakeup",
|
"DiffusersModelMakeup",
|
||||||
"DiffusersPipelineLoader",
|
"DiffusersPipelineLoader",
|
||||||
"DiffusersSampler",
|
"DiffusersSampler",
|
||||||
"DiffusersSchedulerLoader"
|
"DiffusersSchedulerLoader",
|
||||||
|
"DiffusersVAELoader"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui-hydit"
|
"title_aux": "comfyui-hydit"
|
||||||
@@ -2862,13 +2946,20 @@
|
|||||||
"ImageLatentCreator",
|
"ImageLatentCreator",
|
||||||
"ImageResolutionAdjuster",
|
"ImageResolutionAdjuster",
|
||||||
"ImageSizeCreator",
|
"ImageSizeCreator",
|
||||||
|
"ImageToBase64",
|
||||||
"MaskPreview",
|
"MaskPreview",
|
||||||
"MultilineTextInput",
|
"MultilineTextInput",
|
||||||
|
"PaintingCoder::ImageSwitch",
|
||||||
|
"PaintingCoder::LatentSwitch",
|
||||||
|
"PaintingCoder::MaskSwitch",
|
||||||
|
"PaintingCoder::TextSwitch",
|
||||||
|
"PaintingCoder::WebImageLoader",
|
||||||
"RemoveEmptyLinesAndLeadingSpaces",
|
"RemoveEmptyLinesAndLeadingSpaces",
|
||||||
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
||||||
"ShowTextPlus",
|
"ShowTextPlus",
|
||||||
"SimpleTextInput",
|
"SimpleTextInput",
|
||||||
"TextCombiner"
|
"TextCombiner",
|
||||||
|
"WebImageLoader"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI PaintingCoderUtils Nodes [WIP]"
|
"title_aux": "ComfyUI PaintingCoderUtils Nodes [WIP]"
|
||||||
@@ -2897,6 +2988,7 @@
|
|||||||
"DefineWord",
|
"DefineWord",
|
||||||
"DictFromJSON",
|
"DictFromJSON",
|
||||||
"DictionaryToJSON",
|
"DictionaryToJSON",
|
||||||
|
"ImageToSolidBackground",
|
||||||
"JSONToDictionary",
|
"JSONToDictionary",
|
||||||
"LoadImageAndInfoFromPath",
|
"LoadImageAndInfoFromPath",
|
||||||
"LookupWord",
|
"LookupWord",
|
||||||
@@ -3043,7 +3135,10 @@
|
|||||||
"KAndyCivitPromptAPI",
|
"KAndyCivitPromptAPI",
|
||||||
"KAndyImagesByCss",
|
"KAndyImagesByCss",
|
||||||
"KAndyLoadImageFromUrl",
|
"KAndyLoadImageFromUrl",
|
||||||
"KAndyNoiseCondition"
|
"KAndyNoiseCondition",
|
||||||
|
"KCivitaiPostAPI",
|
||||||
|
"KPornImageAPI",
|
||||||
|
"KPromtGen"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-KAndy"
|
"title_aux": "ComfyUI-KAndy"
|
||||||
@@ -3659,6 +3754,14 @@
|
|||||||
"title_aux": "ComfyUI-LLM-Evaluation [WIP]"
|
"title_aux": "ComfyUI-LLM-Evaluation [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/mliand/ComfyUI-Calendar-Node": [
|
||||||
|
[
|
||||||
|
"Comfy Calendar Node"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Calendar-Node [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/monate0615/ComfyUI-Affine-Transform": [
|
"https://github.com/monate0615/ComfyUI-Affine-Transform": [
|
||||||
[
|
[
|
||||||
"AffineTransform"
|
"AffineTransform"
|
||||||
@@ -3786,14 +3889,6 @@
|
|||||||
"title_aux": "ComfyUI-PromptUtilities"
|
"title_aux": "ComfyUI-PromptUtilities"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/nmlen/comfyui-mosaic-blur": [
|
|
||||||
[
|
|
||||||
"ImageMosaic"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "comfyui-mosaic-blur [WIP]"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/nomcycle/ComfyUI_Cluster": [
|
"https://github.com/nomcycle/ComfyUI_Cluster": [
|
||||||
[
|
[
|
||||||
"FenceClusteredWorkflow"
|
"FenceClusteredWorkflow"
|
||||||
@@ -3863,6 +3958,26 @@
|
|||||||
"title_aux": "ComfyUI-ppm"
|
"title_aux": "ComfyUI-ppm"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/parmarjh/ComfyUI-MochiWrapper-I2V": [
|
||||||
|
[
|
||||||
|
"DownloadAndLoadMochiModel",
|
||||||
|
"MochiDecode",
|
||||||
|
"MochiDecodeSpatialTiling",
|
||||||
|
"MochiFasterCache",
|
||||||
|
"MochiImageEncode",
|
||||||
|
"MochiLatentPreview",
|
||||||
|
"MochiModelLoader",
|
||||||
|
"MochiSampler",
|
||||||
|
"MochiSigmaSchedule",
|
||||||
|
"MochiTextEncode",
|
||||||
|
"MochiTorchCompileSettings",
|
||||||
|
"MochiVAEEncoderLoader",
|
||||||
|
"MochiVAELoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-MochiWrapper-I2V [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/paulhoux/Smart-Prompting": [
|
"https://github.com/paulhoux/Smart-Prompting": [
|
||||||
[
|
[
|
||||||
"SaveImageWithPrefix",
|
"SaveImageWithPrefix",
|
||||||
@@ -3879,6 +3994,18 @@
|
|||||||
"title_aux": "List Data Helper Nodes"
|
"title_aux": "List Data Helper Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/phamngoctukts/ComyUI-Tupham": [
|
||||||
|
[
|
||||||
|
"AreaCondition_v2",
|
||||||
|
"ConditionUpscale",
|
||||||
|
"MultiLatent",
|
||||||
|
"Runnodeselected",
|
||||||
|
"ghepanh"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComyUI-Tupham"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/poisenbery/NudeNet-Detector-Provider": [
|
"https://github.com/poisenbery/NudeNet-Detector-Provider": [
|
||||||
[
|
[
|
||||||
"NudeNetDetectorProvider"
|
"NudeNetDetectorProvider"
|
||||||
@@ -4161,6 +4288,16 @@
|
|||||||
"title_aux": "ComfyUI_InstructPixToPixConditioningLatent [WIP]"
|
"title_aux": "ComfyUI_InstructPixToPixConditioningLatent [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/sourceful-official/comfyui-sourceful-official": [
|
||||||
|
[
|
||||||
|
"FalFluxLoraSourcefulOfficial",
|
||||||
|
"FalIcLightV2SourcefulOfficial",
|
||||||
|
"SourcefulOfficialComfyuiIncontextThreePanels"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfyui-sourceful-official"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/sswink/comfyui-lingshang": [
|
"https://github.com/sswink/comfyui-lingshang": [
|
||||||
[
|
[
|
||||||
"LS_ALY_Seg_Body_Utils",
|
"LS_ALY_Seg_Body_Utils",
|
||||||
@@ -4205,7 +4342,9 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/sugarkwork/comfyui_psd": [
|
"https://github.com/sugarkwork/comfyui_psd": [
|
||||||
[
|
[
|
||||||
"SavePSD"
|
"Convert PSD to Image",
|
||||||
|
"PSDLayer",
|
||||||
|
"Save PSD"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui_psd [WIP]"
|
"title_aux": "comfyui_psd [WIP]"
|
||||||
@@ -4348,15 +4487,6 @@
|
|||||||
"title_aux": "ComfyUI-My-Handy-Nodes"
|
"title_aux": "ComfyUI-My-Handy-Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/void15700/VoidCustomNodes": [
|
|
||||||
[
|
|
||||||
"Prompt Parser",
|
|
||||||
"String Combiner"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "VoidCustomNodes"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/walterFeng/ComfyUI-Image-Utils": [
|
"https://github.com/walterFeng/ComfyUI-Image-Utils": [
|
||||||
[
|
[
|
||||||
"Calculate Image Brightness",
|
"Calculate Image Brightness",
|
||||||
@@ -4365,6 +4495,7 @@
|
|||||||
"Color Similarity Checker",
|
"Color Similarity Checker",
|
||||||
"Crop Mask Util",
|
"Crop Mask Util",
|
||||||
"Displace Filter",
|
"Displace Filter",
|
||||||
|
"Image Fix (tensor shape convert)",
|
||||||
"Load Image (By Url)",
|
"Load Image (By Url)",
|
||||||
"Mask Refine (Aliyun)"
|
"Mask Refine (Aliyun)"
|
||||||
],
|
],
|
||||||
@@ -4374,6 +4505,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/warshanks/Shank-Tools": [
|
"https://github.com/warshanks/Shank-Tools": [
|
||||||
[
|
[
|
||||||
|
"ResolutionDivider",
|
||||||
"TileCalculator"
|
"TileCalculator"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -4457,17 +4589,20 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/yanhuifair/ComfyUI-FairLab": [
|
"https://github.com/yanhuifair/ComfyUI-FairLab": [
|
||||||
[
|
[
|
||||||
"CLIPTranslatedClass",
|
"CLIPTranslatedNode",
|
||||||
"DownloadImageClass",
|
"DownloadImageNode",
|
||||||
"FixUTF8StringClass",
|
"FixUTF8StringNode",
|
||||||
"ImageResizeClass",
|
"ImageResizeNode",
|
||||||
"LoadImageFromFolderClass",
|
"ImagesToVideoNode",
|
||||||
"SaveImageToFolderClass",
|
"LoadImageFromFolderNode",
|
||||||
"SaveImagesToFolderClass",
|
"SaveImageToFolderNode",
|
||||||
"SaveStringToFolderClass",
|
"SaveImagesToFolderNode",
|
||||||
"StringCombineClass",
|
"SaveStringToFolderNode",
|
||||||
"StringFieldClass",
|
"SequenceStringListNode",
|
||||||
"TranslateStringClass"
|
"StringCombineNode",
|
||||||
|
"StringFieldNode",
|
||||||
|
"TranslateStringNode",
|
||||||
|
"VideoToImagesNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-FairLab"
|
"title_aux": "ComfyUI-FairLab"
|
||||||
@@ -4513,7 +4648,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/zyd232/ComfyUI-zyd232-Nodes": [
|
"https://github.com/zyd232/ComfyUI-zyd232-Nodes": [
|
||||||
[
|
[
|
||||||
"ImageCompareNode"
|
"zyd232 ImagesPixelsCompare"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-zyd232-Nodes"
|
"title_aux": "ComfyUI-zyd232-Nodes"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -11,6 +11,49 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "riverolls",
|
||||||
|
"title": "ComfyUI-FJDH",
|
||||||
|
"reference": "https://github.com/riverolls/ComfyUI-FJDH [REMOVED]",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/riverolls/ComfyUI-FJDH"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "bbox tools, image tools, mask generators, point tools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jetchopper",
|
||||||
|
"title": "ComfyUI-GeneraNodes",
|
||||||
|
"id": "genera",
|
||||||
|
"reference": "https://github.com/evolox/ComfyUI-GeneraNodes [REMOVED]",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/evolox/ComfyUI-GeneraNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Genera custom nodes and extensions"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Pos13",
|
||||||
|
"title": "Cyclist [DEPRECATED]",
|
||||||
|
"id": "cyclist",
|
||||||
|
"reference": "https://github.com/Pos13/comfyui-cyclist",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Pos13/comfyui-cyclist"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This extension provides tools to iterate generation results between runs. In general, it's for cycles."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "leiweiqiang",
|
||||||
|
"title": "ComfyUI-TRA",
|
||||||
|
"id": "tra",
|
||||||
|
"reference": "https://github.com/leiweiqiang/ComfyUI-TRA",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/leiweiqiang/ComfyUI-TRA"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes:TCL EbSynth, TCL Extract Frames (From File), TCL Extract Frames (From Video), TCL Combine Frames, TCL Save Video (From Frames)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "ai-business-hql",
|
"author": "ai-business-hql",
|
||||||
"title": "comfyUIAgent [REMOVED]",
|
"title": "comfyUIAgent [REMOVED]",
|
||||||
|
|||||||
@@ -9,6 +9,314 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "ciga2011",
|
||||||
|
"title": "ComfyUI Prompt Optimizer",
|
||||||
|
"id": "promptoptimizer",
|
||||||
|
"reference": "https://github.com/ciga2011/ComfyUI-PromptOptimizer",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ciga2011/ComfyUI-PromptOptimizer"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Optimize prompts for text-to-image models at no cost."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "meanin2",
|
||||||
|
"title": "ComfyUI Watermark Image Node",
|
||||||
|
"reference": "https://github.com/meanin2/comfyui-watermarking",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/meanin2/comfyui-watermarking"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node allows you to overlay a watermark image onto an existing image within ComfyUI."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Kurdknight",
|
||||||
|
"title": "KurdKnight ComfyUI System Check Node",
|
||||||
|
"reference": "https://github.com/Kurdknight/Kurdknight_comfycheck",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Kurdknight/Kurdknight_comfycheck"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A comprehensive system information node for ComfyUI that provides detailed information about your system, GPU, CUDA, and AI libraries configuration. Works on both Windows and Linux systems."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "yhayano-ponotech",
|
||||||
|
"title": "ComfyUI Local Save Node",
|
||||||
|
"reference": "https://github.com/yhayano-ponotech/comfyui-save-image-local",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yhayano-ponotech/comfyui-save-image-local"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom node for directly downloading generated images to your local PC with customizable filenames and formats (PNG/JPEG)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ThepExcel",
|
||||||
|
"title": "Multiline Text Choice Node for ComfyUI",
|
||||||
|
"reference": "https://github.com/ThepExcel/aiangelgallery-comfyui",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ThepExcel/aiangelgallery-comfyui"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node for ComfyUI allows users to input multiline text and select a specific line by its number. The node processes the input and returns the selected line along with its index."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hosterosi",
|
||||||
|
"title": "ComfyUI OpenAI Node",
|
||||||
|
"reference": "https://github.com/hosterosi/ComfyUI_OpenAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hosterosi/ComfyUI_OpenAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This custom node for ComfyUI allows users to input multiline text and select a specific line by its number. The node processes the input and returns the selected line along with its index."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "IDGallagher",
|
||||||
|
"title": "IG-Motion-Search",
|
||||||
|
"id": "motion-video-search",
|
||||||
|
"reference": "https://github.com/IDGallagher/MotionVideoSearch",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/IDGallagher/MotionVideoSearch"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes for searching videos by motion"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "l-comm",
|
||||||
|
"title": "WatermarkRemoval",
|
||||||
|
"id": "watermark-removal",
|
||||||
|
"reference": "https://github.com/l-comm/WatermarkRemoval",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/l-comm/WatermarkRemoval"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Watermark removal project"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "philiprodriguez",
|
||||||
|
"title": "ComfyUI-HunyuanImageLatentToVideoLatent",
|
||||||
|
"reference": "https://github.com/philiprodriguez/ComfyUI-HunyuanImageLatentToVideoLatent",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/philiprodriguez/ComfyUI-HunyuanImageLatentToVideoLatent"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node which copies a given latent's samples tensor along the time axis ((length - 1) // 4) + 1 times to form a longer latent (see EmptyHunyuanLatentVideo's implementation for why this specific number of copies is used) and then prepares a noise_mask tensor of the same shape such that the value of the mask for a given time step is given by the function at https://www.desmos.com/calculator/vhw74mr1vh."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "benjiyaya",
|
||||||
|
"title": "ComfyUI-HunyuanVideoImagesGuider",
|
||||||
|
"reference": "https://github.com/benjiyaya/ComfyUI-HunyuanVideoImagesGuider",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/benjiyaya/ComfyUI-HunyuanVideoImagesGuider"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A specialized node for ComfyUI that enable advanced motion and animation capabilities for image as guider for video processing In Hunyuan Video."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "lldacing",
|
||||||
|
"title": "ComfyUI_PuLID_Flux_ll",
|
||||||
|
"id": "comfyui_pulid_flux_ll",
|
||||||
|
"reference": "https://github.com/lldacing/ComfyUI_PuLID_Flux_ll",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lldacing/ComfyUI_PuLID_Flux_ll"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The implementation for PuLID-Flux, support TeaCache, no model pollution."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "lldacing",
|
||||||
|
"title": "ComfyUI_Patches_ll",
|
||||||
|
"reference": "https://github.com/lldacing/ComfyUI_Patches_ll",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lldacing/ComfyUI_Patches_ll"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Some patches for Flux|HunYuanVideo etc, support TeaCache, PuLID."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Zeks",
|
||||||
|
"title": "comfyui-rapidfire",
|
||||||
|
"reference": "https://github.com/Zeks/comfyui-rapidfire",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Zeks/comfyui-rapidfire"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A set of nodes for rapidfiring the half backed latents, cleaning up obvious bad generations and automatically queueing the rest to fully generate."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jhj0517",
|
||||||
|
"title": "ComfyUI-Moondream-Gaze-Detection",
|
||||||
|
"id": "comfyui-moondream-gaze-detection",
|
||||||
|
"reference": "https://github.com/jhj0517/ComfyUI-Moondream-Gaze-Detection",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jhj0517/ComfyUI-Moondream-Gaze-Detection"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Moondream's gaze detection feature node from [a/ComfyUI-Moondream-Gaze-Detection](https://github.com/jhj0517/ComfyUI-Moondream-Gaze-Detection)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "liuqianhonga",
|
||||||
|
"title": "ComfyUI-QHNodes",
|
||||||
|
"reference": "https://github.com/liuqianhonga/ComfyUI-QHNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/liuqianhonga/ComfyUI-QHNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node collection developed for ComfyUI, offering preset dimensions for Latent, loading LoRA from folders, and integrating multiple commonly used custom nodes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jnxmx",
|
||||||
|
"title": "ComfyUI_HuggingFace_Downloader",
|
||||||
|
"reference": "https://github.com/jnxmx/ComfyUI_HuggingFace_Downloader",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jnxmx/ComfyUI_HuggingFace_Downloader"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The ComfyUI HuggingFace Downloader is a custom node extension for ComfyUI, designed to streamline the process of downloading models, checkpoints, and other resources from the Hugging Face Hub directly into your models directory. This tool simplifies workflow integration by providing a seamless interface to select and download required resources."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "smthemex",
|
||||||
|
"title": "ComfyUI_SVFR",
|
||||||
|
"reference": "https://github.com/smthemex/ComfyUI_SVFR",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/smthemex/ComfyUI_SVFR"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "SVFR is a unified framework for face video restoration that supports tasks such as BFR, Colorization, Inpainting,you can use it in ComfyUI"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-estimator"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Super fast tensorrt performance with accuate pose estimation of dwpose model, giving the detecting threshold control, plus pose image render and pose json format output. Fine control for pose plotting."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Enhanced features with flexible choice of inputs and outputs, fine control for pose plotting, freedom to composite poses and fast local pose editting."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dsd",
|
||||||
|
"title": "Comfyui-Template-Loader",
|
||||||
|
"reference": "https://github.com/r3dsd/comfyui-template-loader",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/r3dsd/comfyui-template-loader"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Easily Load Your Frequently Used Prompts in ComfyUI\nWith ComfyUI Template Loader, managing and reusing your favorite prompts has never been simpler. Save time and streamline your workflow by loading your go-to templates with just a few clicks!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Jovi_Measure",
|
||||||
|
"id": "jovi_measure",
|
||||||
|
"reference": "https://github.com/Amorano/Jovi_Measure",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Amorano/Jovi_Measure"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Image metrics nodes for ComfyUI"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dsd",
|
||||||
|
"title": "HommageTools for ComfyUI",
|
||||||
|
"reference": "https://github.com/ArtHommage/HommageTools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ArtHommage/HommageTools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Entry point for HommageTools node collection for ComfyUI. Handles node registration, imports, and logging configuration."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "shahkoorosh",
|
||||||
|
"title": "ComfyUI-PersianText",
|
||||||
|
"reference": "https://github.com/shahkoorosh/ComfyUI-PersianText",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/shahkoorosh/ComfyUI-PersianText"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A powerful ComfyUI node for rendering text with advanced styling options, including full support for Persian/Farsi and Arabic scripts."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-render",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-render",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-render"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The ultimate openpose render node for ComfyUI with flexible input, output and adjustment."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bubbliiiing",
|
||||||
|
"title": "Video Generation Nodes for EasyAnimate",
|
||||||
|
"id": "easyanimatenodes",
|
||||||
|
"reference": "https://github.com/aigc-apps/EasyAnimate",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/aigc-apps/EasyAnimate"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Video Generation Nodes for EasyAnimate, which suppors text-to-video, image-to-video, video-to-video and different controls."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "weilin9999",
|
||||||
|
"title": "WeiLin-Comfyui-Tools",
|
||||||
|
"id": "Comfyui-Tools",
|
||||||
|
"reference": "https://github.com/weilin9999/WeiLin-Comfyui-Tools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/weilin9999/WeiLin-Comfyui-Tools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "quickly use the prompt word tool in ComfyUI"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Wenaka2004",
|
||||||
|
"title": "ComfyUI-TagClassifier",
|
||||||
|
"reference": "https://github.com/Wenaka2004/ComfyUI-TagClassifier",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Wenaka2004/ComfyUI-TagClassifier"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom node,use Deepseek v3 to classify the input tags"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "a-und-b",
|
||||||
|
"title": "ComfyUI_Delay",
|
||||||
|
"reference": "https://github.com/a-und-b/ComfyUI_Delay",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/a-und-b/ComfyUI_Delay"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple custom node for ComfyUI to artificially delay a workflow at any point."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "DraconicDragon",
|
||||||
|
"title": "ComfyUI-Venice-API",
|
||||||
|
"reference": "https://github.com/DraconicDragon/ComfyUI-Venice-API",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/DraconicDragon/ComfyUI-Venice-API"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node implementation for ComfyUI that integrates with venice.ai's Flux and SDXL image generation models. This project is adapted from [a/ComfyUI-FLUX-TOGETHER-API](https://github.com/BZcreativ/ComfyUI-FLUX-TOGETHER-API) to work with the venice.ai API."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "dreamhartley",
|
||||||
|
"title": "ComfyUI_show_seed",
|
||||||
|
"reference": "https://github.com/dreamhartley/ComfyUI_show_seed",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/dreamhartley/ComfyUI_show_seed"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node that saves images while displaying the seed value used in generation"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "LucipherDev",
|
"author": "LucipherDev",
|
||||||
"title": "ComfyUI-TangoFlux",
|
"title": "ComfyUI-TangoFlux",
|
||||||
@@ -19,6 +327,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI Custom Nodes for 'TangoFlux: Super Fast and Faithful Text to Audio Generation with Flow Matching'. This generates high-quality 44.1kHz audio up to 30 seconds using just a text prompt."
|
"description": "ComfyUI Custom Nodes for 'TangoFlux: Super Fast and Faithful Text to Audio Generation with Flow Matching'. This generates high-quality 44.1kHz audio up to 30 seconds using just a text prompt."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dial",
|
||||||
|
"title": "Redial Discomphy - Discord Integration for ComfyUI",
|
||||||
|
"reference": "https://github.com/r3dial/redial-discomphy",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/r3dial/redial-discomphy"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node for ComfyUI that enables direct posting of images, videos, and messages to Discord channels. This node seamlessly integrates your ComfyUI workflows with Discord communication, allowing you to automatically share your generated content."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "welltop-cn",
|
"author": "welltop-cn",
|
||||||
"title": "ComfyUI-TeaCache",
|
"title": "ComfyUI-TeaCache",
|
||||||
@@ -60,6 +378,156 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "gguf node for comfyui"
|
"description": "gguf node for comfyui"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "bombax-xiaoice",
|
||||||
|
"title": "ComfyUI-OpenSoraPlan",
|
||||||
|
"reference": "https://github.com/bombax-xiaoice/ComfyUI-OpenSoraPlan",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bombax-xiaoice/ComfyUI-OpenSoraPlan"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Another comfy implementation for the short video generation project PKU-YuanGroup/Open-Sora-Plan, supporting latest 1.3.0 and 1.2.0 and image to video feature, etc."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ShmuelRonen",
|
||||||
|
"title": "ComfyUI-HunyuanVideoSamplerSave",
|
||||||
|
"reference": "https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoSamplerSave",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoSamplerSave"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node implementation for optimized video generation and motion effects, designed to work with Hunyuan text-to-video models."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "GraftingRayman",
|
||||||
|
"title": "ComfyUI-PuLID-Flux-GR",
|
||||||
|
"reference": "https://github.com/GraftingRayman/ComfyUI-PuLID-Flux-GR",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/GraftingRayman/ComfyUI-PuLID-Flux-GR"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a PuLID node that has been extended with new features."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ainewsto",
|
||||||
|
"title": "comfyui-labs-google",
|
||||||
|
"reference": "https://github.com/ainewsto/comfyui-labs-google",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ainewsto/comfyui-labs-google"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: ComfyUI-ImageFx, ComfyUI-Whisk"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "facok",
|
||||||
|
"title": "ComfyUI-TeaCacheHunyuanVideo",
|
||||||
|
"reference": "https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a TeaCache acceleration node for HunYuan Video, supporting the native node workflow for seamless upgrades. Simply choose the acceleration multiplier you want—currently, three levels are available."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-ViewData",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-ViewData",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-ViewData"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that displays the type and contents of whatever is connected to the input. In the case of a Tensor object, it shows the shape instead of its value."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "yichengup",
|
||||||
|
"title": "Comfyui_Redux_Advanced",
|
||||||
|
"reference": "https://github.com/yichengup/Comfyui_Redux_Advanced",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yichengup/Comfyui_Redux_Advanced"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Redux style adds more controls"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "GraftingRayman",
|
||||||
|
"title": "ComfyUI QueueTube",
|
||||||
|
"reference": "https://github.com/GraftingRayman/ComfyUI_QueueTube",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/GraftingRayman/ComfyUI_QueueTube"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "These nodes allow your YouTube LiveStream viewers to create on your local ComfyUI, you can make this a members only feature with a screen behind you displaying your members creations"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mira-6",
|
||||||
|
"title": "comfyui-sasolver",
|
||||||
|
"reference": "https://github.com/mira-6/comfyui-sasolver",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/mira-6/comfyui-sasolver"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "SASolver for Comfyui. Adapted from [a/comfyanonymous/ComfyUI#4454](https://github.com/comfyanonymous/ComfyUI/pull/4454) and [a/https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler](https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-JMESPath",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-JMESPath",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-JMESPath"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that runs a [a/JMESPath](https://jmespath.org/) query against input JSON and outputs the result."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-jq",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-jq",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-jq"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that runs a [a/jq](https://jqlang.github.io/jq/) query against input JSON and outputs the result."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-ImageLabel",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-ImageLabel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-ImageLabel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that extends an image vertically to add a label either above or below it."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-TrackAndWheel",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-TrackAndWheel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-TrackAndWheel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI extension that improves panning and zooming on trackpads and with the mouse wheel."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "nmlen",
|
||||||
|
"title": "comfyui-mosaic-blur",
|
||||||
|
"reference": "https://github.com/nmlen/comfyui-mosaic-blur",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/nmlen/comfyui-mosaic-blur"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple mosaic blur node for ComfyUI that uses CV2 or Pillow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jerrylongyan",
|
||||||
|
"title": "ComfyUI-My-Mask",
|
||||||
|
"reference": "https://github.com/jerrylongyan/ComfyUI-My-Mask",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jerrylongyan/ComfyUI-My-Mask"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Some nodes for processing masks, currently including nodes that fill in the concave parts of existing masks with convex hulls."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "sh570655308",
|
"author": "sh570655308",
|
||||||
"title": "ComfyUI-GigapixelAI",
|
"title": "ComfyUI-GigapixelAI",
|
||||||
@@ -212,490 +680,6 @@
|
|||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Neural Network Toolkit (NNT) for ComfyUI is an extensive set of custom ComfyUI nodes for designing, training, and fine-tuning neural networks. This toolkit allows defining models, layers, training workflows, transformers, and tensor operations in a visual manner using nodes."
|
"description": "Neural Network Toolkit (NNT) for ComfyUI is an extensive set of custom ComfyUI nodes for designing, training, and fine-tuning neural networks. This toolkit allows defining models, layers, training workflows, transformers, and tensor operations in a visual manner using nodes."
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Hullabalo",
|
|
||||||
"title": "ComfyUI-Loop",
|
|
||||||
"reference": "https://github.com/Hullabalo/ComfyUI-Loop",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Hullabalo/ComfyUI-Loop"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A pair of nodes (Load Image and Save Image) to create a simple loop in your ComfyUI inpainting workflow, without the need of loading your last saved image"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "leeguandong",
|
|
||||||
"title": "ComfyUI_FluxCustomId",
|
|
||||||
"reference": "https://github.com/leeguandong/ComfyUI_FluxCustomId",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/leeguandong/ComfyUI_FluxCustomId"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI nodes to use FluxCustomId\nOriginal repo: [a/https://github.com/damo-cv/FLUX-customID](https://github.com/damo-cv/FLUX-customID)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "bongsang",
|
|
||||||
"title": "ComfyUI-Bongsang",
|
|
||||||
"reference": "https://github.com/bongsang/ComfyUI-Bongsang",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/bongsang/ComfyUI-Bongsang"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "The 'ComfyUI-Bongsang' is very useful tools for a diffusion model developer."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "5x00",
|
|
||||||
"title": "ComfyUI-PiAPI-Faceswap",
|
|
||||||
"reference": "https://github.com/5x00/ComfyUI-PiAPI-Faceswap",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/5x00/ComfyUI-PiAPI-Faceswap"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A simple ComfyUI nodes that integrates [a/PiAPI faceswap](https://piapi.ai/faceswap-api) service into ComfyUI. This can be helpful if you're trying to create a workflow that includes faceswap for commercial usage."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "muxueChen",
|
|
||||||
"title": "CosyVoice2 for ComfyUI",
|
|
||||||
"reference": "https://github.com/muxueChen/ComfyUI_NTCosyVoice",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/muxueChen/ComfyUI_NTCosyVoice"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI_NTCosyVoice is a plugin of ComfyUI for Cosysvoice2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "cenzijing",
|
|
||||||
"title": "ComfyUI-Markmap",
|
|
||||||
"reference": "https://github.com/cenzijing/ComfyUI-Markmap",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/cenzijing/ComfyUI-Markmap"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A ComfyUI custom node for creating mindmaps from markdown"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "amorano",
|
|
||||||
"title": "Jovi_Spout",
|
|
||||||
"id": "jovi_spout",
|
|
||||||
"reference": "https://github.com/Amorano/Jovi_Spout",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Amorano/Jovi_Spout"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI Nodes for using Spout streams."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "AconexOfficial",
|
|
||||||
"title": "ComfyUI GOAT Nodes",
|
|
||||||
"reference": "https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes to level up your workflows performance and streamline specific functions."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Jaminanim",
|
|
||||||
"title": "ComfyUI-Random-Int-Divisor-Node",
|
|
||||||
"reference": "https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A set of custom ComfyUI nodes for generating random integers within a range, adjusted to the nearest multiple of a user-defined divisor. Needlessly includes both an efficient and simple list implementation. Updates with each generation."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "LucipherDev",
|
|
||||||
"title": "ComfyUI-AniDoc",
|
|
||||||
"reference": "https://github.com/LucipherDev/ComfyUI-AniDoc",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/LucipherDev/ComfyUI-AniDoc"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "bear2b",
|
|
||||||
"title": "ColorMatrixGPU Node for ComfyUI",
|
|
||||||
"reference": "https://github.com/bear2b/comfyui-argo-nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/bear2b/comfyui-argo-nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This node applies a custom 4x4 color matrix to an image using GPU acceleration via PyTorch."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Vaibhavs10",
|
|
||||||
"title": "ComfyUI-DDUF",
|
|
||||||
"reference": "https://github.com/Vaibhavs10/ComfyUI-DDUF",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Vaibhavs10/ComfyUI-DDUF"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Run DDUF in ComfyUI - powered by Diffusers."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "tocubed",
|
|
||||||
"title": "ComfyUI-EvTexture",
|
|
||||||
"reference": "https://github.com/tocubed/ComfyUI-EvTexture",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/tocubed/ComfyUI-EvTexture"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Wrapper for EvTexture Video Upscaler: [a/https://github.com/DachunKai/EvTexture](https://github.com/DachunKai/EvTexture)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ShmuelRonen",
|
|
||||||
"title": "ComfyUI-LatentSyncWrapper",
|
|
||||||
"reference": "https://github.com/ShmuelRonen/ComfyUI-LatentSyncWrapper",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ShmuelRonen/ComfyUI-LatentSyncWrapper"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This node provides lip-sync capabilities in ComfyUI using ByteDance's LatentSync model. It allows you to synchronize video lips with audio input."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "sanbuphy",
|
|
||||||
"title": "ComfyUI-AudioLDM",
|
|
||||||
"reference": "https://github.com/sanbuphy/ComfyUI-AudioLDM",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/sanbuphy/ComfyUI-AudioLDM"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI Workflow to run audioldm-l-full pipeline\n[a/https://huggingface.co/cvssp/audioldm-l-full](https://huggingface.co/cvssp/audioldm-l-full)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "1038lab",
|
|
||||||
"title": "ComfyUI-WildPromptor",
|
|
||||||
"reference": "https://github.com/1038lab/ComfyUI-WildPromptor",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/1038lab/ComfyUI-WildPromptor"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Create dynamic prompts with wildcard list."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "sweetndata",
|
|
||||||
"title": "ComfyUI_Sticker_Compositer",
|
|
||||||
"reference": "https://github.com/sweetndata/ComfyUI_Sticker_Compositer",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/sweetndata/ComfyUI_Sticker_Compositer"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "NODES:Sticker Compositer.\nbackground frame + sticker"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Jash-Vora",
|
|
||||||
"title": "FitDiT",
|
|
||||||
"reference": "https://github.com/Jash-Vora/ComfyUI-GarmentDiT",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Jash-Vora/ComfyUI-GarmentDiT"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "[a/FitDiT](https://arxiv.org/abs/2411.10499): Advancing the Authentic Garment Details for High-fidelity Virtual Try-onon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "rohitsainier",
|
|
||||||
"title": "ComfyUI-InstagramDownloader",
|
|
||||||
"id": "comfyui-instagram-downloader",
|
|
||||||
"reference": "https://github.com/rohitsainier/ComfyUI-InstagramDownloader",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/rohitsainier/ComfyUI-InstagramDownloader"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A ComfyUI custom node package that allows downloading and organizing Instagram content directly in your ComfyUI Output folder"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "zmwv823",
|
|
||||||
"title": "ComfyUI_Anytext",
|
|
||||||
"reference": "https://github.com/zmwv823/ComfyUI_Anytext",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/zmwv823/ComfyUI_Anytext"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Unofficial Simple And Rough Implementation Of [a/AnyText](https://github.com/tyxsspa/AnyText) and [a/Glyph-ByT5] (https://github.com/AIGText/Glyph-ByT5) and [a/JoyType](https://github.com/jdh-algo/JoyType)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "SKBv0",
|
|
||||||
"title": "ComfyUI SKBundle",
|
|
||||||
"reference": "https://github.com/SKBv0/ComfyUI_SKBundle",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/SKBv0/ComfyUI_SKBundle"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A collection of custom nodes designed to enhance your workflow in ComfyUI. These nodes were developed to meet my own needs while working with ComfyUI. Although I'm not a programmer, I created these nodes with the help of Cursor AI and will continue to develop them over time."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "civen-cn",
|
|
||||||
"title": "ComfyUI Whisper Translator",
|
|
||||||
"reference": "https://github.com/civen-cn/ComfyUI-Whisper-Translator",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/civen-cn/ComfyUI-Whisper-Translator"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This is a ComfyUI node that allows you to translate subtitles using the Whisper. Now support for multiple languages: ['zh', 'en', 'ja', 'ko', 'ru', 'fr', 'de', 'es', 'pt', 'it', 'ar'] You may need to put fonts in the 'fonts' folder to support different languages."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "WainWong",
|
|
||||||
"title": "ComfyUI-Loop-image",
|
|
||||||
"reference": "https://github.com/WainWong/ComfyUI-Loop-image",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/WainWong/ComfyUI-Loop-image"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI Loop Image is a node package specifically designed for image loop processing. It provides two main processing modes: Batch Image Processing and Single Image Processing, along with supporting image segmentation and merging functions."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "rhplus0831",
|
|
||||||
"title": "ComfyMepi",
|
|
||||||
"reference": "https://github.com/rhplus0831/ComfyMepi",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/rhplus0831/ComfyMepi"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Another mobile frontend for ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "0x-jerry",
|
|
||||||
"title": "Rembg Background Removal Node for ComfyUI",
|
|
||||||
"reference": "https://github.com/0x-jerry/comfyui-rembg",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/0x-jerry/comfyui-rembg"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Rembg Background Removal Node for ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "hay86",
|
|
||||||
"title": "ComfyUI LatentSync",
|
|
||||||
"id": "latentsync",
|
|
||||||
"reference": "https://github.com/hay86/ComfyUI_LatentSync",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/hay86/ComfyUI_LatentSync"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Unofficial implementation of [a/LatentSync](https://github.com/bytedance/LatentSync) for ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "risunobushi",
|
|
||||||
"title": "ComfyUI-Similarity-Score",
|
|
||||||
"reference": "https://github.com/risunobushi/ComfyUI-Similarity-Score",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/risunobushi/ComfyUI-Similarity-Score"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A custom node for ComfyUI that calculates CLIP and LPIPS similarity scores between two images."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ShmuelRonen",
|
|
||||||
"title": "ComfyUI-HunyuanVideoStyler",
|
|
||||||
"reference": "https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoStyler",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoStyler"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A custom node for ComfyUI that adds cinematic and movie scene styles to video generation prompts. This node helps create more dynamic and professional-looking video outputs by incorporating iconic movie scene aesthetics."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ahernandezmiro",
|
|
||||||
"title": "ComfyUI-GCP_Storage_tools",
|
|
||||||
"reference": "https://github.com/ahernandezmiro/ComfyUI-GCP_Storage_tools",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ahernandezmiro/ComfyUI-GCP_Storage_tools"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A set of ComfyUI nodes for GPC Storage access"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ciga2011",
|
|
||||||
"title": "ComfyUI MarkItDown",
|
|
||||||
"id": "markitdown",
|
|
||||||
"reference": "https://github.com/ciga2011/ComfyUI-MarkItDown",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ciga2011/ComfyUI-MarkItDown"
|
|
||||||
],
|
|
||||||
"pip": ["markitdown", "openai"],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This node pack helps to convert various files to Markdown. It supports pdf, pptx, xlsx, docx, html and image files."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "amorano",
|
|
||||||
"title": "Jovi_GLSL",
|
|
||||||
"id": "jovi_glsl",
|
|
||||||
"reference": "https://github.com/Amorano/Jovi_GLSL",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Amorano/Jovi_GLSL"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Integrates GLSL shader support."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "IgalOgonov",
|
|
||||||
"title": "Simple String Repository",
|
|
||||||
"reference": "https://github.com/IgalOgonov/ComfyUI_Simple_String_Repository",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/IgalOgonov/ComfyUI_Simple_String_Repository"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Custom node that allows storing and accessing strings, meant to be parts of a prompt, in a simplified manner. Partially supports dynamic prompt syntax."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "fairy-root",
|
|
||||||
"title": "ComfyUI-GLHF",
|
|
||||||
"id": "comfyui-glhf",
|
|
||||||
"reference": "https://github.com/fairy-root/ComfyUI-GLHF",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/fairy-root/ComfyUI-GLHF"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "GLHF is a ComfyUI node that facilitates seamless interaction with the GLHF chat API. Designed to enhance user experience, it supports multiple language models, web search integration, and customizable instructions, making it a powerful extension for AI-driven workflows."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Jurdn",
|
|
||||||
"title": "Jurdns Groq API Node",
|
|
||||||
"id": "jurdnsgroqapinode",
|
|
||||||
"reference": "https://github.com/jurdnisglobby/ComfyUI-Jurdns-Groq-Node",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/jurdnisglobby/ComfyUI-Jurdns-Groq-Node"
|
|
||||||
],
|
|
||||||
"pip": ["groq"],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This node utilizes the Groq.com API to enhance prompts. (Place API key and main system prompt in the groq_config.json)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "randomnoner11",
|
|
||||||
"title": "ComfyUI-MistralAI-API",
|
|
||||||
"reference": "https://github.com/randomnoner11/ComfyUI-MistralAI-API",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/randomnoner11/ComfyUI-MistralAI-API"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Mistral AI API's chat completion endpoint in ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "jefferyharrell",
|
|
||||||
"title": "JH Misc. Nodes",
|
|
||||||
"reference": "https://github.com/ComfyUI-JH/ComfyUI-JH-Misc-Nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ComfyUI-JH/ComfyUI-JH-Misc-Nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "NODES: Daisy-Chainable String Constant, Two-Way Switch, Three-Way Switch, Preview Imag\nMiscellaneous custom nodes for ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ShmuelRonen",
|
|
||||||
"title": "ComfyUI-EmptyHunyuanLatent",
|
|
||||||
"reference": "https://github.com/ShmuelRonen/ComfyUI-EmptyHunyuanLatent",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ShmuelRonen/ComfyUI-EmptyHunyuanLatent"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Custom nodes for ComfyUI to generate empty latent space compatible with Hunyuan models for both image and video generation."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "yondonfu",
|
|
||||||
"title": "ComfyUI-Torch-Compile",
|
|
||||||
"id": "comfyui-torch-compile",
|
|
||||||
"reference": "https://github.com/yondonfu/ComfyUI-Torch-Compile",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/yondonfu/ComfyUI-Torch-Compile"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI nodes for torch.compile."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ShmuelRonen",
|
|
||||||
"title": "ComfyUI-ImageMotionGuider",
|
|
||||||
"reference": "https://github.com/ShmuelRonen/ComfyUI-ImageMotionGuider",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ShmuelRonen/ComfyUI-ImageMotionGuider"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A custom ComfyUI node designed to create seamless motion effects from single images by integrating with Hunyuan Video through latent space manipulation."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "hzane",
|
|
||||||
"title": "OmniGen-ComfyUI",
|
|
||||||
"reference": "https://github.com/hzane/OmniGen-ComfyUI",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/hzane/OmniGen-ComfyUI"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A custom node for [a/OmniGen](https://github.com/VectorSpaceLab/OmniGen)."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "bombax-xiaoice",
|
|
||||||
"title": "ComfyUI-Open-Sora-I2V",
|
|
||||||
"reference": "https://github.com/bombax-xiaoice/ComfyUI-Open-Sora-I2V",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/bombax-xiaoice/ComfyUI-Open-Sora-I2V"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Another comfy implementation for the short video generation project hpcaitech/Open-Sora, supporting latest V2 and V3 models as well as image to video functions, etc."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "taabata",
|
|
||||||
"title": "SANA_LOWVRAM",
|
|
||||||
"reference": "https://github.com/taabata/SANA_LOWVRAM",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/taabata/SANA_LOWVRAM"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI Diffusers wrapper nodes to run SANA models on low vram devices. Works on 2GB VRAM 12GB RAM laptop."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "SongGuo11",
|
|
||||||
"title": "ComfyUI SaveAnything Node (SG11)",
|
|
||||||
"reference": "https://github.com/SongGuo11/ComfyUI-SaveAnything-SG11",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/SongGuo11/ComfyUI-SaveAnything-SG11"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A ComfyUI custom node for saving images in various formats"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "licyk",
|
|
||||||
"title": "ComfyUI-TCD-Sampler",
|
|
||||||
"id": "TCD-Sampler",
|
|
||||||
"reference": "https://github.com/licyk/ComfyUI-TCD-Sampler",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/licyk/ComfyUI-TCD-Sampler"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Adding TCD sampling"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Koishi-Star",
|
|
||||||
"title": "Pyramid_Noise_For_Inference",
|
|
||||||
"id": "Pyramid_Noise_For_Inference",
|
|
||||||
"reference": "https://github.com/Koishi-Star/Pyramid_Noise_For_Inference",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Koishi-Star/Pyramid_Noise_For_Inference"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Using pyramid_noise instead of original noise in inference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Light-x02",
|
|
||||||
"title": "Flux Settings Node",
|
|
||||||
"id": "flux_settings_node",
|
|
||||||
"reference": "https://github.com/Light-x02/ComfyUI-FluxSettingsNode",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Light-x02/ComfyUI-FluxSettingsNode"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A combined node for ComfyUI with six configurable tabs for managing multiple parameter configurations, including guidance, sampler, scheduler, steps, and denoise."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "pharmapsychotic",
|
|
||||||
"title": "comfy-cliption",
|
|
||||||
"id": "comfy-cliption",
|
|
||||||
"reference": "https://github.com/pharmapsychotic/comfy-cliption",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/pharmapsychotic/comfy-cliption"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Image to caption with CLIP ViT-L/14. Small and fast addition to the CLIP-L model you already have loaded to generate captions for images within your workflow."
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -270,6 +270,27 @@
|
|||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A node for demonstration."
|
"description": "A node for demonstration."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "cozy_spoke",
|
||||||
|
"reference": "https://github.com/cozy-comfyui/cozy_spoke",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cozy-comfyui/cozy_spoke"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Example node communicating between ComfyUI Javascript and Python."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Cozy Link Toggle",
|
||||||
|
"id": "cozyLinkToggle",
|
||||||
|
"reference": "https://github.com/cozy-comfyui/cozy_link_toggle",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cozy-comfyui/cozy_link_toggle"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Example of using ComfyUI Toolbar to Toggle ComfyUI links on/off"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,7 @@ import platform
|
|||||||
import json
|
import json
|
||||||
import ast
|
import ast
|
||||||
import logging
|
import logging
|
||||||
|
import traceback
|
||||||
|
|
||||||
glob_path = os.path.join(os.path.dirname(__file__), "glob")
|
glob_path = os.path.join(os.path.dirname(__file__), "glob")
|
||||||
sys.path.append(glob_path)
|
sys.path.append(glob_path)
|
||||||
@@ -17,9 +18,19 @@ import security_check
|
|||||||
import manager_util
|
import manager_util
|
||||||
import cm_global
|
import cm_global
|
||||||
import manager_downloader
|
import manager_downloader
|
||||||
from datetime import datetime
|
|
||||||
import folder_paths
|
import folder_paths
|
||||||
|
|
||||||
|
try:
|
||||||
|
from datetime import datetime
|
||||||
|
def current_timestamp():
|
||||||
|
return datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
||||||
|
except:
|
||||||
|
import time
|
||||||
|
import datetime
|
||||||
|
logging.error(f"[ComfyUI-Manager] fallback timestamp mode\n datetime module is invalid: '{datetime.__file__}'")
|
||||||
|
def current_timestamp():
|
||||||
|
return str(time.time()).split('.')[0]
|
||||||
|
|
||||||
security_check.security_check()
|
security_check.security_check()
|
||||||
|
|
||||||
cm_global.pip_blacklist = ['torch', 'torchsde', 'torchvision']
|
cm_global.pip_blacklist = ['torch', 'torchsde', 'torchvision']
|
||||||
@@ -136,6 +147,48 @@ def process_wrap(cmd_str, cwd_path, handler=None, env=None):
|
|||||||
return process.wait()
|
return process.wait()
|
||||||
|
|
||||||
|
|
||||||
|
original_stdout = sys.stdout
|
||||||
|
|
||||||
|
|
||||||
|
def try_get_custom_nodes(x):
|
||||||
|
for custom_nodes_dir in folder_paths.get_folder_paths('custom_nodes'):
|
||||||
|
if x.startswith(custom_nodes_dir):
|
||||||
|
relative_path = os.path.relpath(x, custom_nodes_dir)
|
||||||
|
next_segment = relative_path.split(os.sep)[0]
|
||||||
|
if next_segment.lower() != 'comfyui-manager':
|
||||||
|
return next_segment, os.path.join(custom_nodes_dir, next_segment)
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def extract_origin_module():
|
||||||
|
stack = traceback.extract_stack()[:-2]
|
||||||
|
for frame in reversed(stack):
|
||||||
|
info = try_get_custom_nodes(frame.filename)
|
||||||
|
if info is None:
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
return info
|
||||||
|
return None
|
||||||
|
|
||||||
|
def extract_origin_module_from_strings(file_paths):
|
||||||
|
for filepath in file_paths:
|
||||||
|
info = try_get_custom_nodes(filepath)
|
||||||
|
if info is None:
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
return info
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def finalize_startup():
|
||||||
|
res = {}
|
||||||
|
for k, v in cm_global.error_dict.items():
|
||||||
|
if v['path'] in import_failed_extensions:
|
||||||
|
res[k] = v
|
||||||
|
|
||||||
|
cm_global.error_dict = res
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if '--port' in sys.argv:
|
if '--port' in sys.argv:
|
||||||
port_index = sys.argv.index('--port')
|
port_index = sys.argv.index('--port')
|
||||||
@@ -215,8 +268,16 @@ try:
|
|||||||
if match:
|
if match:
|
||||||
import_failed_extensions.add(match.group(1).strip())
|
import_failed_extensions.add(match.group(1).strip())
|
||||||
|
|
||||||
if 'Starting server' in message:
|
if not self.is_stdout:
|
||||||
is_start_mode = False
|
origin_info = extract_origin_module()
|
||||||
|
if origin_info is not None:
|
||||||
|
name, origin_path = origin_info
|
||||||
|
|
||||||
|
if name != 'comfyui-manager':
|
||||||
|
if name not in cm_global.error_dict:
|
||||||
|
cm_global.error_dict[name] = {'name': name, 'path': origin_path, 'msg': ''}
|
||||||
|
|
||||||
|
cm_global.error_dict[name]['msg'] += message
|
||||||
|
|
||||||
if not self.is_stdout:
|
if not self.is_stdout:
|
||||||
match = re.search(pat_tqdm, message)
|
match = re.search(pat_tqdm, message)
|
||||||
@@ -235,7 +296,7 @@ try:
|
|||||||
|
|
||||||
def sync_write(self, message, file_only=False):
|
def sync_write(self, message, file_only=False):
|
||||||
with log_lock:
|
with log_lock:
|
||||||
timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
timestamp = current_timestamp()
|
||||||
if self.last_char != '\n':
|
if self.last_char != '\n':
|
||||||
log_file.write(message)
|
log_file.write(message)
|
||||||
else:
|
else:
|
||||||
@@ -301,12 +362,34 @@ try:
|
|||||||
if match:
|
if match:
|
||||||
import_failed_extensions.add(match.group(1).strip())
|
import_failed_extensions.add(match.group(1).strip())
|
||||||
|
|
||||||
|
if 'Traceback' in message:
|
||||||
|
file_lists = self._extract_file_paths(message)
|
||||||
|
origin_info = extract_origin_module_from_strings(file_lists)
|
||||||
|
if origin_info is not None:
|
||||||
|
name, origin_path = origin_info
|
||||||
|
|
||||||
|
if name != 'comfyui-manager':
|
||||||
|
if name not in cm_global.error_dict:
|
||||||
|
cm_global.error_dict[name] = {'name': name, 'path': origin_path, 'msg': ''}
|
||||||
|
|
||||||
|
cm_global.error_dict[name]['msg'] += message
|
||||||
|
|
||||||
if 'Starting server' in message:
|
if 'Starting server' in message:
|
||||||
is_start_mode = False
|
is_start_mode = False
|
||||||
|
finalize_startup()
|
||||||
|
|
||||||
if stderr_wrapper:
|
if stderr_wrapper:
|
||||||
stderr_wrapper.sync_write(message+'\n', file_only=True)
|
stderr_wrapper.sync_write(message+'\n', file_only=True)
|
||||||
|
|
||||||
|
def _extract_file_paths(self, msg):
|
||||||
|
file_paths = []
|
||||||
|
for line in msg.split('\n'):
|
||||||
|
match = re.findall(r'File \"(.*?)\", line \d+', line)
|
||||||
|
for x in match:
|
||||||
|
if not x.startswith('<'):
|
||||||
|
file_paths.extend(match)
|
||||||
|
return file_paths
|
||||||
|
|
||||||
|
|
||||||
logging.getLogger().addHandler(LoggingHandler())
|
logging.getLogger().addHandler(LoggingHandler())
|
||||||
|
|
||||||
@@ -339,7 +422,7 @@ except:
|
|||||||
print("## [ERROR] ComfyUI-Manager: GitPython package seems to be installed, but failed to load somehow. Make sure you have a working git client installed")
|
print("## [ERROR] ComfyUI-Manager: GitPython package seems to be installed, but failed to load somehow. Make sure you have a working git client installed")
|
||||||
|
|
||||||
|
|
||||||
print("** ComfyUI startup time:", datetime.now())
|
print("** ComfyUI startup time:", current_timestamp())
|
||||||
print("** Platform:", platform.system())
|
print("** Platform:", platform.system())
|
||||||
print("** Python version:", sys.version)
|
print("** Python version:", sys.version)
|
||||||
print("** Python executable:", sys.executable)
|
print("** Python executable:", sys.executable)
|
||||||
@@ -403,7 +486,7 @@ def is_installed(name):
|
|||||||
if name.startswith('#'):
|
if name.startswith('#'):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
pattern = r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)'
|
pattern = r'([^<>!~=]+)([<>!~=]=?)([0-9.a-zA-Z]*)'
|
||||||
match = re.search(pattern, name)
|
match = re.search(pattern, name)
|
||||||
|
|
||||||
if match:
|
if match:
|
||||||
@@ -418,7 +501,7 @@ def is_installed(name):
|
|||||||
if match is None:
|
if match is None:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
return True
|
return True
|
||||||
elif match.group(2) in ['<=', '==', '<']:
|
elif match.group(2) in ['<=', '==', '<', '~=']:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
||||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "comfyui-manager"
|
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."
|
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||||
version = "3.5"
|
version = "3.8"
|
||||||
license = { file = "LICENSE.txt" }
|
license = { file = "LICENSE.txt" }
|
||||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ python -m venv venv
|
|||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu121
|
python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu121
|
||||||
python -m pip install -r requirements.txt
|
python -m pip install -r requirements.txt
|
||||||
python -m pip install -r custom_nodes/ComfyUI-Manager/requirements.txt
|
python -m pip install -r custom_nodes/comfyui-manager/requirements.txt
|
||||||
cd ..
|
cd ..
|
||||||
echo "#!/bin/bash" > run_gpu.sh
|
echo "#!/bin/bash" > run_gpu.sh
|
||||||
echo "cd ComfyUI" >> run_gpu.sh
|
echo "cd ComfyUI" >> run_gpu.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user