Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41998565db | ||
|
|
3c64a8eb18 | ||
|
|
962ba0b358 | ||
|
|
16780f91a3 | ||
|
|
5e5a06b0ff | ||
|
|
859e0f20b8 | ||
|
|
9a15d5ce4e | ||
|
|
e4bba28579 | ||
|
|
f3efddd849 | ||
|
|
39190f97d4 | ||
|
|
3b037c5011 | ||
|
|
79387d5396 | ||
|
|
62e747b74a | ||
|
|
9643aed8f8 | ||
|
|
f4fb9e3ab4 | ||
|
|
30487e6108 | ||
|
|
fd2d285af5 | ||
|
|
87bbf59d87 | ||
|
|
37e954626d | ||
|
|
829c7d8be6 | ||
|
|
3274885803 | ||
|
|
c6153ea67d | ||
|
|
191bffedcb | ||
|
|
9ddda81372 | ||
|
|
ddb3c4e3ce | ||
|
|
c87d27630b |
13
README.md
13
README.md
@@ -25,6 +25,7 @@ To install ComfyUI-Manager in addition to an existing installation of ComfyUI, y
|
||||
- standalone version
|
||||
- select option: use windows default console window
|
||||
2. Download [scripts/install-manager-for-portable-version.bat](https://github.com/ltdrdata/ComfyUI-Manager/raw/main/scripts/install-manager-for-portable-version.bat) into installed `"ComfyUI_windows_portable"` directory
|
||||
- Don't click. Right click the link and use save as...
|
||||
3. double click `install-manager-for-portable-version.bat` batch file
|
||||
|
||||

|
||||
@@ -50,6 +51,7 @@ python -m venv venv
|
||||
pip install comfy-cli
|
||||
comfy install
|
||||
```
|
||||
* See also: https://github.com/Comfy-Org/comfy-cli
|
||||
|
||||
|
||||
### Installation[method4] (Installation for linux+venv: ComfyUI + ComfyUI-Manager)
|
||||
@@ -58,6 +60,7 @@ To install ComfyUI with ComfyUI-Manager on Linux using a venv environment, you c
|
||||
* **prerequisite: python-is-python3, python3-venv, git**
|
||||
|
||||
1. Download [scripts/install-comfyui-venv-linux.sh](https://github.com/ltdrdata/ComfyUI-Manager/raw/main/scripts/install-comfyui-venv-linux.sh) into empty install directory
|
||||
- Don't click. Right click the link and use save as...
|
||||
- ComfyUI will be installed in the subdirectory of the specified directory, and the directory will contain the generated executable script.
|
||||
2. `chmod +x install-comfyui-venv-linux.sh`
|
||||
3. `./install-comfyui-venv-linux.sh`
|
||||
@@ -146,7 +149,15 @@ In `ComfyUI-Manager` V3.0 and later, configuration files and dynamically generat
|
||||
* Saved snapshot files: `<USER_DIRECTORY>/default/ComfyUI-Manager/snapshots`
|
||||
* Startup script files: `<USER_DIRECTORY>/default/ComfyUI-Manager/startup-scripts`
|
||||
* Component files: `<USER_DIRECTORY>/default/ComfyUI-Manager/components`
|
||||
|
||||
|
||||
|
||||
## `extra_model_paths.yaml` Configuration
|
||||
The following settings are applied based on the section marked as `is_default`.
|
||||
|
||||
* `custom_nodes`: Path for installing custom nodes
|
||||
* Importing does not need to adhere to the path set as `is_default`, but this is the path where custom nodes are installed by the `ComfyUI Nodes Manager`.
|
||||
* `download_model_base`: Path for downloading models
|
||||
|
||||
|
||||
## Snapshot-Manager
|
||||
* When you press `Save snapshot` or use `Update All` on `Manager Menu`, the current installation status snapshot is saved.
|
||||
|
||||
15
cm-cli.py
15
cm-cli.py
@@ -20,12 +20,16 @@ sys.path.append(os.path.join(os.path.dirname(__file__), "glob"))
|
||||
|
||||
import manager_util
|
||||
|
||||
# read env vars
|
||||
# COMFYUI_FOLDERS_BASE_PATH is not required in cm-cli.py
|
||||
# `comfy_path` should be resolved before importing manager_core
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
if comfy_path is None:
|
||||
try:
|
||||
import folder_paths
|
||||
comfy_path = os.path.join(os.path.dirname(folder_paths.__file__))
|
||||
except:
|
||||
print("\n[bold yellow]WARN: The `COMFYUI_PATH` environment variable is not set. Assuming `custom_nodes/ComfyUI-Manager/../../` as the ComfyUI path.[/bold yellow]", file=sys.stderr)
|
||||
comfy_path = os.path.abspath(os.path.join(manager_util.comfyui_manager_path, '..', '..'))
|
||||
|
||||
sys.path.append(comfy_path)
|
||||
@@ -36,14 +40,7 @@ import manager_core as core
|
||||
from manager_core import unified_manager
|
||||
import cnr_utils
|
||||
|
||||
|
||||
comfyui_manager_path = os.path.abspath(os.path.dirname(__file__))
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
|
||||
if comfy_path is None:
|
||||
print("\n[bold yellow]WARN: The `COMFYUI_PATH` environment variable is not set. Assuming `custom_nodes/ComfyUI-Manager/../../` as the ComfyUI path.[/bold yellow]", file=sys.stderr)
|
||||
comfy_path = os.path.abspath(os.path.join(comfyui_manager_path, '..', '..'))
|
||||
|
||||
|
||||
cm_global.pip_blacklist = ['torch', 'torchsde', 'torchvision']
|
||||
cm_global.pip_downgrade_blacklist = ['torch', 'torchsde', 'torchvision', 'transformers', 'safetensors', 'kornia']
|
||||
@@ -94,7 +91,7 @@ class Ctx:
|
||||
self.no_deps = False
|
||||
self.mode = 'cache'
|
||||
self.user_directory = None
|
||||
self.custom_nodes_paths = [os.path.join(core.comfy_path, 'custom_nodes')]
|
||||
self.custom_nodes_paths = [os.path.join(core.comfy_base_path, 'custom_nodes')]
|
||||
self.manager_files_directory = os.path.dirname(__file__)
|
||||
|
||||
if Ctx.folder_paths is None:
|
||||
@@ -118,7 +115,7 @@ class Ctx:
|
||||
if channel is not None:
|
||||
self.channel = channel
|
||||
|
||||
asyncio.run(unified_manager.reload(cache_mode=self.mode == 'cache', dont_wait=False))
|
||||
asyncio.run(unified_manager.reload(cache_mode=self.mode, dont_wait=False))
|
||||
asyncio.run(unified_manager.load_nightly(self.channel, self.mode))
|
||||
|
||||
def set_no_deps(self, no_deps):
|
||||
|
||||
@@ -430,7 +430,7 @@
|
||||
"https://github.com/EllangoK/ComfyUI-post-processing-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of post processing nodes for ComfyUI, simply download this repo and drag."
|
||||
"description": "A collection of post processing nodes for ComfyUI, which enable a variety of visually striking image effects."
|
||||
},
|
||||
{
|
||||
"author": "LEv145",
|
||||
@@ -591,7 +591,7 @@
|
||||
{
|
||||
"author": "city96",
|
||||
"title": "ComfyUI-GGUF",
|
||||
"id": "gguf",
|
||||
"id": "comfyui-gguf",
|
||||
"reference": "https://github.com/city96/ComfyUI-GGUF",
|
||||
"files": [
|
||||
"https://github.com/city96/ComfyUI-GGUF"
|
||||
@@ -1434,7 +1434,7 @@
|
||||
{
|
||||
"author": "asagi4",
|
||||
"title": "ComfyUI NPNet (Golden Noise)",
|
||||
"id": "comfyui-adaptive-guidance",
|
||||
"id": "npnet",
|
||||
"reference": "https://github.com/asagi4/ComfyUI-NPNet",
|
||||
"files": [
|
||||
"https://github.com/asagi4/ComfyUI-NPNet"
|
||||
@@ -1575,17 +1575,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes related to video workflows"
|
||||
},
|
||||
{
|
||||
"author": "Gourieff",
|
||||
"title": "ReActor Node for ComfyUI",
|
||||
"id": "reactor",
|
||||
"reference": "https://github.com/Gourieff/comfyui-reactor-node",
|
||||
"files": [
|
||||
"https://github.com/Gourieff/comfyui-reactor-node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The Fast and Simple 'roop-like' Face Swap Extension Node for ComfyUI, based on ReActor (ex Roop-GE) SD-WebUI Face Swap Extension"
|
||||
},
|
||||
{
|
||||
"author": "Gourieff",
|
||||
"title": "ComfyUI-FutureWarningIgnore",
|
||||
@@ -1597,6 +1586,16 @@
|
||||
"install_type": "copy",
|
||||
"description": "This extension collapses 'future warning' messages in your Console"
|
||||
},
|
||||
{
|
||||
"author": "Gourieff",
|
||||
"title": "comfyui-reactor-node",
|
||||
"reference": "https://github.com/Gourieff/ComfyUI-ReActor",
|
||||
"files": [
|
||||
"https://github.com/Gourieff/ComfyUI-ReActor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The Fast and Simple Face Swap Extension Node for ComfyUI, based on ReActor SD-WebUI Face Swap Extension"
|
||||
},
|
||||
{
|
||||
"author": "imb101",
|
||||
"title": "FaceSwap",
|
||||
@@ -4207,16 +4206,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": " If you want to draw two different characters together without blending their features, so you could try to check out this custom node."
|
||||
},
|
||||
{
|
||||
"author": "42lux",
|
||||
"title": "ComfyUI-safety-checker",
|
||||
"reference": "https://github.com/42lux/ComfyUI-safety-checker",
|
||||
"files": [
|
||||
"https://github.com/42lux/ComfyUI-safety-checker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A NSFW/Safety Checker Node for ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "42lux",
|
||||
"title": "Just a bunch of QOL nodes by 42lux",
|
||||
@@ -4624,7 +4613,7 @@
|
||||
"https://github.com/Scholar01/ComfyUI-Keyframe"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:Keyframe Part, Keyframe Interpolation Part, Keyframe Apply."
|
||||
"description": "set denoise strength for keyframe"
|
||||
},
|
||||
{
|
||||
"author": "Haoming02",
|
||||
@@ -7597,6 +7586,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Create dynamic prompts with wildcard list."
|
||||
},
|
||||
{
|
||||
"author": "1038lab",
|
||||
"title": "ComfyUI-EdgeTTS",
|
||||
"reference": "https://github.com/1038lab/ComfyUI-EdgeTTS",
|
||||
"files": [
|
||||
"https://github.com/1038lab/ComfyUI-EdgeTTS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-EdgeTTS is a powerful text-to-speech node for ComfyUI, leveraging Microsoft's Edge TTS capabilities. It enables seamless conversion of text into natural-sounding speech, supporting multiple languages and voices. Ideal for enhancing user interactions, this node is easy to integrate and customize, making it perfect for various applications."
|
||||
},
|
||||
{
|
||||
"author": "Klinter",
|
||||
"title": "Klinter_nodes",
|
||||
@@ -8424,6 +8423,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom ComfyUI Nodes for interacting with [a/Ollama](https://ollama.com/) using the [a/ollama python client](https://github.com/ollama/ollama-python).\nIntegrate the power of LLMs into CompfyUI workflows easily."
|
||||
},
|
||||
{
|
||||
"author": "stavsap",
|
||||
"title": "comfyui-kokoro",
|
||||
"reference": "https://github.com/stavsap/comfyui-kokoro",
|
||||
"files": [
|
||||
"https://github.com/stavsap/comfyui-kokoro"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom ComfyUI Nodes for TTS with Kokoro, genenrate and merge speakers for new style generations."
|
||||
},
|
||||
{
|
||||
"author": "dchatel",
|
||||
"title": "comfyui_davcha",
|
||||
@@ -10304,6 +10313,16 @@
|
||||
"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": "smthemex",
|
||||
"title": "ComfyUI_MangaNinjia",
|
||||
"reference": "https://github.com/smthemex/ComfyUI_MangaNinjia",
|
||||
"files": [
|
||||
"https://github.com/smthemex/ComfyUI_MangaNinjia"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI_MangaNinjia is a ComfyUI node of MangaNinja which is a Line Art Colorization with Precise Reference Following method."
|
||||
},
|
||||
{
|
||||
"author": "choey",
|
||||
"title": "Comfy-Topaz",
|
||||
@@ -12652,17 +12671,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Simple nodes for loading image files.Nodes that include a simple remote connection to Photoshop, a node that can overlay and preview an image with a mask, and a node that can load images directly from a file path."
|
||||
},
|
||||
{
|
||||
"author": "RedRayz",
|
||||
"title": "ComfyUI-Danbooru-To-WD",
|
||||
"id": "danbooru2wd",
|
||||
"reference": "https://github.com/RedRayz/ComfyUI-Danbooru-To-WD",
|
||||
"files": [
|
||||
"https://github.com/RedRayz/ComfyUI-Danbooru-To-WD"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Converts booru tags to a format suitable for Waifu Diffusion(or Danbooru based models)."
|
||||
},
|
||||
{
|
||||
"author": "Shibiko-AI",
|
||||
"title": "Shibiko AI ComfyUI Tools",
|
||||
@@ -13573,6 +13581,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node for ComfyUI allows you to use the Doubutsu small VLM model to describe images. Credit and further information on Doubutsu: [a/https://huggingface.co/qresearch/doubutsu-2b-pt-756](https://huggingface.co/qresearch/doubutsu-2b-pt-756)"
|
||||
},
|
||||
{
|
||||
"author": "EnragedAntelope",
|
||||
"title": "ComfyUI-ConstrainResolution",
|
||||
"reference": "https://github.com/EnragedAntelope/ComfyUI-ConstrainResolution",
|
||||
"files": [
|
||||
"https://github.com/EnragedAntelope/ComfyUI-ConstrainResolution"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Given min/max resolution constraints, this automatically suggests optimal dimensions while preserving aspect ratio. Ideal for Image to Image (I2I) and Image to Video (I2V) workflows!"
|
||||
},
|
||||
{
|
||||
"author": "jn-jairo",
|
||||
"title": "JNComfy",
|
||||
@@ -14530,6 +14548,26 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI implementation of [a/EfficientTAM](https://github.com/yformer/EfficientTAM)"
|
||||
},
|
||||
{
|
||||
"author": "ryanontheinside",
|
||||
"title": "Doom",
|
||||
"reference": "https://github.com/ryanontheinside/ComfyUI_Doom",
|
||||
"files": [
|
||||
"https://github.com/ryanontheinside/ComfyUI_Doom"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Play Doom in ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "ryanontheinside",
|
||||
"title": "ComfyUI_ProfilerX",
|
||||
"reference": "https://github.com/ryanontheinside/ComfyUI_ProfilerX",
|
||||
"files": [
|
||||
"https://github.com/ryanontheinside/ComfyUI_ProfilerX"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Node and workflow profiling. Find bottlenecks in your workflows. See trends over time."
|
||||
},
|
||||
{
|
||||
"author": "ControlAltAI",
|
||||
"title": "ControlAltAI Nodes",
|
||||
@@ -14819,6 +14857,17 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI node for to make text to speech audio using F5-TTS [a/https://github.com/SWivid/F5-TTS](https://github.com/SWivid/F5-TTS)"
|
||||
},
|
||||
{
|
||||
"author": "niknah",
|
||||
"title": "ComfyUI Hunyuan-3D-2",
|
||||
"id": "comfyui-hunyuan-3d-2",
|
||||
"reference": "https://github.com/niknah/ComfyUI-Hunyuan-3D-2",
|
||||
"files": [
|
||||
"https://github.com/niknah/ComfyUI-Hunyuan-3D-2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Image to 3D using Hunyuan-3D-2"
|
||||
},
|
||||
{
|
||||
"author": "daryltucker",
|
||||
"title": "ComfyUI-LoadFiles",
|
||||
@@ -15875,6 +15924,17 @@
|
||||
"tags": ["Flux", "redux", "prompt"],
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "CY-CHENYUE",
|
||||
"title": "ComfyUI-MiniCPM-o",
|
||||
"id": "ComfyUI-MiniCPM-o",
|
||||
"reference": "https://github.com/CY-CHENYUE/ComfyUI-MiniCPM-o",
|
||||
"files": [
|
||||
"https://github.com/CY-CHENYUE/ComfyUI-MiniCPM-o"
|
||||
],
|
||||
"description": "ComfyUI custom nodes for MiniCPM",
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "codecringebinge",
|
||||
"title": "ComfyUI-Arrow-Key-Canvas-Navigation",
|
||||
@@ -16479,7 +16539,7 @@
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository provides utility nodes for defining inputs and outputs in ComfyUI workflows. These nodes are essential for running ShellAgent apps with ComfyUI, but they can also be used independently to specify input/output variables and their requirements explicitly."
|
||||
},
|
||||
},
|
||||
{
|
||||
"author": "Vrch Studio (vrch.ai)",
|
||||
"title": "ComfyUI Web Viewer",
|
||||
@@ -16498,7 +16558,7 @@
|
||||
"https://github.com/kk8bit/KayTool"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "KayTool is a growing toolkit for ComfyUI. It includes the 'Custom Save Image' node, allowing image saving in PNG or JPG format, with support for ICC profiles like sRGB and Adobe RGB, metadata control, JPG quality adjustment."
|
||||
"description": "This is a versatile and ever-expanding toolkit for ComfyUI, offering powerful node functionalities such as “Custom Save Image,” “Professional Color Adjustment,” and “Prompt Enhancer.” Its features include precise image saving with support for ICC color profiles (sRGB/Adobe RGB), metadata embedding, advanced image adjustments (exposure, contrast, color temperature, hue, saturation), professional filter previews, dynamic prompt editing, and high-quality Baidu AI translation."
|
||||
},
|
||||
{
|
||||
"author": "sousakujikken",
|
||||
@@ -17111,16 +17171,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:StableDelight-weiweiliang"
|
||||
},
|
||||
{
|
||||
"author": "ryanontheinside",
|
||||
"title": "Doom",
|
||||
"reference": "https://github.com/ryanontheinside/ComfyUI_Doom",
|
||||
"files": [
|
||||
"https://github.com/ryanontheinside/ComfyUI_Doom"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Play Doom in ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "Comflowy",
|
||||
"title": "Comflowy's Custom Nodes",
|
||||
@@ -17561,6 +17611,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Redux style adds more controls"
|
||||
},
|
||||
{
|
||||
"author": "yichengup",
|
||||
"title": "Comfyui-Deepseek",
|
||||
"reference": "https://github.com/yichengup/Comfyui-Deepseek",
|
||||
"files": [
|
||||
"https://github.com/yichengup/Comfyui-Deepseek"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "About DeepSeek Chat API\nGo here to register and get the api-key [a/https://platform.deepseek.com/](https://platform.deepseek.com/) Then enter api_key in config.json"
|
||||
},
|
||||
{
|
||||
"author": "Horizon Team",
|
||||
"title": "ComfyUI_FluxMod",
|
||||
@@ -18056,7 +18116,7 @@
|
||||
"https://github.com/theshubzworld/ComfyUI-TogetherVision"
|
||||
],
|
||||
"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 using Together AI's Vision models for free image descriptions, image generation, and image-to-image transformation. Features include customizable prompts, advanced parameters, and robust error handling."
|
||||
},
|
||||
{
|
||||
"author": "NeoGriever",
|
||||
@@ -18131,7 +18191,7 @@
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "magic-quill",
|
||||
"author": "magic-quill",
|
||||
"title": "ComfyUI_MagicQuill",
|
||||
"id": "MagicQuill",
|
||||
"reference": "https://github.com/magic-quill/ComfyUI_MagicQuill",
|
||||
@@ -18752,16 +18812,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node allows you to generate logo images using Google Fonts."
|
||||
},
|
||||
{
|
||||
"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": "SongGuo11",
|
||||
"title": "ComfyUI SaveAnything Node (SG11)",
|
||||
@@ -19285,11 +19335,11 @@
|
||||
"description": "A ComfyUI extension that improves panning and zooming on trackpads and with the mouse wheel."
|
||||
},
|
||||
{
|
||||
"author": "nmlen",
|
||||
"author": "fuselayer",
|
||||
"title": "comfyui-mosaic-blur",
|
||||
"reference": "https://github.com/nmlen/comfyui-mosaic-blur",
|
||||
"reference": "https://github.com/fuselayer/comfyui-mosaic-blur",
|
||||
"files": [
|
||||
"https://github.com/nmlen/comfyui-mosaic-blur"
|
||||
"https://github.com/fuselayer/comfyui-mosaic-blur"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A simple mosaic blur node for ComfyUI that uses CV2 or Pillow"
|
||||
@@ -19363,7 +19413,7 @@
|
||||
"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."
|
||||
"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": "westNeighbor",
|
||||
@@ -19377,7 +19427,7 @@
|
||||
},
|
||||
{
|
||||
"author": "westNeighbor",
|
||||
"title": "ComfyUI-ultimate-openpose-estimator",
|
||||
"title": "ComfyUI-ultimate-openpose-editor",
|
||||
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor",
|
||||
"files": [
|
||||
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor"
|
||||
@@ -19405,6 +19455,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Simple custom node for ComfyUI that converts JSON strings to JSON objects."
|
||||
},
|
||||
{
|
||||
"author": "a-und-b",
|
||||
"title": "ComfyUI_LoRA_from_URL",
|
||||
"reference": "https://github.com/a-und-b/ComfyUI_LoRA_from_URL",
|
||||
"files": [
|
||||
"https://github.com/a-und-b/ComfyUI_LoRA_from_URL"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A simple-as-possible custom node for ComfyUI to load LoRA models from a public URL."
|
||||
},
|
||||
{
|
||||
"author": "r3dial",
|
||||
"title": "Redial Discomphy - Discord Integration for ComfyUI",
|
||||
@@ -19457,6 +19517,17 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Moondream's gaze detection feature wrapper node."
|
||||
},
|
||||
{
|
||||
"author": "jhj0517",
|
||||
"title": "ComfyUI jhj Kokoro Onnx",
|
||||
"id": "comfyui-jhj-kokoro-onnx",
|
||||
"reference": "https://github.com/jhj0517/ComfyUI-jhj-Kokoro-Onnx",
|
||||
"files": [
|
||||
"https://github.com/jhj0517/ComfyUI-jhj-Kokoro-Onnx"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "kokoro-onnx (opensource TTS model) wrapper for ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "jnxmx",
|
||||
"title": "ComfyUI_HuggingFace_Downloader",
|
||||
@@ -19528,14 +19599,412 @@
|
||||
"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",
|
||||
"author": "BoyuanJiang",
|
||||
"title": "FitDiT[official] - High-fidelity Virtual Try-on",
|
||||
"id": "fitdit",
|
||||
"reference": "https://github.com/BoyuanJiang/FitDiT/tree/FitDiT-ComfyUI",
|
||||
"files": [
|
||||
"https://github.com/hosterosi/ComfyUI_OpenAI"
|
||||
"https://github.com/BoyuanJiang/FitDiT-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."
|
||||
"description": "FitDiT is designed for high-fidelity virtual try-on using Diffusion Transformers (DiT)."
|
||||
},
|
||||
{
|
||||
"author": "nofunstudio",
|
||||
"title": "Node_Fun_ComfyUI",
|
||||
"reference": "https://github.com/nofunstudio/Node_Fun_ComfyUI",
|
||||
"files": [
|
||||
"https://github.com/nofunstudio/Node_Fun_ComfyUI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI Custom Node Pack Layered Infinite Zoom Node"
|
||||
},
|
||||
{
|
||||
"author": "PixelML",
|
||||
"title": "PixelML ComfyUI Nodes",
|
||||
"reference": "https://github.com/PixelML/ComfyUI-PixelML-CustomNodes",
|
||||
"files": [
|
||||
"https://github.com/PixelML/ComfyUI-PixelML-CustomNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes for ComfyUI focused on variable handling and workflow automation."
|
||||
},
|
||||
{
|
||||
"author": "shabri-arrahim",
|
||||
"title": "ComfyUI Safety Checker",
|
||||
"reference": "https://github.com/shabri-arrahim/ComfyUI-Safety-Checker",
|
||||
"files": [
|
||||
"https://github.com/shabri-arrahim/ComfyUI-Safety-Checker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This project provides custom safety checkers for image classification using Falcons AI and CompVis models. The safety checkers are designed to detect and filter out NSFW content from images."
|
||||
},
|
||||
{
|
||||
"author": "shenduldh",
|
||||
"title": "ComfyUI-Lightning",
|
||||
"reference": "https://github.com/shenduldh/ComfyUI-Lightning",
|
||||
"files": [
|
||||
"https://github.com/shenduldh/ComfyUI-Lightning"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Accelerate FLUX inferencing speed for ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "theAdamColton",
|
||||
"title": "ComfyUI-texflow-extension",
|
||||
"reference": "https://github.com/theAdamColton/ComfyUI-texflow-extension",
|
||||
"files": [
|
||||
"https://github.com/theAdamColton/ComfyUI-texflow-extension"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is the ComfyUI extension for use with texflow. It provides two new nodes, 'Load Texflow Depth Image' and 'Save Texflow Image'.\nFor more information see [a/the main texflow repo](https://github.com/theAdamColton/texflow/)"
|
||||
},
|
||||
{
|
||||
"author": "hmwl",
|
||||
"title": "ComfyUI_zip",
|
||||
"reference": "https://github.com/hmwl/ComfyUI_zip",
|
||||
"files": [
|
||||
"https://github.com/hmwl/ComfyUI_zip"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI zip package image processing"
|
||||
},
|
||||
{
|
||||
"author": "nisimjoseph",
|
||||
"title": "ComfyUI OpenAI Prompter",
|
||||
"reference": "https://github.com/nisimjoseph/ComfyUI_OpenAI-Prompter",
|
||||
"files": [
|
||||
"https://github.com/nisimjoseph/ComfyUI_OpenAI-Prompter"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node for ComfyUI that generates creative and detailed prompts using OpenAI's GPT models."
|
||||
},
|
||||
{
|
||||
"author" : "ngosset",
|
||||
"title": "ImageSimilarity",
|
||||
"id": "imageSimilarity",
|
||||
"reference": "https://github.com/ngosset/ComfyUI-ImageSimilarity",
|
||||
"files": [
|
||||
"https://github.com/ngosset/ComfyUI-ImageSimilarity"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Uses ResNet embeddings and cosine similarity to compare the likeness of two images."
|
||||
},
|
||||
{
|
||||
"author": "Bellzs",
|
||||
"title": "ComfyUI-LoRA-Assistant",
|
||||
"reference": "https://github.com/Bellzs/ComfyUI-LoRA-Assistant",
|
||||
"files": [
|
||||
"https://github.com/Bellzs/ComfyUI-LoRA-Assistant"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The plug-in is designed to automatically save the association between the LoRA model and Trigger words to a Local JSON file so that when the LoRA model is loaded, the associated trigger words can be automatically loaded via the node 'LoRA Trigger Local' without manual input."
|
||||
},
|
||||
{
|
||||
"author" : "strand1",
|
||||
"title": "ComfyUI-Autogen",
|
||||
"reference": "https://github.com/strand1/ComfyUI-Autogen",
|
||||
"files": [
|
||||
"https://github.com/strand1/ComfyUI-Autogen"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of nodes for using Autogen with ComfyUI\n[a/AutoGen](https://github.com/microsoft/AutoGen): assistant agents, group chats, code executor, etc."
|
||||
},
|
||||
{
|
||||
"author": "hellercommaa",
|
||||
"title": "Hunyuan Video Resolutions",
|
||||
"id": "hunyuanvideoresolutions",
|
||||
"reference": "https://github.com/HellerCommaA/ComfyUI-VideoResolutions",
|
||||
"files": [
|
||||
"https://github.com/HellerCommaA/ComfyUI-VideoResolutions"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A super simple node that outputs common video resolutions as 2 integers for Hunyuan and others!"
|
||||
},
|
||||
{
|
||||
"author": "benjiyaya",
|
||||
"title": "ComfyUI-KokoroTTS",
|
||||
"reference": "https://github.com/benjiyaya/ComfyUI-KokoroTTS",
|
||||
"files": [
|
||||
"https://github.com/benjiyaya/ComfyUI-KokoroTTS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A Text To Speech node using Kokoro TTS in ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "WangPengxing",
|
||||
"title": "ComfyUI WPX Nodes",
|
||||
"reference": "https://github.com/WangPengxing/ComfyUI_WPX_Node",
|
||||
"files": [
|
||||
"https://github.com/WangPengxing/ComfyUI_WPX_Node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node collection for ComfyUI, offering enhanced image processing features."
|
||||
},
|
||||
{
|
||||
"author": "PixelFunAI",
|
||||
"title": "Hunyuan LoRA Loader Nodes",
|
||||
"reference": "https://github.com/PixelFunAI/ComfyUI_PixelFun",
|
||||
"files": [
|
||||
"https://github.com/PixelFunAI/ComfyUI_PixelFun"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This collection provides four additional nodes for loading and managing Hunyuan Video LoRAs in ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "Burgstall-labs",
|
||||
"title": "ComfyUI-BS_Kokoro-onnx",
|
||||
"reference": "https://github.com/Burgstall-labs/ComfyUI-BS_Kokoro-onnx",
|
||||
"files": [
|
||||
"https://github.com/Burgstall-labs/ComfyUI-BS_Kokoro-onnx"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI wrapper for [a/Kokoro-onnx](https://github.com/thewh1teagle/kokoro-onnx)"
|
||||
},
|
||||
{
|
||||
"author": "Kidev",
|
||||
"title": "ComfyUI Fisheye Effects Nodes",
|
||||
"reference": "https://github.com/Kidev/ComfyUI-Fisheye-effects",
|
||||
"files": [
|
||||
"https://github.com/Kidev/ComfyUI-Fisheye-effects"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Provides tools for applying and removing fisheye lens effects from images."
|
||||
},
|
||||
{
|
||||
"author": "feixuetuba",
|
||||
"title": "Spleeter",
|
||||
"reference": "https://github.com/feixuetuba/Spleeter",
|
||||
"files": [
|
||||
"https://github.com/feixuetuba/Spleeter"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a ComfyUI plugin based on [a/Spleeter](https://github.com/deezer/spleete). The model files are available on BaiduNetDisk. After downloading the model, place it in the checkpoints directory."
|
||||
},
|
||||
{
|
||||
"author": "aidec",
|
||||
"title": "Comfyui_TextBatch_aidec",
|
||||
"reference": "https://github.com/aidec/Comfyui_TextBatch_aidec",
|
||||
"files": [
|
||||
"https://github.com/aidec/Comfyui_TextBatch_aidec"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The Text Queue Processor can split text into groups line by line for batch processing (unfinished, with noticeable bugs still being fixed). Currently, on the first run, it may only process one item. Once that is completed, running it again usually works fine. After each run, the `start_index` needs to be manually reset. Occasionally, strange issues occur, such as multiple queues being added at once, while other times it works perfectly fine. The potential causes are still under investigation."
|
||||
},
|
||||
{
|
||||
"author": "asutermo",
|
||||
"title": "Try Off w/ Flux and CatVTON",
|
||||
"id": "tryoffflux",
|
||||
"reference": "https://github.com/asutermo/ComfyUI-Flux-TryOff",
|
||||
"files": [
|
||||
"https://github.com/asutermo/ComfyUI-Flux-TryOff"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a set of nodes to make it possible to extract garments/clothing from models to apply elsewhere."
|
||||
},
|
||||
{
|
||||
"author": "bugltd",
|
||||
"title": "ComfyLab Pack",
|
||||
"id": "comfylab-pack",
|
||||
"reference": "https://github.com/bugltd/ComfyLab-Pack",
|
||||
"files": [
|
||||
"https://github.com/bugltd/ComfyLab-Pack"
|
||||
],
|
||||
"nodename_pattern": " \\(lab\\)$",
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes: XY Plot with many options, Output Config (JSON / JSON5 / YAML), Queue, Format String, List utilities, Input nodes, ...."
|
||||
},
|
||||
{
|
||||
"author": "duchamps0305",
|
||||
"title": "comfyui-white-extractor",
|
||||
"reference": "https://github.com/duchamps0305/comfyui-white-extractor",
|
||||
"files": [
|
||||
"https://github.com/duchamps0305/comfyui-white-extractor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "a simple white extractor node for comfyui."
|
||||
},
|
||||
{
|
||||
"author": "DJ-Tribefull",
|
||||
"title": "Comfyui FOCUS nodes",
|
||||
"reference": "https://github.com/DJ-Tribefull/Comfyui_FOCUS_nodes",
|
||||
"files": [
|
||||
"https://github.com/DJ-Tribefull/Comfyui_FOCUS_nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a small collection of nodes designed for efficiency and the reduction of screen clutter. I work primarily with a two-stage SDXL workflow, so some of the nodes are tailored to that, but many of the most useful nodes can be used in any context."
|
||||
},
|
||||
{
|
||||
"author": "KLL535",
|
||||
"title": "ComfyUI_SimpleButcher",
|
||||
"reference": "https://github.com/KLL535/ComfyUI_SimpleButcher",
|
||||
"files": [
|
||||
"https://github.com/KLL535/ComfyUI_SimpleButcher"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "I needed to automate the process of generating images and I did not find ready-made simple solutions for this, so I wrote my own. The idea is to repeat the functionality of forge: the script 'Prompts from file or textbox'. So that you can easily sort through pre-prepared lists of prompts, lora, styles, and connect text as you like. The resulting images must be compatible with Forge, and ideally, no different from it. The problem is that Forge uses the internal name from the Lora file metadata as the lora name, not the file name. Therefore, all existing solutions simply did not understand my templates. I would also like it if lore could be written in any order and any quantity in a text file in this format: <lora:name:1.0> or <lora:name:unet=1.0:te=0.75> and this would be applied automatically, without the need to create nodes for each lora separately. I would like the civitai site to understand metadata, the closest to this was the alexopus/ComfyUI-Image-Saver project, but it loses lora written in Forge style, by internal name."
|
||||
},
|
||||
{
|
||||
"author": "mango125",
|
||||
"title": "ComfyUI-Mango-Random",
|
||||
"reference": "https://github.com/mango-rgb/ComfyUI-Mango-Random-node",
|
||||
"files": [
|
||||
"https://github.com/mango-rgb/ComfyUI-Mango-Random-node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "🥭 Mango Random Nodes - A collection of random file nodes for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "meanin2",
|
||||
"title": "ComfyUI Image Watermarking Node",
|
||||
"reference": "https://github.com/meanin2/comfyui-MGnodes",
|
||||
"files": [
|
||||
"https://github.com/meanin2/comfyui-MGnodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node for ComfyUI that allows you to add image watermarks with advanced controls for transparency, positioning, and color manipulation."
|
||||
},
|
||||
{
|
||||
"author": "WUYUDING2583",
|
||||
"title": "Save Image With Callback",
|
||||
"reference": "https://github.com/WUYUDING2583/ComfyUI-Save-Image-Callback",
|
||||
"files": [
|
||||
"https://github.com/WUYUDING2583/ComfyUI-Save-Image-Callback"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This node enables integration between ComfyUI and external services by adding callback capabilities to the image saving process. When an image is saved, the node automatically call your webhook with your specified URL with custom data."
|
||||
},
|
||||
{
|
||||
"author": "GoingAI1998",
|
||||
"title": "ComfyUI Web Canvas Node",
|
||||
"reference": "https://github.com/GoingAI1998/Comfyui_imgcanvas",
|
||||
"files": [
|
||||
"https://github.com/GoingAI1998/Comfyui_imgcanvas"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI_imgcanvas At present, I have not used the useful comfyui custom node about layer mixing, and I have written a comfyui runtime automatic pop-up window for layer editing node"
|
||||
},
|
||||
{
|
||||
"author": "fblissjr",
|
||||
"title": "ComfyUI-EmbeddingPipelineAnalytics",
|
||||
"reference": "https://github.com/fblissjr/ComfyUI-EmbeddingPipelineAnalytics",
|
||||
"files": [
|
||||
"https://github.com/fblissjr/ComfyUI-EmbeddingPipelineAnalytics"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "this repo is to capture end-to-end data, metadata, and embeddings for ComfyUI workflows, specifically HunyuanVideo to start."
|
||||
},
|
||||
{
|
||||
"author": "vincentfs",
|
||||
"title": "ComfyUI-ArchiGraph",
|
||||
"id": "archigraph",
|
||||
"reference": "https://github.com/vincentfs/ComfyUI-ArchiGraph",
|
||||
"files": [
|
||||
"https://github.com/vincentfs/ComfyUI-ArchiGraph"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Implementation of architectural related graph algorithm in ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "lingha",
|
||||
"title": "comfyui_kj",
|
||||
"id": "comfyui_kj",
|
||||
"reference": "https://github.com/XieChengYuan/comfyui_kj",
|
||||
"files": [
|
||||
"https://github.com/XieChengYuan/comfyui_kj"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "comfyui_kj, A tool that can package workflows into projects and publish them to a WeChat Mini Program named Kaji, allowing charges to be collected from users."
|
||||
},
|
||||
{
|
||||
"author": "ziwang-com",
|
||||
"title": "comfyui-deepseek-r1",
|
||||
"reference": "https://github.com/ziwang-com/comfyui-deepseek-r1",
|
||||
"files": [
|
||||
"https://github.com/ziwang-com/comfyui-deepseek-r1"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Comfyui-deepseek-r1 Node Plugin"
|
||||
},
|
||||
{
|
||||
"author": "davidgressett",
|
||||
"title": "CartesianCSVNode for ComfyUI",
|
||||
"reference": "https://github.com/davidgressett/comfyui-systemlevel",
|
||||
"files": [
|
||||
"https://github.com/davidgressett/comfyui-systemlevel"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node allows you to load data from one or more CSV files, then feed that data into subsequent nodes in a ComfyUI workflow."
|
||||
},
|
||||
{
|
||||
"author": "SshunWang",
|
||||
"title": "ComfyUI for CosyVoice",
|
||||
"reference": "https://github.com/SshunWang/ComfyUI_CosyVoice",
|
||||
"files": [
|
||||
"https://github.com/SshunWang/ComfyUI_CosyVoice"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Support both CosyVoice1.0 and CosyVoice2.0. Referenced [a/CosyVoice-ComfyUI](https://github.com/AIFSH/CosyVoice-ComfyUI), the following modifications have been made: Add support for CosyVoice2.0, Add whether to use stream processing options, Use speed control by CosyVoice, Add model path check to avoid duplicate downloads, Provide two ways of use"
|
||||
},
|
||||
{
|
||||
"author": "Kayarte",
|
||||
"title": "AudioDriven-Latent-Space-Tools-for-ComfyUI",
|
||||
"reference": "https://github.com/Kayarte/AudioDriven-Latent-Space-Tools-for-ComfyUI",
|
||||
"files": [
|
||||
"https://github.com/Kayarte/AudioDriven-Latent-Space-Tools-for-ComfyUI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a custom node for ComfyUI that analyzes audio files using Librosa, extracting tempo, beat times, energy levels, and timestamps. The analysis results can be displayed in a text box within ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "MontagenAI",
|
||||
"title": "ComfyUI-Montagen",
|
||||
"reference": "https://github.com/MontagenAI/ComfyUI-Montagen",
|
||||
"files": [
|
||||
"https://github.com/MontagenAI/ComfyUI-Montagen"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Montagen is an extension designed to enhance the video editing ability of ComfyUI with custom nodes and Montagen. It offers basic video editing features and integrates media clips with the ComfyUI workflow. Furthermore, this extension unlocks the full potential of AI-based video generation and task automation."
|
||||
},
|
||||
{
|
||||
"author": "Xiangyu-CAS",
|
||||
"title": "HandFixer",
|
||||
"reference": "https://github.com/Xiangyu-CAS/HandFixer",
|
||||
"files": [
|
||||
"https://github.com/Xiangyu-CAS/HandFixer"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This project addresses the issue of numerous hand defects in AI-generated portrait images by using a workflow based on FLUX/FLUX-Fill to correct hand deformities. It is effective for both real-life and anime images, including those generated by DiT/SDXL/Midjourney. It supports diffusers, gradio, ComfyUI, and more"
|
||||
},
|
||||
{
|
||||
"author": "cake-ml",
|
||||
"title": "TinySanaPreview",
|
||||
"reference": "https://github.com/cake-ml/tiny-sana-preview",
|
||||
"files": [
|
||||
"https://github.com/cake-ml/tiny-sana-preview"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "TinySanaPreview is a custom ComfyUI node that implements real-time previews during generation for Sana diffusion models."
|
||||
},
|
||||
{
|
||||
"author": "huixingyun",
|
||||
"title": "ComfyUI-HX-Captioner",
|
||||
"reference": "https://github.com/huixingyun/ComfyUI-HX-Captioner",
|
||||
"files": [
|
||||
"https://github.com/huixingyun/ComfyUI-HX-Captioner"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI plugin library based on [a/https://github.com/stavsap/comfyui-ollama](https://github.com/stavsap/comfyui-ollama), with the Ollama cluster provided by Huixingyun."
|
||||
},
|
||||
{
|
||||
"author": "bradsec",
|
||||
"title": "ComfyUI_StringEssentials",
|
||||
"reference": "https://github.com/bradsec/ComfyUI_StringEssentials",
|
||||
"files": [
|
||||
"https://github.com/bradsec/ComfyUI_StringEssentials"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Essential string manipulation nodes for ComfyUI."
|
||||
},
|
||||
|
||||
|
||||
@@ -19608,7 +20077,46 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "Ser-Hilary",
|
||||
@@ -19964,7 +20472,7 @@
|
||||
},
|
||||
{
|
||||
"author": "ptmaster",
|
||||
"title": "Embedding Merge for ComfyUI",
|
||||
"title": "ComfyUI-Load-Diffusion-Model-to-Muti-GPUs",
|
||||
"reference": "https://github.com/ptmaster/ComfyUI-Load-Diffusion-Model-to-Muti-GPUs",
|
||||
"files": [
|
||||
"https://github.com/ptmaster/ComfyUI-Load-Diffusion-Model-to-Muti-GPUs/raw/refs/heads/main/Load%20Diffusion%20Model%20into%20Muti%20GPUs.py"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -9,7 +9,7 @@
|
||||
"comfyui-layerdiffuse",
|
||||
"comfyui-liveportraitkj",
|
||||
"aigodlike-comfyui-translation",
|
||||
"comfyui-reactor-node",
|
||||
"comfyui-reactor",
|
||||
"comfyui_instantid",
|
||||
"sd-dynamic-thresholding",
|
||||
"pr-was-node-suite-comfyui-47064894",
|
||||
|
||||
5466
github-stats.json
5466
github-stats.json
File diff suppressed because it is too large
Load Diff
@@ -5,6 +5,8 @@ import manager_util
|
||||
import toml
|
||||
import os
|
||||
import asyncio
|
||||
import json
|
||||
import time
|
||||
|
||||
base_url = "https://api.comfy.org"
|
||||
|
||||
@@ -13,33 +15,64 @@ lock = asyncio.Lock()
|
||||
|
||||
is_cache_loading = False
|
||||
|
||||
async def get_cnr_data(page=1, limit=1000, cache_mode=True, dont_wait=True):
|
||||
async def get_cnr_data(cache_mode=True, dont_wait=True):
|
||||
try:
|
||||
return await _get_cnr_data(cache_mode, dont_wait)
|
||||
except asyncio.TimeoutError:
|
||||
print("A timeout occurred during the fetch process from ComfyRegistry.")
|
||||
return await _get_cnr_data(cache_mode=True, dont_wait=True) # timeout fallback
|
||||
|
||||
async def _get_cnr_data(cache_mode=True, dont_wait=True):
|
||||
global is_cache_loading
|
||||
|
||||
uri = f'{base_url}/nodes?page={page}&limit={limit}'
|
||||
uri = f'{base_url}/nodes'
|
||||
|
||||
def touch(json_obj):
|
||||
for v in json_obj['nodes']:
|
||||
async def fetch_all():
|
||||
remained = True
|
||||
page = 1
|
||||
|
||||
full_nodes = {}
|
||||
while remained:
|
||||
sub_uri = f'{base_url}/nodes?page={page}&limit=30'
|
||||
sub_json_obj = await asyncio.wait_for(manager_util.get_data_with_cache(sub_uri, cache_mode=False, silent=True), timeout=30)
|
||||
remained = page < sub_json_obj['totalPages']
|
||||
|
||||
for x in sub_json_obj['nodes']:
|
||||
full_nodes[x['id']] = x
|
||||
|
||||
if page % 5 == 0:
|
||||
print(f"FETCH ComfyRegistry Data: {page}/{sub_json_obj['totalPages']}")
|
||||
|
||||
page += 1
|
||||
time.sleep(0.5)
|
||||
|
||||
print("FETCH ComfyRegistry Data [DONE]")
|
||||
|
||||
for v in full_nodes.values():
|
||||
if 'latest_version' not in v:
|
||||
v['latest_version'] = dict(version='nightly')
|
||||
|
||||
return {'nodes': list(full_nodes.values())}
|
||||
|
||||
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
|
||||
cache_state = manager_util.get_cache_state(uri)
|
||||
|
||||
if dont_wait:
|
||||
if cache_state == 'not-cached':
|
||||
return {}
|
||||
else:
|
||||
print("[ComfyUI-Manager] The ComfyRegistry cache update is still in progress, so an outdated cache is being used.")
|
||||
with open(manager_util.get_cache_path(uri), 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||
return json.load(json_file)['nodes']
|
||||
|
||||
if cache_state == 'cached':
|
||||
with open(manager_util.get_cache_path(uri), 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||
return json.load(json_file)['nodes']
|
||||
|
||||
try:
|
||||
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode)
|
||||
touch(json_obj)
|
||||
|
||||
json_obj = await fetch_all()
|
||||
manager_util.save_to_cache(uri, json_obj)
|
||||
return json_obj['nodes']
|
||||
except:
|
||||
res = {}
|
||||
|
||||
@@ -41,7 +41,7 @@ import manager_downloader
|
||||
from node_package import InstalledNodePackage
|
||||
|
||||
|
||||
version_code = [3, 8, 1]
|
||||
version_code = [3, 9, 3]
|
||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||
|
||||
|
||||
@@ -81,13 +81,18 @@ def get_comfyui_tag():
|
||||
|
||||
|
||||
def get_script_env():
|
||||
copied = os.environ.copy()
|
||||
new_env = os.environ.copy()
|
||||
git_exe = get_config().get('git_exe')
|
||||
if git_exe is not None:
|
||||
copied['GIT_EXE_PATH'] = git_exe
|
||||
copied['COMFYUI_PATH'] = comfy_path
|
||||
new_env['GIT_EXE_PATH'] = git_exe
|
||||
|
||||
return copied
|
||||
if 'COMFYUI_PATH' not in new_env:
|
||||
new_env['COMFYUI_PATH'] = comfy_path
|
||||
|
||||
if 'COMFYUI_FOLDERS_BASE_PATH' not in new_env:
|
||||
new_env['COMFYUI_FOLDERS_BASE_PATH'] = comfy_path
|
||||
|
||||
return new_env
|
||||
|
||||
|
||||
invalid_nodes = {}
|
||||
@@ -112,7 +117,7 @@ def check_invalid_nodes():
|
||||
sys.path.append(comfy_path)
|
||||
import folder_paths
|
||||
except:
|
||||
raise Exception(f"Invalid COMFYUI_PATH: {comfy_path}")
|
||||
raise Exception(f"Invalid COMFYUI_FOLDERS_BASE_PATH: {comfy_path}")
|
||||
|
||||
def check(root):
|
||||
global invalid_nodes
|
||||
@@ -147,7 +152,10 @@ def check_invalid_nodes():
|
||||
print("\n---------------------------------------------------------------------------\n")
|
||||
|
||||
|
||||
# read env vars
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
comfy_base_path = os.environ.get('COMFYUI_FOLDERS_BASE_PATH')
|
||||
|
||||
if comfy_path is None:
|
||||
try:
|
||||
import folder_paths
|
||||
@@ -155,6 +163,9 @@ if comfy_path is None:
|
||||
except:
|
||||
comfy_path = os.path.abspath(os.path.join(manager_util.comfyui_manager_path, '..', '..'))
|
||||
|
||||
if comfy_base_path is None:
|
||||
comfy_base_path = comfy_path
|
||||
|
||||
|
||||
channel_list_template_path = os.path.join(manager_util.comfyui_manager_path, 'channels.list.template')
|
||||
git_script_path = os.path.join(manager_util.comfyui_manager_path, "git_helper.py")
|
||||
@@ -682,11 +693,10 @@ class UnifiedManager:
|
||||
self.active_nodes = {} # node_id -> node_version * fullpath
|
||||
|
||||
# reload 'cnr_map' and 'repo_cnr_map'
|
||||
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode, dont_wait=dont_wait)
|
||||
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode=='cache', dont_wait=dont_wait)
|
||||
|
||||
for x in cnrs:
|
||||
self.cnr_map[x['id']] = x
|
||||
|
||||
if 'repository' in x:
|
||||
normalized_url = git_utils.normalize_url(x['repository'])
|
||||
self.repo_cnr_map[normalized_url] = x
|
||||
@@ -1266,8 +1276,8 @@ class UnifiedManager:
|
||||
remote.fetch()
|
||||
except Exception as e:
|
||||
if 'detected dubious' in str(e):
|
||||
print("[ComfyUI-Manager] Try fixing 'dubious repository' error on 'ComfyUI' repository")
|
||||
safedir_path = comfy_path.replace('\\', '/')
|
||||
print(f"[ComfyUI-Manager] Try fixing 'dubious repository' error on '{repo_path}' repository")
|
||||
safedir_path = repo_path.replace('\\', '/')
|
||||
subprocess.run(['git', 'config', '--global', '--add', 'safe.directory', safedir_path])
|
||||
try:
|
||||
remote.fetch()
|
||||
@@ -2316,8 +2326,8 @@ def update_path(repo_path, instant_execution=False, no_deps=False):
|
||||
remote.fetch()
|
||||
except Exception as e:
|
||||
if 'detected dubious' in str(e):
|
||||
print("[ComfyUI-Manager] Try fixing 'dubious repository' error on 'ComfyUI' repository")
|
||||
safedir_path = comfy_path.replace('\\', '/')
|
||||
print(f"[ComfyUI-Manager] Try fixing 'dubious repository' error on '{repo_path}' repository")
|
||||
safedir_path = repo_path.replace('\\', '/')
|
||||
subprocess.run(['git', 'config', '--global', '--add', 'safe.directory', safedir_path])
|
||||
try:
|
||||
remote.fetch()
|
||||
@@ -2696,8 +2706,8 @@ def map_to_unified_keys(json_obj):
|
||||
return res
|
||||
|
||||
|
||||
async def get_unified_total_nodes(channel, mode):
|
||||
await unified_manager.reload(mode)
|
||||
async def get_unified_total_nodes(channel, mode, regsitry_cache_mode='cache'):
|
||||
await unified_manager.reload(regsitry_cache_mode)
|
||||
|
||||
res = await unified_manager.get_custom_nodes(channel, mode)
|
||||
|
||||
@@ -2780,6 +2790,7 @@ async def get_unified_total_nodes(channel, mode):
|
||||
author = cnr['publisher']['name']
|
||||
title = cnr['name']
|
||||
reference = f"https://registry.comfy.org/nodes/{cnr['id']}"
|
||||
repository = cnr.get('repository', '')
|
||||
install_type = "cnr"
|
||||
description = cnr.get('description', '')
|
||||
|
||||
@@ -2811,7 +2822,7 @@ async def get_unified_total_nodes(channel, mode):
|
||||
if ver is None:
|
||||
ver = cnr['latest_version']['version']
|
||||
|
||||
item = dict(author=author, title=title, reference=reference, install_type=install_type,
|
||||
item = dict(author=author, title=title, reference=reference, repository=repository, install_type=install_type,
|
||||
description=description, state=state, updatable=updatable, version=ver)
|
||||
|
||||
if active_version:
|
||||
|
||||
@@ -566,7 +566,7 @@ async def fetch_customnode_list(request):
|
||||
else:
|
||||
channel = core.get_config()['channel_url']
|
||||
|
||||
node_packs = await core.get_unified_total_nodes(channel, request.rel_url.query["mode"])
|
||||
node_packs = await core.get_unified_total_nodes(channel, request.rel_url.query["mode"], 'cache')
|
||||
json_obj_github = core.get_data_by_mode(request.rel_url.query["mode"], 'github-stats.json', 'default')
|
||||
json_obj_extras = core.get_data_by_mode(request.rel_url.query["mode"], 'extras.json', 'default')
|
||||
|
||||
@@ -1434,8 +1434,8 @@ async def default_cache_update():
|
||||
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')
|
||||
await core.unified_manager.reload('remote', dont_wait=False)
|
||||
await core.unified_manager.get_custom_nodes('default', 'remote')
|
||||
|
||||
# NOTE: hide migration button temporarily.
|
||||
# if not core.get_config()['skip_migration_check']:
|
||||
|
||||
@@ -130,9 +130,34 @@ async def get_data(uri, silent=False):
|
||||
return json_obj
|
||||
|
||||
|
||||
async def get_data_with_cache(uri, silent=False, cache_mode=True, dont_wait=False):
|
||||
def get_cache_path(uri):
|
||||
cache_uri = str(simple_hash(uri)) + '_' + os.path.basename(uri).replace('&', "_").replace('?', "_").replace('=', "_")
|
||||
cache_uri = os.path.join(cache_dir, cache_uri+'.json')
|
||||
return os.path.join(cache_dir, cache_uri+'.json')
|
||||
|
||||
|
||||
def get_cache_state(uri):
|
||||
cache_uri = get_cache_path(uri)
|
||||
|
||||
if not os.path.exists(cache_uri):
|
||||
return "not-cached"
|
||||
elif is_file_created_within_one_day(cache_uri):
|
||||
return "cached"
|
||||
|
||||
return "expired"
|
||||
|
||||
|
||||
def save_to_cache(uri, json_obj, silent=False):
|
||||
cache_uri = get_cache_path(uri)
|
||||
|
||||
with cache_lock:
|
||||
with open(cache_uri, "w", encoding='utf-8') as file:
|
||||
json.dump(json_obj, file, indent=4, sort_keys=True)
|
||||
if not silent:
|
||||
logging.info(f"[ComfyUI-Manager] default cache updated: {uri}")
|
||||
|
||||
|
||||
async def get_data_with_cache(uri, silent=False, cache_mode=True, dont_wait=False):
|
||||
cache_uri = get_cache_path(uri)
|
||||
|
||||
if cache_mode and dont_wait:
|
||||
# NOTE: return the cache if possible, even if it is expired, so do not cache
|
||||
|
||||
@@ -975,7 +975,10 @@ export class CustomNodesManager {
|
||||
}
|
||||
|
||||
const link = document.createElement('a');
|
||||
link.href = rowItem.reference;
|
||||
if(rowItem.originalData.repository)
|
||||
link.href = rowItem.originalData.repository;
|
||||
else
|
||||
link.href = rowItem.reference;
|
||||
link.target = '_blank';
|
||||
link.innerHTML = `<b>${title}</b>`;
|
||||
container.appendChild(link);
|
||||
|
||||
@@ -877,6 +877,62 @@
|
||||
"size": "5.16GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "comfyanonymous/cosmos_cv8x8x8_1.0.safetensors",
|
||||
"type": "VAE",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "default",
|
||||
"description": "VAE model for Cosmos 1.0",
|
||||
"reference": "https://huggingface.co/comfyanonymous/cosmos_1.0_text_encoder_and_VAE_ComfyUI/tree/main",
|
||||
"filename": "cosmos_cv8x8x8_1.0.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/cosmos_1.0_text_encoder_and_VAE_ComfyUI/resolve/main/vae/cosmos_cv8x8x8_1.0.safetensors",
|
||||
"size": "211MB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-7B-Text2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Text2World Diffusion Model (7B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-7B-Text2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-7B-Text2World.safetensors",
|
||||
"size": "14.5GB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-7B-Video2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Video2World Diffusion Model (7B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-7B-Video2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-7B-Video2World.safetensors",
|
||||
"size": "14.5GB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-14B-Text2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Text2World Diffusion Model (14B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-14B-Text2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-14B-Text2World.safetensors",
|
||||
"size": "28.5GB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-14B-Video2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Video2World Diffusion Model (14B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-14B-Video2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-14B-Video2World.safetensors",
|
||||
"size": "28.5GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "google-t5/t5-base",
|
||||
"type": "clip",
|
||||
@@ -2259,6 +2315,18 @@
|
||||
"url": "https://huggingface.co/CiaraRowles/TemporalDiff/resolve/main/temporaldiff-v1-animatediff.ckpt",
|
||||
"size": "1.67GB"
|
||||
},
|
||||
{
|
||||
"name": "Leoxing/pia.ckpt",
|
||||
"type": "animatediff-pia",
|
||||
"base": "SD1.x",
|
||||
"save_path": "animatediff_models",
|
||||
"description": "AnimateDiff-PIA Model",
|
||||
"reference": "https://huggingface.co/Leoxing/PIA/tree/main",
|
||||
"filename": "pia.ckpt",
|
||||
"url": "https://huggingface.co/Leoxing/PIA/resolve/main/pia.ckpt",
|
||||
"size": "1.67GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "animatediff/v2_lora_PanLeft.ckpt (ComfyUI-AnimateDiff-Evolved) (Updated path)",
|
||||
"type": "motion lora",
|
||||
|
||||
@@ -9,7 +9,177 @@
|
||||
"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": "naderzare",
|
||||
"title": "comfyui-inodes",
|
||||
"reference": "https://github.com/naderzare/comfyui-inodes",
|
||||
"files": [
|
||||
"https://github.com/naderzare/comfyui-inodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: If-Else, Multiline Split, Azure AI API"
|
||||
},
|
||||
{
|
||||
"author": "sizzlebop",
|
||||
"title": "ComfyUI LLM Prompt Enhancer [WIP]",
|
||||
"reference": "https://github.com/sizzlebop/comfyui-llm-prompt-enhancer",
|
||||
"files": [
|
||||
"https://github.com/sizzlebop/comfyui-llm-prompt-enhancer"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A powerful custom node for ComfyUI that enhances your prompts using various Language Learning Models (LLMs). This node supports multiple LLM providers and offers various enhancement styles to help you create better, more detailed prompts for image generation."
|
||||
},
|
||||
{
|
||||
"author": "a-One-Fan",
|
||||
"title": "ComfyUI-Blenderesque-Nodes [WIP]",
|
||||
"reference": "https://github.com/a-One-Fan/ComfyUI-Blenderesque-Nodes",
|
||||
"files": [
|
||||
"https://github.com/a-One-Fan/ComfyUI-Blenderesque-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Blender-like nodes for ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "yanhuifair",
|
||||
"title": "comfyui-deepseek [WIP]",
|
||||
"reference": "https://github.com/yanhuifair/comfyui-deepseek",
|
||||
"files": [
|
||||
"https://github.com/yanhuifair/comfyui-deepseek"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Implement deepseek API call [a/https://api-docs.deepseek.com/](Implement deepseek API call https://api-docs.deepseek.com/)\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "807502278",
|
||||
"title": "ComfyUI_TensorRT_Merge [WIP]",
|
||||
"reference": "https://github.com/807502278/ComfyUI_TensorRT_Merge",
|
||||
"files": [
|
||||
"https://github.com/807502278/ComfyUI_TensorRT_Merge"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Non diffusion models supported by TensorRT, merged Comfyui plugin, added onnx automatic download and trt model conversion nodes."
|
||||
},
|
||||
{
|
||||
"author": "IfnotFr",
|
||||
"title": "ComfyUI-Ifnot-Pack",
|
||||
"reference": "https://github.com/IfnotFr/ComfyUI-Ifnot-Pack",
|
||||
"files": [
|
||||
"https://github.com/IfnotFr/ComfyUI-Ifnot-Pack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Face Crop, [w/A pack of custom nodes used in my projects. Not intended to be used by other persons as the usage is not documented. But if something interests you in this repository, go for it !]"
|
||||
},
|
||||
{
|
||||
"author": "zmwv823",
|
||||
"title": "ComfyUI-VideoDiffusion",
|
||||
"reference": "https://github.com/zmwv823/ComfyUI-VideoDiffusion",
|
||||
"files": [
|
||||
"https://github.com/zmwv823/ComfyUI-VideoDiffusion"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "[a/LatentSync](https://github.com/bytedance/LatentSync) and [a/Sonic](https://github.com/jixiaozhong/Sonic). [w/Just for study purpose. It's not for directly use, u should know how to fix issues.]"
|
||||
},
|
||||
{
|
||||
"author": "KihongK",
|
||||
"title": "ComfyUI-RoysNodes [WIP]",
|
||||
"reference": "https://github.com/KihongK/comfyui-roysnodes",
|
||||
"files": [
|
||||
"https://github.com/KihongK/comfyui-roysnodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "WIP custom nodes for Creation of AI images & videos"
|
||||
},
|
||||
{
|
||||
"author": "catboxanon",
|
||||
"title": "ComfyUI-Pixelsmith [WIP]",
|
||||
"reference": "https://github.com/catboxanon/ComfyUI-Pixelsmith",
|
||||
"files": [
|
||||
"https://github.com/catboxanon/ComfyUI-Pixelsmith"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Pixelsmith"
|
||||
},
|
||||
{
|
||||
"author": "smthemex",
|
||||
"title": "ComfyUI_MangaNinjia [WIP]",
|
||||
"reference": "https://github.com/smthemex/ComfyUI_MangaNinjia",
|
||||
"files": [
|
||||
"https://github.com/smthemex/ComfyUI_MangaNinjia"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI_MangaNinjia is a ComfyUI node of MangaNinja which is a Line Art Colorization with Precise Reference Following method.\nNOTE: invalid pyproject.toml file."
|
||||
},
|
||||
{
|
||||
"author": "hunterssl",
|
||||
"title": "ComfyUI_SSLNodes",
|
||||
"reference": "https://github.com/hunterssl/ComfyUI_SSLNodes",
|
||||
"files": [
|
||||
"https://github.com/hunterssl/ComfyUI_SSLNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: SSL Load Json, SSL Get Json Keys Count, SSL Load Checkpoint By Name, SSL Random Num In Loop, SSL Save Image Outside"
|
||||
},
|
||||
{
|
||||
"author": "ammahmoudi",
|
||||
"title": "ComfyUI-Legendary-Nodes",
|
||||
"reference": "https://github.com/ammahmoudi/ComfyUI-Legendary-Nodes",
|
||||
"files": [
|
||||
"https://github.com/ammahmoudi/ComfyUI-Legendary-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Legendary Lora URL Loader, Legendary Lora URL Loader"
|
||||
},
|
||||
{
|
||||
"author": "yichengup",
|
||||
"title": "Comfyui-NodeSpark",
|
||||
"reference": "https://github.com/yichengup/Comfyui-NodeSpark",
|
||||
"files": [
|
||||
"https://github.com/yichengup/Comfyui-NodeSpark"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Image Circle Warp, Image Stretch, Image Wave Warp, Liquify Effect"
|
||||
},
|
||||
{
|
||||
"author": "vpakarinen",
|
||||
"title": "ComfyUI-GenerationTimer",
|
||||
"reference": "https://github.com/vpakarinen/ComfyUI-GenerationTimer",
|
||||
"files": [
|
||||
"https://github.com/vpakarinen/ComfyUI-GenerationTimer"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Generation Timer, Image Timer, Timer Display"
|
||||
},
|
||||
{
|
||||
"author": "kijai",
|
||||
"title": "ComfyUI-VideoNoiseWarp [WIP]",
|
||||
"reference": "https://github.com/kijai/ComfyUI-VideoNoiseWarp",
|
||||
"files": [
|
||||
"https://github.com/kijai/ComfyUI-VideoNoiseWarp"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI node to create warped noise from vide\nNOTE:Raft optical flow model is automatically downloaded upon execution."
|
||||
},
|
||||
{
|
||||
"author": "muvich3n",
|
||||
"title": "ComfyUI-Claude-I2T",
|
||||
"reference": "https://github.com/muvich3n/ComfyUI-Claude-I2T",
|
||||
"files": [
|
||||
"https://github.com/muvich3n/ComfyUI-Claude-I2T"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Claude Image to Prompt Generator"
|
||||
},
|
||||
{
|
||||
"author": "maekawataiki",
|
||||
"title": "ComfyUI-ALB-Login",
|
||||
"reference": "https://github.com/maekawataiki/ComfyUI-ALB-Login",
|
||||
"files": [
|
||||
"https://github.com/maekawataiki/ComfyUI-ALB-Login"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Auth library to inspect token provided by ALB to protect ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "ArmandAlbert",
|
||||
"title": "Kwai_font_comfyui",
|
||||
@@ -1245,7 +1415,7 @@
|
||||
"https://github.com/Poukpalaova/ComfyUI-FRED-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository contains custom nodes for ComfyUI. This is a work in progress (WIP).\nNOTE: The files in the repo are not organized."
|
||||
"description": "Multiple nodes that ease the process.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "blurymind",
|
||||
@@ -1677,7 +1847,7 @@
|
||||
"https://github.com/hgabha/WWAA-CustomNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom Nodes for ComfyUI made by the team at [a/WeirdWonderfulAI.Art](https://weirdwonderfulai.art/) These are developed based on the needs where there was a gap to make our workflows better. You are welcome to use it as you see fit."
|
||||
"description": "Custom Nodes for ComfyUI made by the team at [a/WeirdWonderfulAI.Art](https://weirdwonderfulai.art/). Line Count, Join String, Dither Image, Image Batch Loader"
|
||||
},
|
||||
{
|
||||
"author": "IgPoly",
|
||||
@@ -2269,17 +2439,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Stable Diffusion is an image generation technique based on diffusion models. Its core idea involves simulating diffusion processes by iteratively adding noise and using neural networks to predict and remove the noise, thereby generating high-quality images. This approach is not limited to image generation; with appropriate network architecture and training data, it can be adapted for various other tasks. The application of neural networks extends beyond image generation. By adjusting network structures and loss functions, neural networks can also perform tasks such as classification and regression. This flexibility makes neural networks a powerful tool for handling a wide range of machine learning tasks. This project aims to expand custom neural network layers (such as linear layers, convolutional layers, etc.) within ComfyUI and provide simplified task training functionalities. Through this project, users can easily construct custom neural network layers and perform training in ComfyUI using a graphical interface."
|
||||
},
|
||||
{
|
||||
"author": "alexgenovese",
|
||||
"title": "comfyui_CfgPlusPlus [WIP]",
|
||||
"id": "cfgpp",
|
||||
"reference": "https://gitea.com/NotEvilGirl/cfgpp",
|
||||
"files": [
|
||||
"https://gitea.com/NotEvilGirl/cfgpp"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "CFG++ implemented according to [a/https://cfgpp-diffusion.github.io](https://cfgpp-diffusion.github.io). Basically modified DDIM sampler that makes sampling work at low CFG values (0 ~ 2). Read the CFG++ paper for more details"
|
||||
},
|
||||
{
|
||||
"author": "Fucci-Mateo",
|
||||
"title": "ComfyUI-Airtable [WIP]",
|
||||
@@ -3426,16 +3585,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Unofficial ComfyUI extension of clip-interrogator"
|
||||
},
|
||||
{
|
||||
"author": "prismwastaken",
|
||||
"title": "prism-tools",
|
||||
"reference": "https://github.com/prismwastaken/prism-comfyui-tools",
|
||||
"files": [
|
||||
"https://github.com/prismwastaken/prism-comfyui-tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "prism-tools"
|
||||
},
|
||||
{
|
||||
"author": "poisenbery",
|
||||
"title": "NudeNet-Detector-Provider [WIP]",
|
||||
|
||||
@@ -1,12 +1,4 @@
|
||||
{
|
||||
"https://gitea.com/NotEvilGirl/cfgpp": [
|
||||
[
|
||||
"CFG++"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui_CfgPlusPlus [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/17Retoucher/ComfyUI_Fooocus": [
|
||||
[
|
||||
"BasicScheduler",
|
||||
@@ -170,6 +162,16 @@
|
||||
"title_aux": "ComfyUI-Prompt-Plus [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/807502278/ComfyUI_TensorRT_Merge": [
|
||||
[
|
||||
"BiRefNet2_tensort",
|
||||
"building_tensorrt_engine",
|
||||
"load_BiRefNet2_General"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_TensorRT_Merge [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
||||
[
|
||||
"ManualSigma"
|
||||
@@ -315,6 +317,7 @@
|
||||
"> Rotate Image",
|
||||
"> Saturation",
|
||||
"> Save Image",
|
||||
"> Save Text",
|
||||
"> Scale Image to Side",
|
||||
"> Scanlines",
|
||||
"> Sharpen",
|
||||
@@ -552,10 +555,14 @@
|
||||
"VTS Clip Text Encode",
|
||||
"VTS Color Mask To Mask",
|
||||
"VTS Conditioning Set Batch Mask",
|
||||
"VTS Create Character Mask",
|
||||
"VTS Images Crop From Masks",
|
||||
"VTS Images Scale",
|
||||
"VTS Merge Delimited Text",
|
||||
"VTS Reduce Batch Size",
|
||||
"VTS Render People Kps",
|
||||
"VTS To Text",
|
||||
"VTS_Load_Pose_Keypoints",
|
||||
"Vts Text To Batch Prompt"
|
||||
],
|
||||
{
|
||||
@@ -889,6 +896,14 @@
|
||||
"title_aux": "comfyui_HavocsCall_Custom_Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/IfnotFr/ComfyUI-Ifnot-Pack": [
|
||||
[
|
||||
"Face Crop"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Ifnot-Pack"
|
||||
}
|
||||
],
|
||||
"https://github.com/IgPoly/ComfyUI-igTools": [
|
||||
[
|
||||
"IGT_SimpleTilesCalc"
|
||||
@@ -999,6 +1014,19 @@
|
||||
"title_aux": "ComfyUI-PNG2SVG2PNG"
|
||||
}
|
||||
],
|
||||
"https://github.com/KihongK/comfyui-roysnodes": [
|
||||
[
|
||||
"CLIPMultiTextEncode",
|
||||
"Create_ConditionLoRA",
|
||||
"Create_ConditionLoRA_MainPrompt",
|
||||
"Load_ConditionLoRA",
|
||||
"OpenAI_Summarize",
|
||||
"Unzip_ConditionLoRA"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-RoysNodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack": [
|
||||
[
|
||||
"Brightness Image",
|
||||
@@ -1192,7 +1220,8 @@
|
||||
],
|
||||
"https://github.com/PATATAJEC/Patatajec-Nodes": [
|
||||
[
|
||||
"HyvidSwitcher"
|
||||
"HyvidSwitcher",
|
||||
"MidiAnalyzer"
|
||||
],
|
||||
{
|
||||
"title_aux": "Patatajec-Nodes [WIP]"
|
||||
@@ -1571,6 +1600,50 @@
|
||||
"title_aux": "ComfyUI-PuLID-ZHO [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/a-One-Fan/ComfyUI-Blenderesque-Nodes": [
|
||||
[
|
||||
"BlenderAlphaConvert",
|
||||
"BlenderAlphaOver",
|
||||
"BlenderBlackbody",
|
||||
"BlenderBokehImage",
|
||||
"BlenderBrightnessContrast",
|
||||
"BlenderClamp",
|
||||
"BlenderCombineColor",
|
||||
"BlenderCombineXYZ",
|
||||
"BlenderConvertColorspace",
|
||||
"BlenderCornerPin",
|
||||
"BlenderCrop",
|
||||
"BlenderDisplace",
|
||||
"BlenderExposure",
|
||||
"BlenderFlip",
|
||||
"BlenderGamma",
|
||||
"BlenderHueSaturationValue",
|
||||
"BlenderInvertColor",
|
||||
"BlenderLensDistortion",
|
||||
"BlenderMapRange",
|
||||
"BlenderMapUV",
|
||||
"BlenderMath",
|
||||
"BlenderMix",
|
||||
"BlenderMovieDistortion",
|
||||
"BlenderRGB",
|
||||
"BlenderRGBtoBW",
|
||||
"BlenderRotate",
|
||||
"BlenderScale",
|
||||
"BlenderSeparateColor",
|
||||
"BlenderSeparateXYZ",
|
||||
"BlenderSetAlpha",
|
||||
"BlenderTonemap",
|
||||
"BlenderTransform",
|
||||
"BlenderTranslate",
|
||||
"BlenderValue",
|
||||
"BlenderVectorMath",
|
||||
"BlenderWavelength",
|
||||
"BlenderZCombine"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Blenderesque-Nodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/aiden1020/ComfyUI_Artcoder": [
|
||||
[
|
||||
"ArtCoder"
|
||||
@@ -1637,6 +1710,15 @@
|
||||
"title_aux": "Dream Project Video Batches [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/ammahmoudi/ComfyUI-Legendary-Nodes": [
|
||||
[
|
||||
"Legendary Dataset Saver",
|
||||
"Legendary Lora URL Loader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Legendary-Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/animEEEmpire/ComfyUI-Animemory-Loader": [
|
||||
[
|
||||
"AnimemoryNode"
|
||||
@@ -1696,8 +1778,8 @@
|
||||
],
|
||||
"https://github.com/backearth1/Comfyui-MiniMax-Video": [
|
||||
[
|
||||
"ImageToPrompt",
|
||||
"MiniMaxAIAPIClient",
|
||||
"MiniMaxImage2Prompt",
|
||||
"MiniMaxImage2Video",
|
||||
"MiniMaxPreviewVideo"
|
||||
],
|
||||
@@ -1976,6 +2058,14 @@
|
||||
"title_aux": "ComfyUI Signal Processing [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/catboxanon/ComfyUI-Pixelsmith": [
|
||||
[
|
||||
"Pixelsmith"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Pixelsmith [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/celll1/cel_sampler": [
|
||||
[
|
||||
"latent_tracker"
|
||||
@@ -2130,6 +2220,7 @@
|
||||
"ExponentialScheduler",
|
||||
"FeatherMask",
|
||||
"FlipSigmas",
|
||||
"FluxDisableGuidance",
|
||||
"FluxGuidance",
|
||||
"FreeU",
|
||||
"FreeU_V2",
|
||||
@@ -2864,6 +2955,19 @@
|
||||
"title_aux": "ComfyUI_Easy_Nodes_hui"
|
||||
}
|
||||
],
|
||||
"https://github.com/hunterssl/ComfyUI_SSLNodes": [
|
||||
[
|
||||
"SSLGetJsonKeysCount",
|
||||
"SSLLoadCheckpointByName",
|
||||
"SSLLoadJson",
|
||||
"SSLRandomNumInLoop",
|
||||
"SSLRandomSeedInLoop",
|
||||
"SSLSaveImageOutside"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_SSLNodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/hy134300/comfyui-hb-node": [
|
||||
[
|
||||
"generate story",
|
||||
@@ -2941,25 +3045,24 @@
|
||||
[
|
||||
"ClickPopup",
|
||||
"ColorPicker",
|
||||
"DynamicImageCombiner",
|
||||
"DynamicMaskCombiner",
|
||||
"ImageLatentCreator",
|
||||
"ImageResolutionAdjuster",
|
||||
"ImageSizeCreator",
|
||||
"ImageToBase64",
|
||||
"MaskPreview",
|
||||
"MultilineTextInput",
|
||||
"PaintingCoder::DynamicImageCombiner",
|
||||
"PaintingCoder::DynamicMaskCombiner",
|
||||
"PaintingCoder::ImageLatentCreator",
|
||||
"PaintingCoder::ImageResolutionAdjuster",
|
||||
"PaintingCoder::ImageSizeCreator",
|
||||
"PaintingCoder::ImageSwitch",
|
||||
"PaintingCoder::ImageToBase64",
|
||||
"PaintingCoder::LatentSwitch",
|
||||
"PaintingCoder::MaskPreview",
|
||||
"PaintingCoder::MaskSwitch",
|
||||
"PaintingCoder::MultilineTextInput",
|
||||
"PaintingCoder::RemoveEmptyLinesAndLeadingSpaces",
|
||||
"PaintingCoder::ShowTextPlus",
|
||||
"PaintingCoder::SimpleTextInput",
|
||||
"PaintingCoder::TextCombiner",
|
||||
"PaintingCoder::TextSwitch",
|
||||
"PaintingCoder::WebImageLoader",
|
||||
"RemoveEmptyLinesAndLeadingSpaces",
|
||||
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
||||
"ShowTextPlus",
|
||||
"SimpleTextInput",
|
||||
"TextCombiner",
|
||||
"WebImageLoader"
|
||||
"RemoveEmptyLinesAndLeadingSpacesAdvance"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI PaintingCoderUtils Nodes [WIP]"
|
||||
@@ -2990,6 +3093,7 @@
|
||||
"DictionaryToJSON",
|
||||
"ImageToSolidBackground",
|
||||
"JSONToDictionary",
|
||||
"LiftFromBackground",
|
||||
"LoadImageAndInfoFromPath",
|
||||
"LookupWord",
|
||||
"ReplaceWords",
|
||||
@@ -3133,12 +3237,14 @@
|
||||
[
|
||||
"KAndyCivitImagesAPI",
|
||||
"KAndyCivitPromptAPI",
|
||||
"KAndyImageSave",
|
||||
"KAndyImagesByCss",
|
||||
"KAndyLoadImageFromUrl",
|
||||
"KAndyNoiseCondition",
|
||||
"KCivitaiPostAPI",
|
||||
"KPornImageAPI",
|
||||
"KPromtGen"
|
||||
"KPromtGen",
|
||||
"KandySimplePrompt"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-KAndy"
|
||||
@@ -3301,6 +3407,16 @@
|
||||
"title_aux": "ComfyUI nodes for VEnhancer [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kijai/ComfyUI-VideoNoiseWarp": [
|
||||
[
|
||||
"GetWarpedNoiseFromVideo",
|
||||
"GetWarpedNoiseFromVideoAnimateDiff",
|
||||
"GetWarpedNoiseFromVideoCogVideoX"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-VideoNoiseWarp [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks": [
|
||||
[
|
||||
"KimaraAIBatchImages",
|
||||
@@ -3312,8 +3428,13 @@
|
||||
],
|
||||
"https://github.com/kk8bit/KayTool": [
|
||||
[
|
||||
"Abc_Math",
|
||||
"Baidu_Translater",
|
||||
"Color_Adjustment",
|
||||
"Custom_Save_Image"
|
||||
"Custom_Save_Image",
|
||||
"Display_Any",
|
||||
"Image_Size_Extractor",
|
||||
"Strong_Prompt"
|
||||
],
|
||||
{
|
||||
"title_aux": "KayTool"
|
||||
@@ -3787,6 +3908,24 @@
|
||||
"title_aux": "ComfyUI GLIGEN GUI Node"
|
||||
}
|
||||
],
|
||||
"https://github.com/muvich3n/ComfyUI-Claude-I2T": [
|
||||
[
|
||||
"ClaudeImageToPrompt"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Claude-I2T"
|
||||
}
|
||||
],
|
||||
"https://github.com/naderzare/comfyui-inodes": [
|
||||
[
|
||||
"IAzureAiApi",
|
||||
"IIfElse",
|
||||
"IMultilineSplit"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-inodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/neeltheninja/ComfyUI-TempFileDeleter": [
|
||||
[
|
||||
"TempCleaner"
|
||||
@@ -4040,14 +4179,6 @@
|
||||
"title_aux": "anyPython [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/prismwastaken/prism-comfyui-tools": [
|
||||
[
|
||||
"Prism-RandomNormal"
|
||||
],
|
||||
{
|
||||
"title_aux": "prism-tools"
|
||||
}
|
||||
],
|
||||
"https://github.com/prodogape/ComfyUI-clip-interrogator": [
|
||||
[
|
||||
"ComfyUIClipInterrogator",
|
||||
@@ -4236,6 +4367,23 @@
|
||||
"title_aux": "ComfyUI_CheckPointLoader_Ext [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/sizzlebop/comfyui-llm-prompt-enhancer": [
|
||||
[
|
||||
"PromptEnhancer"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI LLM Prompt Enhancer [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/smthemex/ComfyUI_MangaNinjia": [
|
||||
[
|
||||
"MangaNinjiaLoader",
|
||||
"MangaNinjiaSampler"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_MangaNinjia [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/sofakid/dandy": [
|
||||
[
|
||||
"DandyBooleanCollector",
|
||||
@@ -4487,6 +4635,16 @@
|
||||
"title_aux": "ComfyUI-My-Handy-Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/vpakarinen/ComfyUI-GenerationTimer": [
|
||||
[
|
||||
"GenerationTimer",
|
||||
"ImageTimer",
|
||||
"TimerDisplay"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-GenerationTimer"
|
||||
}
|
||||
],
|
||||
"https://github.com/walterFeng/ComfyUI-Image-Utils": [
|
||||
[
|
||||
"Calculate Image Brightness",
|
||||
@@ -4608,6 +4766,26 @@
|
||||
"title_aux": "ComfyUI-FairLab"
|
||||
}
|
||||
],
|
||||
"https://github.com/yanhuifair/comfyui-deepseek": [
|
||||
[
|
||||
"DeepSeekChatNode",
|
||||
"DeepSeekReasonerNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-deepseek [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/yichengup/Comfyui-NodeSpark": [
|
||||
[
|
||||
"ImageCircleWarp",
|
||||
"ImageStretch",
|
||||
"ImageWaveWarp",
|
||||
"LiquifyNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "Comfyui-NodeSpark"
|
||||
}
|
||||
],
|
||||
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API": [
|
||||
[
|
||||
"FetchTokenFromDropbox",
|
||||
@@ -4646,6 +4824,19 @@
|
||||
"title_aux": "Comfyui_image2prompt"
|
||||
}
|
||||
],
|
||||
"https://github.com/zmwv823/ComfyUI-VideoDiffusion": [
|
||||
[
|
||||
"UL_LatentSyncLoader",
|
||||
"UL_LatentSyncProcess",
|
||||
"UL_LatentSyncSampler",
|
||||
"UL_SonicLoader",
|
||||
"UL_SonicProcess",
|
||||
"UL_SonicSampler"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-VideoDiffusion"
|
||||
}
|
||||
],
|
||||
"https://github.com/zyd232/ComfyUI-zyd232-Nodes": [
|
||||
[
|
||||
"zyd232 ImagesPixelsCompare"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -11,6 +11,69 @@
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "RedRayz",
|
||||
"title": "ComfyUI-Danbooru-To-WD [REMOVED]",
|
||||
"id": "danbooru2wd",
|
||||
"reference": "https://github.com/RedRayz/ComfyUI-Danbooru-To-WD",
|
||||
"files": [
|
||||
"https://github.com/RedRayz/ComfyUI-Danbooru-To-WD"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Converts booru tags to a format suitable for Waifu Diffusion(or Danbooru based models)."
|
||||
},
|
||||
{
|
||||
"author": "alexgenovese",
|
||||
"title": "comfyui_CfgPlusPlus [REMOVED]",
|
||||
"id": "cfgpp",
|
||||
"reference": "https://gitea.com/NotEvilGirl/cfgpp",
|
||||
"files": [
|
||||
"https://gitea.com/NotEvilGirl/cfgpp"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "CFG++ implemented according to [a/https://cfgpp-diffusion.github.io](https://cfgpp-diffusion.github.io). Basically modified DDIM sampler that makes sampling work at low CFG values (0 ~ 2). Read the CFG++ paper for more details"
|
||||
},
|
||||
{
|
||||
"author": "hosterosi",
|
||||
"title": "ComfyUI OpenAI Node",
|
||||
"reference": "https://github.com/hosterosi/ComfyUI_OpenAI [REMOVED]",
|
||||
"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": "Gourieff",
|
||||
"title": "ReActor Node for ComfyUI [DISABLED]",
|
||||
"id": "reactor",
|
||||
"reference": "https://github.com/Gourieff/comfyui-reactor-node",
|
||||
"files": [
|
||||
"https://github.com/Gourieff/comfyui-reactor-node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The Fast and Simple 'roop-like' Face Swap Extension Node for ComfyUI, based on ReActor (ex Roop-GE) SD-WebUI Face Swap Extension"
|
||||
},
|
||||
{
|
||||
"author": "prismwastaken",
|
||||
"title": "prism-tools [REMOVED]",
|
||||
"reference": "https://github.com/prismwastaken/prism-comfyui-tools",
|
||||
"files": [
|
||||
"https://github.com/prismwastaken/prism-comfyui-tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "prism-tools"
|
||||
},
|
||||
{
|
||||
"author": "42lux",
|
||||
"title": "ComfyUI-safety-checker [DEPRECATED]",
|
||||
"reference": "https://github.com/42lux/ComfyUI-safety-checker",
|
||||
"files": [
|
||||
"https://github.com/42lux/ComfyUI-safety-checker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A NSFW/Safety Checker Node for ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "riverolls",
|
||||
"title": "ComfyUI-FJDH",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,73 @@
|
||||
{
|
||||
"models": [
|
||||
{
|
||||
"name": "Leoxing/pia.ckpt",
|
||||
"type": "animatediff-pia",
|
||||
"base": "SD1.x",
|
||||
"save_path": "animatediff_models",
|
||||
"description": "AnimateDiff-PIA Model",
|
||||
"reference": "https://huggingface.co/Leoxing/PIA/tree/main",
|
||||
"filename": "pia.ckpt",
|
||||
"url": "https://huggingface.co/Leoxing/PIA/resolve/main/pia.ckpt",
|
||||
"size": "1.67GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "comfyanonymous/cosmos_cv8x8x8_1.0.safetensors",
|
||||
"type": "VAE",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "default",
|
||||
"description": "VAE model for Cosmos 1.0",
|
||||
"reference": "https://huggingface.co/comfyanonymous/cosmos_1.0_text_encoder_and_VAE_ComfyUI/tree/main",
|
||||
"filename": "cosmos_cv8x8x8_1.0.safetensors",
|
||||
"url": "https://huggingface.co/comfyanonymous/cosmos_1.0_text_encoder_and_VAE_ComfyUI/resolve/main/vae/cosmos_cv8x8x8_1.0.safetensors",
|
||||
"size": "211MB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-7B-Text2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Text2World Diffusion Model (7B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-7B-Text2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-7B-Text2World.safetensors",
|
||||
"size": "14.5GB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-7B-Video2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Video2World Diffusion Model (7B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-7B-Video2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-7B-Video2World.safetensors",
|
||||
"size": "14.5GB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-14B-Text2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Text2World Diffusion Model (14B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-14B-Text2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-14B-Text2World.safetensors",
|
||||
"size": "28.5GB"
|
||||
},
|
||||
{
|
||||
"name": "mcmonkey/Cosmos-1_0-Diffusion-14B-Video2World.safetensors",
|
||||
"type": "diffusion_model",
|
||||
"base": "Cosmos-1.0",
|
||||
"save_path": "diffusion_models/cosmos-1.0",
|
||||
"description": "Cosmos 1.0 Video2World Diffusion Model (14B)",
|
||||
"reference": "https://huggingface.co/mcmonkey/cosmos-1.0",
|
||||
"filename": "Cosmos-1_0-Diffusion-14B-Video2World.safetensors",
|
||||
"url": "https://huggingface.co/mcmonkey/cosmos-1.0/resolve/main/Cosmos-1_0-Diffusion-14B-Video2World.safetensors",
|
||||
"size": "28.5GB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Comfy-Org/llava_llama3_fp8_scaled.safetensors",
|
||||
"type": "clip",
|
||||
@@ -594,140 +662,6 @@
|
||||
"filename": "dmd2_sdxl_4step_lora_fp16.safetensors",
|
||||
"url": "https://huggingface.co/tianweiy/DMD2/resolve/main/dmd2_sdxl_4step_lora_fp16.safetensors",
|
||||
"size": "394MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (1step) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (1step) - SD1.5",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-1step-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-1step-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (2steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (2steps) - SD1.5",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-2steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-2steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (4steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (4steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-4steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-4steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (8steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD LoRA (8steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-8steps-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD CFG LoRA (8steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-8steps-CFG-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (12steps) - SD1.5",
|
||||
"type": "lora",
|
||||
"base": "SD1.5",
|
||||
"save_path": "loras/HyperSD/SD15",
|
||||
"description": "Hyper-SD CFG LoRA (12steps)",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-12steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-12steps-CFG-lora.safetensors",
|
||||
"size": "269MB"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Hyper-SD LoRA (1step) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (1step) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-1step-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-1step-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (2steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (2steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-2steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-2steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (4steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (4steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SD15-4steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-4steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD LoRA (8steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD LoRA (8steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-8steps-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-8steps-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (8steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD CFG LoRA (8steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-8steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-8steps-CFG-lora.safetensors",
|
||||
"size": "787MB"
|
||||
},
|
||||
{
|
||||
"name": "Hyper-SD CFG LoRA (12steps) - SDXL",
|
||||
"type": "lora",
|
||||
"base": "SDXL",
|
||||
"save_path": "loras/HyperSD/SDXL",
|
||||
"description": "Hyper-SD CFG LoRA (12steps) - SDXL",
|
||||
"reference": "https://huggingface.co/ByteDance/Hyper-SD",
|
||||
"filename": "Hyper-SDXL-12steps-CFG-lora.safetensors",
|
||||
"url": "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-12steps-CFG-lora.safetensors",
|
||||
"size": "787MB"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -74,9 +74,18 @@ def check_file_logging():
|
||||
check_file_logging()
|
||||
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
comfy_base_path = os.environ.get('COMFYUI_FOLDERS_BASE_PATH')
|
||||
|
||||
if comfy_path is None:
|
||||
# legacy env var
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
|
||||
if comfy_path is None:
|
||||
comfy_path = os.path.abspath(os.path.dirname(sys.modules['__main__'].__file__))
|
||||
|
||||
if comfy_base_path is None:
|
||||
comfy_base_path = comfy_path
|
||||
|
||||
sys.__comfyui_manager_register_message_collapse = register_message_collapse
|
||||
sys.__comfyui_manager_is_import_failed_extension = is_import_failed_extension
|
||||
cm_global.register_api('cm.register_message_collapse', register_message_collapse)
|
||||
@@ -427,6 +436,7 @@ print("** Platform:", platform.system())
|
||||
print("** Python version:", sys.version)
|
||||
print("** Python executable:", sys.executable)
|
||||
print("** ComfyUI Path:", comfy_path)
|
||||
print("** ComfyUI Base Folder Path:", comfy_base_path)
|
||||
print("** User directory:", folder_paths.user_directory)
|
||||
print("** ComfyUI-Manager config path:", manager_config_path)
|
||||
|
||||
@@ -558,7 +568,8 @@ if os.path.exists(restore_snapshot_path):
|
||||
|
||||
print("[ComfyUI-Manager] Restore snapshot.")
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
if 'COMFYUI_FOLDERS_BASE_PATH' not in new_env:
|
||||
new_env["COMFYUI_FOLDERS_BASE_PATH"] = comfy_path
|
||||
|
||||
cmd_str = [sys.executable, cm_cli_path, 'restore-snapshot', restore_snapshot_path]
|
||||
exit_code = process_wrap(cmd_str, custom_nodes_base_path, handler=msg_capture, env=new_env)
|
||||
@@ -601,7 +612,8 @@ def execute_lazy_install_script(repo_path, executable):
|
||||
install_cmd = [executable, "install.py"]
|
||||
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
if 'COMFYUI_FOLDERS_BASE_PATH' not in new_env:
|
||||
new_env["COMFYUI_FOLDERS_BASE_PATH"] = comfy_path
|
||||
process_wrap(install_cmd, repo_path, env=new_env)
|
||||
|
||||
|
||||
@@ -703,7 +715,8 @@ if os.path.exists(script_list_path):
|
||||
print(f"\n## Execute install/(de)activation script for '{script[0]}'")
|
||||
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
if 'COMFYUI_FOLDERS_BASE_PATH' not in new_env:
|
||||
new_env["COMFYUI_FOLDERS_BASE_PATH"] = comfy_path
|
||||
exit_code = process_wrap(script[1:], script[0], env=new_env)
|
||||
|
||||
if exit_code != 0:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "comfyui-manager"
|
||||
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||
version = "3.8.1"
|
||||
version = "3.9.3"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user