Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd164862f3 | ||
|
|
ac8804ca6a | ||
|
|
429e13bf4d | ||
|
|
5d9578d231 | ||
|
|
f4e0ce2ad4 | ||
|
|
aff6785e0b | ||
|
|
2656fae9c9 | ||
|
|
3ed10e304d | ||
|
|
7d17ef0da1 | ||
|
|
0202cf07d5 | ||
|
|
ad9c35e44b | ||
|
|
65286803a5 | ||
|
|
16bd58667c | ||
|
|
939d556c7e | ||
|
|
823d5459af | ||
|
|
10bd619712 | ||
|
|
9f5b0c9ddd | ||
|
|
87eadb4825 | ||
|
|
5b91e4214c | ||
|
|
fd5c120d36 | ||
|
|
3075764402 | ||
|
|
bdad599f36 | ||
|
|
29ab428979 | ||
|
|
4e92b06baa | ||
|
|
faf1209eba | ||
|
|
4dee009d51 | ||
|
|
9ad54bb86c | ||
|
|
2710d72e07 | ||
|
|
c3a1401960 | ||
|
|
585cc0d991 | ||
|
|
15ecb5b1d4 | ||
|
|
00a2ac7f2f | ||
|
|
4d34b5a3ee | ||
|
|
32dcedd703 | ||
|
|
42d48e4bfb | ||
|
|
6b12e9902c | ||
|
|
2801b929e7 | ||
|
|
16db68aa8e |
31
README.md
31
README.md
@@ -133,14 +133,29 @@ This repository provides Colab notebooks that allow you to install and use Comfy
|
|||||||
* `All`: Show a dialog where the user can select a title for sharing.
|
* `All`: Show a dialog where the user can select a title for sharing.
|
||||||
|
|
||||||
|
|
||||||
|
## Paths
|
||||||
|
In `ComfyUI-Manager` V3.0 and later, configuration files and dynamically generated files are located under `<USER_DIRECTORY>/default/ComfyUI-Manager/`.
|
||||||
|
|
||||||
|
* <USER_DIRECTORY>
|
||||||
|
* If executed without any options, the path defaults to ComfyUI/user.
|
||||||
|
* It can be set using --user-directory <USER_DIRECTORY>.
|
||||||
|
|
||||||
|
* Basic config files: `<USER_DIRECTORY>/default/ComfyUI-Manager/config.ini`
|
||||||
|
* Configurable channel lists: `<USER_DIRECTORY>/default/ComfyUI-Manager/channels.ini`
|
||||||
|
* Configurable pip overrides: `<USER_DIRECTORY>/default/ComfyUI-Manager/pip_overrides.json`
|
||||||
|
* 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`
|
||||||
|
|
||||||
|
|
||||||
## Snapshot-Manager
|
## Snapshot-Manager
|
||||||
* When you press `Save snapshot` or use `Update All` on `Manager Menu`, the current installation status snapshot is saved.
|
* When you press `Save snapshot` or use `Update All` on `Manager Menu`, the current installation status snapshot is saved.
|
||||||
* Snapshot file dir: `ComfyUI-Manager/snapshots`
|
* Snapshot file dir: `<USER_DIRECTORY>/default/ComfyUI-Manager/snapshots`
|
||||||
* You can rename snapshot file.
|
* You can rename snapshot file.
|
||||||
* Press the "Restore" button to revert to the installation status of the respective snapshot.
|
* Press the "Restore" button to revert to the installation status of the respective snapshot.
|
||||||
* However, for custom nodes not managed by Git, snapshot support is incomplete.
|
* However, for custom nodes not managed by Git, snapshot support is incomplete.
|
||||||
* When you press `Restore`, it will take effect on the next ComfyUI startup.
|
* When you press `Restore`, it will take effect on the next ComfyUI startup.
|
||||||
* The selected snapshot file is saved in `ComfyUI-Manager/startup-scripts/restore-snapshot.json`, and upon restarting ComfyUI, the snapshot is applied and then deleted.
|
* The selected snapshot file is saved in `<USER_DIRECTORY>/default/ComfyUI-Manager/startup-scripts/restore-snapshot.json`, and upon restarting ComfyUI, the snapshot is applied and then deleted.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@@ -188,12 +203,12 @@ This repository provides Colab notebooks that allow you to install and use Comfy
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
* `<current timestamp>` Ensure that the timestamp is always unique.
|
* `<current timestamp>` Ensure that the timestamp is always unique.
|
||||||
* "components" should have the same structure as the content of the file stored in ComfyUI-Manager/components.
|
* "components" should have the same structure as the content of the file stored in `<USER_DIRECTORY>/default/ComfyUI-Manager/components`.
|
||||||
* `<component name>`: The name should be in the format `<prefix>::<node name>`.
|
* `<component name>`: The name should be in the format `<prefix>::<node name>`.
|
||||||
* `<compnent nodeata>`: In the nodedata of the group node.
|
* `<compnent nodeata>`: In the nodedata of the group node.
|
||||||
* `<version>`: Only two formats are allowed: `major.minor.patch` or `major.minor`. (e.g. `1.0`, `2.2.1`)
|
* `<version>`: Only two formats are allowed: `major.minor.patch` or `major.minor`. (e.g. `1.0`, `2.2.1`)
|
||||||
* `<datetime>`: Saved time
|
* `<datetime>`: Saved time
|
||||||
* `<packname>`: If the packname is not empty, the category becomes packname/workflow, and it is saved in the <packname>.pack file in ComfyUI-Manager/components.
|
* `<packname>`: If the packname is not empty, the category becomes packname/workflow, and it is saved in the <packname>.pack file in `<USER_DIRECTORY>/default/ComfyUI-Manager/components`.
|
||||||
* `<category>`: If there is neither a category nor a packname, it is saved in the components category.
|
* `<category>`: If there is neither a category nor a packname, it is saved in the components category.
|
||||||
```
|
```
|
||||||
"version":"1.0",
|
"version":"1.0",
|
||||||
@@ -210,7 +225,7 @@ This repository provides Colab notebooks that allow you to install and use Comfy
|
|||||||
|
|
||||||
## Support of missing nodes installation
|
## Support of missing nodes installation
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
* When you click on the ```Install Missing Custom Nodes``` button in the menu, it displays a list of extension nodes that contain nodes not currently present in the workflow.
|
* When you click on the ```Install Missing Custom Nodes``` button in the menu, it displays a list of extension nodes that contain nodes not currently present in the workflow.
|
||||||
|
|
||||||
@@ -268,12 +283,8 @@ When you run the `scan.sh` script:
|
|||||||
|
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
* If your `git.exe` is installed in a specific location other than system git, please install ComfyUI-Manager and run ComfyUI. Then, specify the path including the file name in `git_exe = ` in the ComfyUI-Manager/config.ini file that is generated.
|
* If your `git.exe` is installed in a specific location other than system git, please install ComfyUI-Manager and run ComfyUI. Then, specify the path including the file name in `git_exe = ` in the `<USER_DIRECTORY>/default/ComfyUI-Manager/config.ini` file that is generated.
|
||||||
* If updating ComfyUI-Manager itself fails, please go to the **ComfyUI-Manager** directory and execute the command `git update-ref refs/remotes/origin/main a361cc1 && git fetch --all && git pull`.
|
* If updating ComfyUI-Manager itself fails, please go to the **ComfyUI-Manager** directory and execute the command `git update-ref refs/remotes/origin/main a361cc1 && git fetch --all && git pull`.
|
||||||
* Alternatively, download the update-fix.py script from [update-fix.py](https://github.com/ltdrdata/ComfyUI-Manager/raw/main/scripts/update-fix.py) and place it in the ComfyUI-Manager directory. Then, run it using your Python command.
|
|
||||||
For the portable version, use `..\..\..\python_embeded\python.exe update-fix.py`.
|
|
||||||
* For cases where nodes like `PreviewTextNode` from `ComfyUI_Custom_Nodes_AlekPet` are only supported as front-end nodes, we currently do not provide missing nodes for them.
|
|
||||||
* Currently, `vid2vid` is not being updated, causing compatibility issues.
|
|
||||||
* If you encounter the error message `Overlapped Object has pending operation at deallocation on Comfyui Manager load` under Windows
|
* If you encounter the error message `Overlapped Object has pending operation at deallocation on Comfyui Manager load` under Windows
|
||||||
* Edit `config.ini` file: add `windows_selector_event_loop_policy = True`
|
* Edit `config.ini` file: add `windows_selector_event_loop_policy = True`
|
||||||
* if `SSL: CERTIFICATE_VERIFY_FAILED` error is occured.
|
* if `SSL: CERTIFICATE_VERIFY_FAILED` error is occured.
|
||||||
|
|||||||
19
cm-cli.py
19
cm-cli.py
@@ -12,6 +12,7 @@ from rich import print
|
|||||||
from typing_extensions import List, Annotated
|
from typing_extensions import List, Annotated
|
||||||
import re
|
import re
|
||||||
import git
|
import git
|
||||||
|
import importlib
|
||||||
|
|
||||||
|
|
||||||
sys.path.append(os.path.dirname(__file__))
|
sys.path.append(os.path.dirname(__file__))
|
||||||
@@ -70,9 +71,8 @@ core.check_invalid_nodes()
|
|||||||
def read_downgrade_blacklist():
|
def read_downgrade_blacklist():
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(core.manager_config.path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'downgrade_blacklist' in default_conf:
|
if 'downgrade_blacklist' in default_conf:
|
||||||
@@ -88,12 +88,20 @@ read_downgrade_blacklist() # This is a preparation step for manager_core
|
|||||||
|
|
||||||
|
|
||||||
class Ctx:
|
class Ctx:
|
||||||
|
folder_paths = None
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.channel = 'default'
|
self.channel = 'default'
|
||||||
self.no_deps = False
|
self.no_deps = False
|
||||||
self.mode = 'cache'
|
self.mode = 'cache'
|
||||||
self.user_directory = None
|
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_path, 'custom_nodes')]
|
||||||
|
|
||||||
|
if Ctx.folder_paths is None:
|
||||||
|
try:
|
||||||
|
Ctx.folder_paths = importlib.import_module('folder_paths')
|
||||||
|
except ImportError:
|
||||||
|
print("Warning: Unable to import folder_paths module")
|
||||||
|
|
||||||
def set_channel_mode(self, channel, mode):
|
def set_channel_mode(self, channel, mode):
|
||||||
if mode is not None:
|
if mode is not None:
|
||||||
@@ -127,9 +135,9 @@ class Ctx:
|
|||||||
core.update_user_directory(user_directory)
|
core.update_user_directory(user_directory)
|
||||||
|
|
||||||
if os.path.exists(core.manager_pip_overrides_path):
|
if os.path.exists(core.manager_pip_overrides_path):
|
||||||
cm_global.pip_overrides = {'numpy': 'numpy<2'}
|
|
||||||
with open(core.manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
with open(core.manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||||
cm_global.pip_overrides = json.load(json_file)
|
cm_global.pip_overrides = json.load(json_file)
|
||||||
|
cm_global.pip_overrides = {'numpy': 'numpy<2'}
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_startup_scripts_path():
|
def get_startup_scripts_path():
|
||||||
@@ -145,7 +153,10 @@ class Ctx:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_custom_nodes_paths():
|
def get_custom_nodes_paths():
|
||||||
return folder_paths.get_folder_paths('custom_nodes')
|
if Ctx.folder_paths is None:
|
||||||
|
print("Error: folder_paths module is not available")
|
||||||
|
return []
|
||||||
|
return Ctx.folder_paths.get_folder_paths('custom_nodes')
|
||||||
|
|
||||||
|
|
||||||
cmd_ctx = Ctx()
|
cmd_ctx = Ctx()
|
||||||
|
|||||||
@@ -490,7 +490,7 @@
|
|||||||
{
|
{
|
||||||
"author": "YinBailiang",
|
"author": "YinBailiang",
|
||||||
"title": "MergeBlockWeighted_fo_ComfyUI",
|
"title": "MergeBlockWeighted_fo_ComfyUI",
|
||||||
"id": "mbw",
|
"id": "mergeblockweighted_fo_comfyui",
|
||||||
"reference": "https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI",
|
"reference": "https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI"
|
"https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI"
|
||||||
@@ -4004,6 +4004,17 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Integrates GLSL shader support."
|
"description": "Integrates GLSL shader support."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Jovi_Spout",
|
||||||
|
"id": "jovi_spout",
|
||||||
|
"reference": "https://github.com/Amorano/Jovi_Spout",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Amorano/Jovi_Spout"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Nodes for using Spout streams."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Umikaze-job",
|
"author": "Umikaze-job",
|
||||||
"title": "select_folder_path_easy",
|
"title": "select_folder_path_easy",
|
||||||
@@ -11361,7 +11372,7 @@
|
|||||||
"https://github.com/GraftingRayman/ComfyUI_GraftingRayman"
|
"https://github.com/GraftingRayman/ComfyUI_GraftingRayman"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Image Manipulation Nodes"
|
"description": "Image Manipulation and Prompt Generation Nodes"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "royceschultz",
|
"author": "royceschultz",
|
||||||
@@ -13323,6 +13334,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Perform a Fast Fourier Transform on the image, and then users can freely select the filtering range to filter the image. The main function is to remove the grid patterns on the image, and it can also perform high-pass filtering and low-pass filtering. The detailed workflow is shown in the figure below. The PNG file contains the ComfyUI workflow.The working principle is similar to the FFT filter in Photoshop."
|
"description": "Perform a Fast Fourier Transform on the image, and then users can freely select the filtering range to filter the image. The main function is to remove the grid patterns on the image, and it can also perform high-pass filtering and low-pass filtering. The detailed workflow is shown in the figure below. The PNG file contains the ComfyUI workflow.The working principle is similar to the FFT filter in Photoshop."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "fssorc",
|
||||||
|
"title": "ComfyUI_RopeWrapper",
|
||||||
|
"reference": "https://github.com/fssorc/ComfyUI_RopeWrapper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/fssorc/ComfyUI_RopeWrapper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Wrap Rope into ComfyUI, do a little change to use in ComfyUI. All credit goes to Hillobar and his ROPE [ㅁ/https://github.com/Hillobar/Rope](https://github.com/Hillobar/Rope)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "BetaDoggo",
|
"author": "BetaDoggo",
|
||||||
"title": "ComfyUI YetAnotherSafetyChecker",
|
"title": "ComfyUI YetAnotherSafetyChecker",
|
||||||
@@ -14066,6 +14087,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI nodes to use CompareModelWeights"
|
"description": "ComfyUI nodes to use CompareModelWeights"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "leeguandong",
|
||||||
|
"title": "ComfyUI_FluxCustomId",
|
||||||
|
"reference": "https://github.com/leeguandong/ComfyUI_FluxCustomId",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/leeguandong/ComfyUI_FluxCustomId"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI nodes to use FluxCustomId\nOriginal repo: [a/https://github.com/damo-cv/FLUX-customID](https://github.com/damo-cv/FLUX-customID)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "lenskikh",
|
"author": "lenskikh",
|
||||||
"title": "Propmt Worker",
|
"title": "Propmt Worker",
|
||||||
@@ -16133,6 +16164,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Implementation of Fast Fourier Transform in COMFYUI"
|
"description": "Implementation of Fast Fourier Transform in COMFYUI"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "laogou666",
|
||||||
|
"title": "Comfyui-LG_Relight",
|
||||||
|
"reference": "https://github.com/LAOGOU-666/Comfyui-LG_Relight",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LAOGOU-666/Comfyui-LG_Relight"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple implementation of real-time 3D lighting in ComfyUI. It's an open-source node, have fun playing around!"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "VertexStudio",
|
"author": "VertexStudio",
|
||||||
"title": "roblox-comfyui-nodes",
|
"title": "roblox-comfyui-nodes",
|
||||||
@@ -17899,13 +17940,23 @@
|
|||||||
{
|
{
|
||||||
"author": "5x00",
|
"author": "5x00",
|
||||||
"title": "ComfyUI-VLM_Captions",
|
"title": "ComfyUI-VLM_Captions",
|
||||||
"reference": "https://github.com/5x00/ComfyUI-VLM_Captions",
|
"reference": "https://github.com/5x00/ComfyUI-VLM-Captions",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/5x00/ComfyUI-VLM_Captions"
|
"https://github.com/5x00/ComfyUI-VLM-Captions"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A simple ComfyUI node that let's you use Claude or ChatGPT 4o's VLM capabilities to generate captions/tags for images."
|
"description": "A simple ComfyUI node that let's you use Claude or ChatGPT 4o's VLM capabilities to generate captions/tags for images."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "5x00",
|
||||||
|
"title": "ComfyUI-PiAPI-Faceswap",
|
||||||
|
"reference": "https://github.com/5x00/ComfyUI-PiAPI-Faceswap",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/5x00/ComfyUI-PiAPI-Faceswap"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple ComfyUI nodes that integrates [a/PiAPI faceswap](https://piapi.ai/faceswap-api) service into ComfyUI. This can be helpful if you're trying to create a workflow that includes faceswap for commercial usage."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "ClownsharkBatwing",
|
"author": "ClownsharkBatwing",
|
||||||
"title": "RES4LYF",
|
"title": "RES4LYF",
|
||||||
@@ -18040,7 +18091,17 @@
|
|||||||
"https://github.com/LucipherDev/ComfyUI-Golden-Noise"
|
"https://github.com/LucipherDev/ComfyUI-Golden-Noise"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI Custom Node for [a/'Golden Noise for Diffusion Models: A Learning Framework'](https://arxiv.org/abs/2411.09502) and most of the code is adapted from [a/here](https://github.com/xie-lab-ml/Golden-Noise-for-Diffusion-Models). This node refines the initial latent noise in the diffusion process, enhancing both image quality and semantic coherence."
|
"description": "ComfyUI Custom Node for 'Golden Noise for Diffusion Models: A Learning Framework'. This node refines the initial latent noise in the diffusion process, enhancing both image quality and semantic coherence."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "LucipherDev",
|
||||||
|
"title": "ComfyUI-AniDoc",
|
||||||
|
"reference": "https://github.com/LucipherDev/ComfyUI-AniDoc",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-AniDoc"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "envy-ai",
|
"author": "envy-ai",
|
||||||
@@ -18757,6 +18818,290 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI Workflow to run audioldm-l-full pipeline\n[a/https://huggingface.co/cvssp/audioldm-l-full](https://huggingface.co/cvssp/audioldm-l-full)"
|
"description": "ComfyUI Workflow to run audioldm-l-full pipeline\n[a/https://huggingface.co/cvssp/audioldm-l-full](https://huggingface.co/cvssp/audioldm-l-full)"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "bear2b",
|
||||||
|
"title": "ColorMatrixGPU Node for ComfyUI",
|
||||||
|
"reference": "https://github.com/bear2b/comfyui-argo-nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bear2b/comfyui-argo-nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This node applies a custom 4x4 color matrix to an image using GPU acceleration via PyTorch."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "phuvinh010701",
|
||||||
|
"title": "ComfyUI-Nudenet",
|
||||||
|
"reference": "https://github.com/phuvinh010701/ComfyUI-Nudenet",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/phuvinh010701/ComfyUI-Nudenet"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes for NSFW content filtering"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Vaibhavs10",
|
||||||
|
"title": "ComfyUI-DDUF",
|
||||||
|
"reference": "https://github.com/Vaibhavs10/ComfyUI-DDUF",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Vaibhavs10/ComfyUI-DDUF"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Run DDUF in ComfyUI - powered by Diffusers."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "AconexOfficial",
|
||||||
|
"title": "ComfyUI GOAT Nodes",
|
||||||
|
"reference": "https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes to level up your workflows performance and streamline specific functions."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Jaminanim",
|
||||||
|
"title": "ComfyUI-Random-Int-Divisor-Node",
|
||||||
|
"reference": "https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A set of custom ComfyUI nodes for generating random integers within a range, adjusted to the nearest multiple of a user-defined divisor. Needlessly includes both an efficient and simple list implementation. Updates with each generation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "cenzijing",
|
||||||
|
"title": "ComfyUI-Markmap",
|
||||||
|
"reference": "https://github.com/cenzijing/ComfyUI-Markmap",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cenzijing/ComfyUI-Markmap"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node for creating mindmaps from markdown"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bongsang",
|
||||||
|
"title": "ComfyUI-Bongsang",
|
||||||
|
"reference": "https://github.com/bongsang/ComfyUI-Bongsang",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bongsang/ComfyUI-Bongsang"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The 'ComfyUI-Bongsang' is very useful tools for a diffusion model developer."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "muxueChen",
|
||||||
|
"title": "CosyVoice2 for ComfyUI",
|
||||||
|
"reference": "https://github.com/muxueChen/ComfyUI_NTCosyVoice",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/muxueChen/ComfyUI_NTCosyVoice"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI_NTCosyVoice is a plugin of ComfyUI for Cosysvoice2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "inventorado",
|
||||||
|
"title": "ComfyUI Neural Network Toolkit NNT ",
|
||||||
|
"id": "nnt",
|
||||||
|
"reference": "https://github.com/inventorado/ComfyUI_NNT",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/inventorado/ComfyUI_NNT"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Neural Network Toolkit (NNT) for ComfyUI is an extensive set of custom ComfyUI nodes for designing, training, and fine-tuning neural networks. This toolkit allows defining models, layers, training workflows, transformers, and tensor operations in a visual manner using nodes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Hullabalo",
|
||||||
|
"title": "ComfyUI-Loop",
|
||||||
|
"reference": "https://github.com/Hullabalo/ComfyUI-Loop",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Hullabalo/ComfyUI-Loop"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A pair of nodes (Load Image and Save Image) to create a simple loop in your ComfyUI inpainting workflow, without the need of loading your last saved image"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hodanajan",
|
||||||
|
"title": "optimal-crop-resolution",
|
||||||
|
"reference": "https://github.com/hodanajan/optimal-crop-resolution",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hodanajan/optimal-crop-resolution"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI node to calculate optimal resolution to crop the image to (from a list of aspect ratios)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "JJ",
|
||||||
|
"title": "ComfyUI-Jtils",
|
||||||
|
"reference": "https://github.com/cnbjjj/ComfyUI-Jtils",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cnbjjj/ComfyUI-Jtils"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "An extension for ComfyUI that adds utility functions and nodes not available in the default setup."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "billwuhao",
|
||||||
|
"title": "ComfyUI_OneButtonPrompt_Flux",
|
||||||
|
"reference": "https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI_OneButtonPrompt_Flux is a Flux prompt generation node. The subject can be 'human,' 'other' or a combination of both. For human, pose settings can be enabled. Additionally, various styles can be applied. Finally, combine it with 'Prompt Enhancement' to seamlessly automate image generation, eliminating the hassle of designing prompts."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "pandaer119",
|
||||||
|
"title": "ComfyUI_pandai",
|
||||||
|
"reference": "https://github.com/pandaer119/ComfyUI_pandai",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/pandaer119/ComfyUI_pandai"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Introduction The ComfyUI_pandai node is a custom ComfyUI node designed to interact with the DeepSeek API. It supports text generation, translation, and text polishing. With this node, users can easily generate text, translate content, and refine the generated text for better quality."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "umiyuki",
|
||||||
|
"title": "ComfyUI Pad To Eight",
|
||||||
|
"reference": "https://github.com/umiyuki/comfyui-pad-to-eight",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/umiyuki/comfyui-pad-to-eight"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom ComfyUI node that pads an image to a multiple of 8 width."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Meettya",
|
||||||
|
"title": "ComfyUI-OneForOne",
|
||||||
|
"reference": "https://github.com/Meettya/ComfyUI-OneForOne",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Meettya/ComfyUI-OneForOne"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Node:Image Fit Calculator"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "KunmyonChoi",
|
||||||
|
"title": "ComfyUI_S3_direct",
|
||||||
|
"reference": "https://github.com/KunmyonChoi/ComfyUI_S3_direct",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/KunmyonChoi/ComfyUI_S3_direct"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom_node that load and save file directly from S3\nSimplified version of [a/https://github.com/kealiu/ComfyUI-S3-Tools](https://github.com/kealiu/ComfyUI-S3-Tools)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ChenDarYen",
|
||||||
|
"title": "ComfyUI-TimestepShiftModel",
|
||||||
|
"reference": "https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a ComfyUI implementation of the timestep shift technique used in [a/NitroFusion: High-Fidelity Single-Step Diffusion through Dynamic Adversarial Training.](https://arxiv.org/abs/2412.02030)\nFor more details, visit the official [a/NitroFusion GitHub repository](https://github.com/ChenDarYen/NitroFusion)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "facok",
|
||||||
|
"title": "ComfyUI-HunyuanVideoMultiLora",
|
||||||
|
"reference": "https://github.com/facok/ComfyUI-HunyuanVideoMultiLora",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom LoRA-loading node designed to prevent issues such as blurriness and other artifacts when loading multiple LoRAs in HunYuan Video.\nUsage Instructions: The connection method remains unchanged from the original. The only difference is the additional blocks_type option. Please select double_blocks."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "FinetunersAI",
|
||||||
|
"title": "ComfyUI_Finetuners_Suite",
|
||||||
|
"reference": "https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A suite of nodes for ComfyUI that helps making ComfyUI more accesible for artists"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sh570655308",
|
||||||
|
"title": "ComfyUI-GigapixelAI",
|
||||||
|
"id": "gigapixel",
|
||||||
|
"reference": "https://github.com/sh570655308/ComfyUI-GigapixelAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sh570655308/ComfyUI-GigapixelAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes use gigapixelai in comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sh570655308",
|
||||||
|
"title": "ComfyUI-TopazVideoAI",
|
||||||
|
"id": "tvai",
|
||||||
|
"reference": "https://github.com/sh570655308/ComfyUI-TopazVideoAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sh570655308/ComfyUI-TopazVideoAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes use topazvideoai in comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jammyfu",
|
||||||
|
"title": "Painting Coder Utils",
|
||||||
|
"id": "painting-coder-utils",
|
||||||
|
"reference": "https://github.com/jammyfu/ComfyUI_PaintingCoderUtils",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jammyfu/ComfyUI_PaintingCoderUtils"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A practical collection of nodes for ComfyUI that streamlines image and text processing workflows. Features include image optimized resolution adjustment, text cleaning tools, dynamic image/text combination, and mask preview utilities. Perfect for artists and developers looking to enhance their AI art creation pipeline."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "welltop-cn",
|
||||||
|
"title": "ComfyUI-TeaCache",
|
||||||
|
"id": "teacache",
|
||||||
|
"reference": "https://github.com/welltop-cn/ComfyUI-TeaCache",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/welltop-cn/ComfyUI-TeaCache"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Unofficial implementation of [ali-vilab/TeaCache](https://github.com/ali-vilab/TeaCache) for ComfyUI"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "calcuis",
|
||||||
|
"title": "gguf",
|
||||||
|
"id": "gguf",
|
||||||
|
"reference": "https://github.com/calcuis/gguf",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/calcuis/gguf"
|
||||||
|
],
|
||||||
|
"preemptions":[
|
||||||
|
"LoaderGGUF",
|
||||||
|
"ClipLoaderGGUF",
|
||||||
|
"DualClipLoaderGGUF",
|
||||||
|
"TripleClipLoaderGGUF",
|
||||||
|
"LoaderGGUFAdvanced",
|
||||||
|
"GGUFSave"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "gguf node for comfyui"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "LucipherDev",
|
||||||
|
"title": "ComfyUI-TangoFlux",
|
||||||
|
"reference": "https://github.com/LucipherDev/ComfyUI-TangoFlux",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-TangoFlux"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Custom Nodes for 'TangoFlux: Super Fast and Faithful Text to Audio Generation with Flow Matching'. This generates high-quality 44.1kHz audio up to 30 seconds using just a text prompt."
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -39,6 +39,9 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/1038lab/ComfyUI-RMBG": [
|
"https://github.com/1038lab/ComfyUI-RMBG": [
|
||||||
[
|
[
|
||||||
|
"ClothesSegment",
|
||||||
|
"FashionSegmentAccessories",
|
||||||
|
"FashionSegmentClothing",
|
||||||
"RMBG",
|
"RMBG",
|
||||||
"Segment"
|
"Segment"
|
||||||
],
|
],
|
||||||
@@ -298,7 +301,15 @@
|
|||||||
"title_aux": "ComfyUI-DareMerge"
|
"title_aux": "ComfyUI-DareMerge"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/5x00/ComfyUI-VLM_Captions": [
|
"https://github.com/5x00/ComfyUI-PiAPI-Faceswap": [
|
||||||
|
[
|
||||||
|
"Face Swapper"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-PiAPI-Faceswap"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/5x00/ComfyUI-VLM-Captions": [
|
||||||
[
|
[
|
||||||
"Image To Caption"
|
"Image To Caption"
|
||||||
],
|
],
|
||||||
@@ -1225,6 +1236,27 @@
|
|||||||
"title_aux": "ComfyUI Nodes for External Tooling"
|
"title_aux": "ComfyUI Nodes for External Tooling"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes": [
|
||||||
|
[
|
||||||
|
"Advanced_Upscale_Image_Using_Model",
|
||||||
|
"Capped_Float_Positive",
|
||||||
|
"Capped_Int_Positive",
|
||||||
|
"Embedding_Selector",
|
||||||
|
"Fast_Color_Match",
|
||||||
|
"Fast_Film_Grain",
|
||||||
|
"Get_Side_Length_Of_Image",
|
||||||
|
"Image_Dimensions",
|
||||||
|
"Image_Tiler",
|
||||||
|
"Image_Untiler",
|
||||||
|
"Int_Divide_Rounded",
|
||||||
|
"Sampler_Settings",
|
||||||
|
"Smart_Seed",
|
||||||
|
"Triple_Prompt"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI GOAT Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Aerse/ComfyUI-Seed-Nodes": [
|
"https://github.com/Aerse/ComfyUI-Seed-Nodes": [
|
||||||
[
|
[
|
||||||
"Seed-Nodes: ImagePixelator",
|
"Seed-Nodes: ImagePixelator",
|
||||||
@@ -1348,6 +1380,15 @@
|
|||||||
"title_aux": "Jovi_GLSL"
|
"title_aux": "Jovi_GLSL"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Amorano/Jovi_Spout": [
|
||||||
|
[
|
||||||
|
"SPOUT READER (JOV_SP) \ud83d\udcfa",
|
||||||
|
"SPOUT WRITER (JOV_SP) \ud83c\udfa5"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Jovi_Spout"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Amorano/Jovimetrix": [
|
"https://github.com/Amorano/Jovimetrix": [
|
||||||
[
|
[
|
||||||
"ADJUST (JOV) \ud83d\udd78\ufe0f",
|
"ADJUST (JOV) \ud83d\udd78\ufe0f",
|
||||||
@@ -2184,6 +2225,14 @@
|
|||||||
"title_aux": "ImageTransceiver - ComfyUI"
|
"title_aux": "ImageTransceiver - ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel": [
|
||||||
|
[
|
||||||
|
"Timestep Shift Model"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-TimestepShiftModel"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/ChrisColeTech/ComfyUI-Elegant-Resource-Monitor": [
|
"https://github.com/ChrisColeTech/ComfyUI-Elegant-Resource-Monitor": [
|
||||||
[
|
[
|
||||||
"Resource Monitor"
|
"Resource Monitor"
|
||||||
@@ -2210,11 +2259,14 @@
|
|||||||
"ClownInpaint",
|
"ClownInpaint",
|
||||||
"ClownInpaintSimple",
|
"ClownInpaintSimple",
|
||||||
"ClownSampler",
|
"ClownSampler",
|
||||||
|
"ClownSamplerAdvanced",
|
||||||
"ClownsharKSampler",
|
"ClownsharKSampler",
|
||||||
"ClownsharKSamplerAutomation",
|
"ClownsharKSamplerAutomation",
|
||||||
|
"ClownsharKSamplerGuide",
|
||||||
"ClownsharKSamplerGuides",
|
"ClownsharKSamplerGuides",
|
||||||
"ClownsharKSamplerOptions",
|
"ClownsharKSamplerOptions",
|
||||||
"ClownsharKSamplerOptions_SDE_Noise",
|
"ClownsharKSamplerOptions_SDE_Noise",
|
||||||
|
"ClownsharkSamplerOptions_FrameWeights",
|
||||||
"Conditioning Recast FP64",
|
"Conditioning Recast FP64",
|
||||||
"ConditioningAdd",
|
"ConditioningAdd",
|
||||||
"ConditioningAverageScheduler",
|
"ConditioningAverageScheduler",
|
||||||
@@ -2309,6 +2361,7 @@
|
|||||||
"UltraSharkSampler",
|
"UltraSharkSampler",
|
||||||
"UltraSharkSampler Tiled",
|
"UltraSharkSampler Tiled",
|
||||||
"UltraSharkSamplerRBTest",
|
"UltraSharkSamplerRBTest",
|
||||||
|
"VAEEncodeAdvanced",
|
||||||
"VGG19StyleTransfer",
|
"VGG19StyleTransfer",
|
||||||
"Zampler_Test"
|
"Zampler_Test"
|
||||||
],
|
],
|
||||||
@@ -2486,6 +2539,7 @@
|
|||||||
"ImageMinusMask",
|
"ImageMinusMask",
|
||||||
"Light or Dark",
|
"Light or Dark",
|
||||||
"Load Random Images",
|
"Load Random Images",
|
||||||
|
"Mask Preprocess Morphology",
|
||||||
"PhotoShop Transfer",
|
"PhotoShop Transfer",
|
||||||
"Yuan"
|
"Yuan"
|
||||||
],
|
],
|
||||||
@@ -2598,10 +2652,14 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/DesertPixelAi/ComfyUI-Desert-Pixel-Nodes": [
|
"https://github.com/DesertPixelAi/ComfyUI-Desert-Pixel-Nodes": [
|
||||||
[
|
[
|
||||||
|
"DP 10 String Switch",
|
||||||
"DP 2 String Switch",
|
"DP 2 String Switch",
|
||||||
"DP 5 String Switch",
|
"DP 5 String Switch",
|
||||||
|
"DP Add Weight To String Sdxl",
|
||||||
|
"DP Advanced Weight String Sdxl",
|
||||||
"DP Animation Calculator 10 Inputs",
|
"DP Animation Calculator 10 Inputs",
|
||||||
"DP Animation Calculator 5 Inputs",
|
"DP Animation Calculator 5 Inputs",
|
||||||
|
"DP Art Style Generator",
|
||||||
"DP Aspect Ratio Picker",
|
"DP Aspect Ratio Picker",
|
||||||
"DP Big Letters",
|
"DP Big Letters",
|
||||||
"DP Broken Token",
|
"DP Broken Token",
|
||||||
@@ -2626,6 +2684,9 @@
|
|||||||
"DP Image Empty Latent Switch SDXL",
|
"DP Image Empty Latent Switch SDXL",
|
||||||
"DP Image Slide Show",
|
"DP Image Slide Show",
|
||||||
"DP Image Strip",
|
"DP Image Strip",
|
||||||
|
"DP Image Switch 10",
|
||||||
|
"DP Image Switch 3",
|
||||||
|
"DP Image Switch 5",
|
||||||
"DP Int 0-1000",
|
"DP Int 0-1000",
|
||||||
"DP Int 0-1000 4 Step",
|
"DP Int 0-1000 4 Step",
|
||||||
"DP Int 0-1000 8 Step",
|
"DP Int 0-1000 8 Step",
|
||||||
@@ -2650,6 +2711,7 @@
|
|||||||
"DP Random Mode Switch",
|
"DP Random Mode Switch",
|
||||||
"DP Random Psychedelic Punk Generator",
|
"DP Random Psychedelic Punk Generator",
|
||||||
"DP Random Superhero Prompt Generator",
|
"DP Random Superhero Prompt Generator",
|
||||||
|
"DP Random Vehicle Generator",
|
||||||
"DP Save Preview Image",
|
"DP Save Preview Image",
|
||||||
"DP Set New Model Folder Link",
|
"DP Set New Model Folder Link",
|
||||||
"DP String Text",
|
"DP String Text",
|
||||||
@@ -2767,9 +2829,27 @@
|
|||||||
"AD_TextListToString",
|
"AD_TextListToString",
|
||||||
"AD_TextSaver",
|
"AD_TextSaver",
|
||||||
"AD_TxtToCSVCombiner",
|
"AD_TxtToCSVCombiner",
|
||||||
"AD_ZipSave"
|
"AD_ZipSave",
|
||||||
|
"AD_advanced-padding",
|
||||||
|
"AD_color-image",
|
||||||
|
"AD_image-concat",
|
||||||
|
"AD_image-resize",
|
||||||
|
"AD_mockup-maker",
|
||||||
|
"AD_poster-maker",
|
||||||
|
"AD_prompt-saver",
|
||||||
|
"ImageResize",
|
||||||
|
"Incrementer \ud83e\udeb4",
|
||||||
|
"TextAppendNode",
|
||||||
|
"Width and height for scaling image to ideal resolution \ud83e\udeb4",
|
||||||
|
"Width and height from aspect ratio \ud83e\udeb4",
|
||||||
|
"YANC.MultilineString",
|
||||||
|
"comfyui-easy-padding",
|
||||||
|
"image concat mask"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
|
"author": "ComfyUI Addoor",
|
||||||
|
"description": "Save prompts to CSV file with customizable naming pattern",
|
||||||
|
"title": "ComfyUI-PromptSaver",
|
||||||
"title_aux": "ComfyUI-Addoor"
|
"title_aux": "ComfyUI-Addoor"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -3343,6 +3423,16 @@
|
|||||||
"title_aux": "IC-Light-ComfyUI-Node"
|
"title_aux": "IC-Light-ComfyUI-Node"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite": [
|
||||||
|
[
|
||||||
|
"AutoImageResize",
|
||||||
|
"GroupLink",
|
||||||
|
"VariablesInjector"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_Finetuners_Suite"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/FizzleDorf/ComfyUI-AIT": [
|
"https://github.com/FizzleDorf/ComfyUI-AIT": [
|
||||||
[
|
[
|
||||||
"AIT_Unet_Loader",
|
"AIT_Unet_Loader",
|
||||||
@@ -3754,7 +3844,8 @@
|
|||||||
"RH_ExecuteNode",
|
"RH_ExecuteNode",
|
||||||
"RH_ImageUploaderNode",
|
"RH_ImageUploaderNode",
|
||||||
"RH_NodeInfoListNode",
|
"RH_NodeInfoListNode",
|
||||||
"RH_SettingsNode"
|
"RH_SettingsNode",
|
||||||
|
"RH_Utils"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI_RH_APICall"
|
"title_aux": "ComfyUI_RH_APICall"
|
||||||
@@ -3924,6 +4015,7 @@
|
|||||||
"AgentMemoryProvider",
|
"AgentMemoryProvider",
|
||||||
"AgentNode",
|
"AgentNode",
|
||||||
"BasicRecursionFilterNode",
|
"BasicRecursionFilterNode",
|
||||||
|
"DocumentChunkRecursionFilterNode",
|
||||||
"DocumentProcessor",
|
"DocumentProcessor",
|
||||||
"LinuxMemoryDirectory",
|
"LinuxMemoryDirectory",
|
||||||
"QueryNode"
|
"QueryNode"
|
||||||
@@ -3935,6 +4027,17 @@
|
|||||||
"title_aux": "ComfyUI_LiteLLM"
|
"title_aux": "ComfyUI_LiteLLM"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Hullabalo/ComfyUI-Loop": [
|
||||||
|
[
|
||||||
|
"ImageCutLoop",
|
||||||
|
"ImagePasteLoop",
|
||||||
|
"LoadImageSimple",
|
||||||
|
"SaveImageSimple"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Loop"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/IDGallagher/ComfyUI-IG-Motion-I2V": [
|
"https://github.com/IDGallagher/ComfyUI-IG-Motion-I2V": [
|
||||||
[
|
[
|
||||||
"MI2V Flow Animator",
|
"MI2V Flow Animator",
|
||||||
@@ -4136,12 +4239,12 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/Isulion/ComfyUI_Isulion": [
|
"https://github.com/Isulion/ComfyUI_Isulion": [
|
||||||
[
|
[
|
||||||
|
"CustomTextNode",
|
||||||
"DisplayImageFromURL",
|
"DisplayImageFromURL",
|
||||||
"IsuCollage_Node",
|
"IsuCollage_Node",
|
||||||
"Isulion Civitai Image Display",
|
"Isulion Civitai Image Display",
|
||||||
"Isulion Civitai Model Explorer",
|
"Isulion Civitai Model Explorer",
|
||||||
"Isulion Civitai Trending",
|
"Isulion Civitai Trending",
|
||||||
"Isulion Video Prompt Generator \ud83c\udfa5",
|
|
||||||
"IsulionActionGenerator",
|
"IsulionActionGenerator",
|
||||||
"IsulionAlienWorldGenerator",
|
"IsulionAlienWorldGenerator",
|
||||||
"IsulionAnimalBehaviorGenerator",
|
"IsulionAnimalBehaviorGenerator",
|
||||||
@@ -4170,6 +4273,7 @@
|
|||||||
"IsulionStyleMixer",
|
"IsulionStyleMixer",
|
||||||
"IsulionTechGenerator",
|
"IsulionTechGenerator",
|
||||||
"IsulionTimeOfDayGenerator",
|
"IsulionTimeOfDayGenerator",
|
||||||
|
"IsulionVideoPromptGenerator",
|
||||||
"IsulionWeatherGenerator",
|
"IsulionWeatherGenerator",
|
||||||
"\ud83d\udca4 IsulionShutdown"
|
"\ud83d\udca4 IsulionShutdown"
|
||||||
],
|
],
|
||||||
@@ -4335,6 +4439,16 @@
|
|||||||
"title_aux": "ComfyUI-AI-Assistant"
|
"title_aux": "ComfyUI-AI-Assistant"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node": [
|
||||||
|
[
|
||||||
|
"RandomIntegerNodeEfficient",
|
||||||
|
"RandomIntegerNodeEfficientAdvanced",
|
||||||
|
"RandomIntegerNodeList"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Random-Int-Divisor-Node"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Jannchie/ComfyUI-J": [
|
"https://github.com/Jannchie/ComfyUI-J": [
|
||||||
[
|
[
|
||||||
"DiffusersCompelPromptEmbedding",
|
"DiffusersCompelPromptEmbedding",
|
||||||
@@ -4916,6 +5030,16 @@
|
|||||||
"title_aux": "ComfyUI-DenoiseChooser"
|
"title_aux": "ComfyUI-DenoiseChooser"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/KunmyonChoi/ComfyUI_S3_direct": [
|
||||||
|
[
|
||||||
|
"Direct Load Image From S3",
|
||||||
|
"Direct Save Image To S3",
|
||||||
|
"Save VHS Video to S3"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_S3_direct"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/KwaiVGI/ComfyUI-KLingAI-API": [
|
"https://github.com/KwaiVGI/ComfyUI-KLingAI-API": [
|
||||||
[
|
[
|
||||||
"Client",
|
"Client",
|
||||||
@@ -4946,6 +5070,14 @@
|
|||||||
"title_aux": "ComfyUI_LG_FFT"
|
"title_aux": "ComfyUI_LG_FFT"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/LAOGOU-666/Comfyui-LG_Relight": [
|
||||||
|
[
|
||||||
|
"LG_Relight"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Comfyui-LG_Relight"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/LEv145/images-grid-comfy-plugin": [
|
"https://github.com/LEv145/images-grid-comfy-plugin": [
|
||||||
[
|
[
|
||||||
"GridAnnotation",
|
"GridAnnotation",
|
||||||
@@ -5203,6 +5335,17 @@
|
|||||||
"title_aux": "ComfyUI-RawSaver"
|
"title_aux": "ComfyUI-RawSaver"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-AniDoc": [
|
||||||
|
[
|
||||||
|
"AniDocLoader",
|
||||||
|
"AniDocSampler",
|
||||||
|
"GetAniDocControlnetImages",
|
||||||
|
"LoadCoTracker"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-AniDoc"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/LucipherDev/ComfyUI-Golden-Noise": [
|
"https://github.com/LucipherDev/ComfyUI-Golden-Noise": [
|
||||||
[
|
[
|
||||||
"GoldenNoise"
|
"GoldenNoise"
|
||||||
@@ -5482,6 +5625,14 @@
|
|||||||
"title_aux": "SimpleToolsNodes"
|
"title_aux": "SimpleToolsNodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Meettya/ComfyUI-OneForOne": [
|
||||||
|
[
|
||||||
|
"OFO Image Fit"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-OneForOne"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/MetaGLM/ComfyUI-ZhipuAI-Platform": [
|
"https://github.com/MetaGLM/ComfyUI-ZhipuAI-Platform": [
|
||||||
[
|
[
|
||||||
"VideoReportData",
|
"VideoReportData",
|
||||||
@@ -5769,23 +5920,39 @@
|
|||||||
"DJZ-LoadLatentV2",
|
"DJZ-LoadLatentV2",
|
||||||
"DJZDatamosh",
|
"DJZDatamosh",
|
||||||
"DJZDatamoshV2",
|
"DJZDatamoshV2",
|
||||||
|
"DatasetWordcloud",
|
||||||
|
"DinskyPlus",
|
||||||
|
"DinskyPlusV2",
|
||||||
"DjzDatamoshV3",
|
"DjzDatamoshV3",
|
||||||
"DjzDatamoshV4",
|
"DjzDatamoshV4",
|
||||||
"DjzDatamoshV5",
|
"DjzDatamoshV5",
|
||||||
"DjzDatamoshV6",
|
"DjzDatamoshV6",
|
||||||
"DjzDatamoshV7",
|
"DjzDatamoshV7",
|
||||||
|
"FractalGenerator",
|
||||||
|
"FractalGeneratorV2",
|
||||||
|
"FractalGeneratorV3",
|
||||||
"ImageSizeAdjuster",
|
"ImageSizeAdjuster",
|
||||||
"ImageSizeAdjusterV2",
|
"ImageSizeAdjusterV2",
|
||||||
"ImageSizeAdjusterV3",
|
"ImageSizeAdjusterV3",
|
||||||
|
"LoadTextDirectory",
|
||||||
"LoadVideoDirectory",
|
"LoadVideoDirectory",
|
||||||
|
"ParametricMeshGen",
|
||||||
|
"ParametricMeshGenV2",
|
||||||
"ProjectFilePathNode",
|
"ProjectFilePathNode",
|
||||||
|
"PromptCleaner",
|
||||||
|
"PromptInject",
|
||||||
|
"PromptSwap",
|
||||||
|
"SequentialNumberGenerator",
|
||||||
"StringWeights",
|
"StringWeights",
|
||||||
|
"TrianglesPlus",
|
||||||
|
"TrianglesPlusV2",
|
||||||
"ZenkaiPrompt",
|
"ZenkaiPrompt",
|
||||||
"ZenkaiPromptV2",
|
"ZenkaiPromptV2",
|
||||||
"ZenkaiWildcard",
|
"ZenkaiWildcard",
|
||||||
"ZenkaiWildcardV2"
|
"ZenkaiWildcardV2"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
|
"author": "DJZ-Nodes",
|
||||||
"title_aux": "DJZ-Nodes"
|
"title_aux": "DJZ-Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -7297,7 +7464,8 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/ShmuelRonen/ComfyUI-LatentSyncWrapper": [
|
"https://github.com/ShmuelRonen/ComfyUI-LatentSyncWrapper": [
|
||||||
[
|
[
|
||||||
"D_LatentSyncNode"
|
"D_LatentSyncNode",
|
||||||
|
"D_VideoLengthAdjuster"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-LatentSyncWrapper"
|
"title_aux": "ComfyUI-LatentSyncWrapper"
|
||||||
@@ -7667,8 +7835,10 @@
|
|||||||
"SDVN Image Info",
|
"SDVN Image Info",
|
||||||
"SDVN Image Layout",
|
"SDVN Image Layout",
|
||||||
"SDVN Image Repeat",
|
"SDVN Image Repeat",
|
||||||
|
"SDVN Image Scraper",
|
||||||
"SDVN Image Size",
|
"SDVN Image Size",
|
||||||
"SDVN Inpaint",
|
"SDVN Inpaint",
|
||||||
|
"SDVN Join Parameter",
|
||||||
"SDVN KSampler",
|
"SDVN KSampler",
|
||||||
"SDVN Load Checkpoint",
|
"SDVN Load Checkpoint",
|
||||||
"SDVN Load Image",
|
"SDVN Load Image",
|
||||||
@@ -7676,6 +7846,7 @@
|
|||||||
"SDVN Load Image From List",
|
"SDVN Load Image From List",
|
||||||
"SDVN Load Image Url",
|
"SDVN Load Image Url",
|
||||||
"SDVN Load Lora",
|
"SDVN Load Lora",
|
||||||
|
"SDVN Load Model",
|
||||||
"SDVN Load Text",
|
"SDVN Load Text",
|
||||||
"SDVN Logic",
|
"SDVN Logic",
|
||||||
"SDVN Lora Download",
|
"SDVN Lora Download",
|
||||||
@@ -7848,6 +8019,7 @@
|
|||||||
"Divide Image and Select Tile",
|
"Divide Image and Select Tile",
|
||||||
"Divide and Conquer Algorithm",
|
"Divide and Conquer Algorithm",
|
||||||
"Divide and Conquer Algorithm (No Upscale)",
|
"Divide and Conquer Algorithm (No Upscale)",
|
||||||
|
"Load Images into List",
|
||||||
"Make Size"
|
"Make Size"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -8693,6 +8865,18 @@
|
|||||||
"title_aux": "Tripo for ComfyUI"
|
"title_aux": "Tripo for ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Vaibhavs10/ComfyUI-DDUF": [
|
||||||
|
[
|
||||||
|
"DDUFLoader",
|
||||||
|
"DiffusersModelMakeup",
|
||||||
|
"DiffusersPipelineLoader",
|
||||||
|
"DiffusersSchedulerLoader",
|
||||||
|
"DiffusersSimpleSampler"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-DDUF"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/VangengLab/ComfyUI-LivePortrait_v2": [
|
"https://github.com/VangengLab/ComfyUI-LivePortrait_v2": [
|
||||||
[
|
[
|
||||||
"LivePortraitProcess_animal"
|
"LivePortraitProcess_animal"
|
||||||
@@ -9131,7 +9315,9 @@
|
|||||||
"InstaCText",
|
"InstaCText",
|
||||||
"InstaCTextML",
|
"InstaCTextML",
|
||||||
"InstaPromptMultipleStyleSelector",
|
"InstaPromptMultipleStyleSelector",
|
||||||
"InstaPromptStyleSelector"
|
"InstaPromptStyleSelector",
|
||||||
|
"LoadVideo",
|
||||||
|
"PreViewVideo"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "InstaSD nodes for ComfyUI"
|
"title_aux": "InstaSD nodes for ComfyUI"
|
||||||
@@ -9171,6 +9357,7 @@
|
|||||||
"https://github.com/Wicloz/ComfyUI-Simply-Nodes": [
|
"https://github.com/Wicloz/ComfyUI-Simply-Nodes": [
|
||||||
[
|
[
|
||||||
"WF_ConditionalLoraLoader",
|
"WF_ConditionalLoraLoader",
|
||||||
|
"WF_FixupPixelArt",
|
||||||
"WF_MultilineText",
|
"WF_MultilineText",
|
||||||
"WF_RandomStyle",
|
"WF_RandomStyle",
|
||||||
"WF_ResolutionSDXL",
|
"WF_ResolutionSDXL",
|
||||||
@@ -10798,6 +10985,14 @@
|
|||||||
"title_aux": "Mikey Nodes"
|
"title_aux": "Mikey Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/bear2b/comfyui-argo-nodes": [
|
||||||
|
[
|
||||||
|
"ColorMatrixGPU"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ColorMatrixGPU Node for ComfyUI"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/bedovyy/ComfyUI_NAIDGenerator": [
|
"https://github.com/bedovyy/ComfyUI_NAIDGenerator": [
|
||||||
[
|
[
|
||||||
"ColorizeNAID",
|
"ColorizeNAID",
|
||||||
@@ -10843,6 +11038,14 @@
|
|||||||
"title_aux": "ComfyUI_TextAssets"
|
"title_aux": "ComfyUI_TextAssets"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux": [
|
||||||
|
[
|
||||||
|
"OneButtonPromptFlux"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_OneButtonPrompt_Flux"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/bitaffinity/ComfyUI_HF_Inference": [
|
"https://github.com/bitaffinity/ComfyUI_HF_Inference": [
|
||||||
[
|
[
|
||||||
"Classification",
|
"Classification",
|
||||||
@@ -11104,6 +11307,15 @@
|
|||||||
"title_aux": "Remembering utils"
|
"title_aux": "Remembering utils"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/bongsang/ComfyUI-Bongsang": [
|
||||||
|
[
|
||||||
|
"AnyInfo",
|
||||||
|
"RgbChannel"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Bongsang"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/boredofnames/ComfyUI-ntfy": [
|
"https://github.com/boredofnames/ComfyUI-ntfy": [
|
||||||
[
|
[
|
||||||
"Ntfy",
|
"Ntfy",
|
||||||
@@ -11358,6 +11570,15 @@
|
|||||||
"title_aux": "ComfyUI SimpleTools Suit"
|
"title_aux": "ComfyUI SimpleTools Suit"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/cenzijing/ComfyUI-Markmap": [
|
||||||
|
[
|
||||||
|
"MarkmapNode",
|
||||||
|
"ReadHtmlNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Markmap"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/cerspense/ComfyUI_cspnodes": [
|
"https://github.com/cerspense/ComfyUI_cspnodes": [
|
||||||
[
|
[
|
||||||
"DepthToNormalMap",
|
"DepthToNormalMap",
|
||||||
@@ -12535,12 +12756,8 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/civen-cn/ComfyUI-Whisper-Translator": [
|
"https://github.com/civen-cn/ComfyUI-Whisper-Translator": [
|
||||||
[
|
[
|
||||||
"Add Subtitles To Background",
|
|
||||||
"Add Subtitles To Frames",
|
|
||||||
"Add Subtitles To FramesX",
|
"Add Subtitles To FramesX",
|
||||||
"Apply Whisper",
|
"Apply WhisperX"
|
||||||
"Apply WhisperX",
|
|
||||||
"Resize Cropped Subtitles"
|
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI Whisper Translator"
|
"title_aux": "ComfyUI Whisper Translator"
|
||||||
@@ -13965,19 +14182,26 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/drmbt/comfyui-dreambait-nodes": [
|
"https://github.com/drmbt/comfyui-dreambait-nodes": [
|
||||||
[
|
[
|
||||||
|
"AudioInfoPlus",
|
||||||
"BoolPlusPlus",
|
"BoolPlusPlus",
|
||||||
"DRMBT_AspectPadImageForOutpainting",
|
"DRMBT_AspectPadImageForOutpainting",
|
||||||
"DRMBT_LoadMedia",
|
"DRMBT_LoadMedia",
|
||||||
"DRMBT_MultiMinMax",
|
"DRMBT_MultiMinMax",
|
||||||
"DRMBT_String_Item_Menu",
|
"DRMBT_String_Item_Menu",
|
||||||
|
"DownloadAndLoadMiniCPMV",
|
||||||
|
"DreambaitFolderOpener",
|
||||||
|
"DynamicDictionary",
|
||||||
"ImageFrameBlend",
|
"ImageFrameBlend",
|
||||||
"ImageResizeFaceAware",
|
"ImageResizeFaceAware",
|
||||||
"ListItemExtract",
|
"ListItemExtract",
|
||||||
"ListItemSelector",
|
"ListItemSelector",
|
||||||
|
"LoadAudioPlus",
|
||||||
|
"MiniCPMVNode",
|
||||||
"MusicGen",
|
"MusicGen",
|
||||||
"NormalizeAudio",
|
"NormalizeAudio",
|
||||||
"NumberPlusPlus",
|
"NumberPlusPlus",
|
||||||
"NumberRemap",
|
"NumberRemap",
|
||||||
|
"Qwen2AudioInstruct",
|
||||||
"SwitchDuo",
|
"SwitchDuo",
|
||||||
"TextLineSelect",
|
"TextLineSelect",
|
||||||
"TextLinesToList",
|
"TextLinesToList",
|
||||||
@@ -14263,7 +14487,8 @@
|
|||||||
"Genera.BatchTester",
|
"Genera.BatchTester",
|
||||||
"Genera.GCPStorageNode",
|
"Genera.GCPStorageNode",
|
||||||
"Genera.MaskDrawer",
|
"Genera.MaskDrawer",
|
||||||
"Genera.Utils"
|
"Genera.Utils",
|
||||||
|
"PainterNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-GeneraNodes"
|
"title_aux": "ComfyUI-GeneraNodes"
|
||||||
@@ -14348,6 +14573,14 @@
|
|||||||
"title_aux": "ComfyUI-Showrunner-Utils"
|
"title_aux": "ComfyUI-Showrunner-Utils"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora": [
|
||||||
|
[
|
||||||
|
"HunyuanVideoLoraLoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-HunyuanVideoMultiLora"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/fairy-root/ComfyUI-GLHF": [
|
"https://github.com/fairy-root/ComfyUI-GLHF": [
|
||||||
[
|
[
|
||||||
"glhf_chat"
|
"glhf_chat"
|
||||||
@@ -14891,6 +15124,22 @@
|
|||||||
"title_aux": "ComfyUI_FaceShaper"
|
"title_aux": "ComfyUI_FaceShaper"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/fssorc/ComfyUI_RopeWrapper": [
|
||||||
|
[
|
||||||
|
"RopeVideoCombine",
|
||||||
|
"RopeWrapper_DetectNode",
|
||||||
|
"RopeWrapper_FaceRestore",
|
||||||
|
"RopeWrapper_LoadModels",
|
||||||
|
"RopeWrapper_LoadSwapInfo",
|
||||||
|
"RopeWrapper_OptionNode",
|
||||||
|
"RopeWrapper_SaveSwapInfo",
|
||||||
|
"RopeWrapper_SwapNode",
|
||||||
|
"RopeWrapper_SwapNodeTEST"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_RopeWrapper"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/fssorc/ComfyUI_pose_inter": [
|
"https://github.com/fssorc/ComfyUI_pose_inter": [
|
||||||
[
|
[
|
||||||
"Pose_Inter"
|
"Pose_Inter"
|
||||||
@@ -15369,6 +15618,7 @@
|
|||||||
"Griptape Util: Create Agent Modelfile",
|
"Griptape Util: Create Agent Modelfile",
|
||||||
"Griptape Util: Create Model from Modelfile",
|
"Griptape Util: Create Model from Modelfile",
|
||||||
"Griptape Util: Remove Ollama Model",
|
"Griptape Util: Remove Ollama Model",
|
||||||
|
"Griptape Util: Switch Node",
|
||||||
"Griptape Vector Store Driver: Amazon OpenSearch",
|
"Griptape Vector Store Driver: Amazon OpenSearch",
|
||||||
"Griptape Vector Store Driver: Azure MongoDB",
|
"Griptape Vector Store Driver: Azure MongoDB",
|
||||||
"Griptape Vector Store Driver: Griptape Cloud",
|
"Griptape Vector Store Driver: Griptape Cloud",
|
||||||
@@ -15606,6 +15856,7 @@
|
|||||||
"LLavaLoader",
|
"LLavaLoader",
|
||||||
"LorapathLoader",
|
"LorapathLoader",
|
||||||
"Lorebook",
|
"Lorebook",
|
||||||
|
"Mcp_tool",
|
||||||
"RSS_loader",
|
"RSS_loader",
|
||||||
"RSS_tool",
|
"RSS_tool",
|
||||||
"SpeedChange",
|
"SpeedChange",
|
||||||
@@ -15849,6 +16100,14 @@
|
|||||||
"title_aux": "ComfyUI 3D Pose Editor"
|
"title_aux": "ComfyUI 3D Pose Editor"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/hodanajan/optimal-crop-resolution": [
|
||||||
|
[
|
||||||
|
"AspectRatioCalculator"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "optimal-crop-resolution"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/holchan/ComfyUI-ModelDownloader": [
|
"https://github.com/holchan/ComfyUI-ModelDownloader": [
|
||||||
[
|
[
|
||||||
"LoRADownloader",
|
"LoRADownloader",
|
||||||
@@ -16225,6 +16484,72 @@
|
|||||||
"title_aux": "comfyui_extra_api"
|
"title_aux": "comfyui_extra_api"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/inventorado/ComfyUI_NNT": [
|
||||||
|
[
|
||||||
|
"NntAnalyzeInferenceMetrics",
|
||||||
|
"NntAnalyzeModel",
|
||||||
|
"NntCompileModel",
|
||||||
|
"NntDatasetToImageTensor",
|
||||||
|
"NntDatasetToTargetTensor",
|
||||||
|
"NntDatasetToTensor",
|
||||||
|
"NntDatasetToTextTensor",
|
||||||
|
"NntDefineActivationLayer",
|
||||||
|
"NntDefineAlibiPositionalBias",
|
||||||
|
"NntDefineConvLayer",
|
||||||
|
"NntDefineDenseLayer",
|
||||||
|
"NntDefineFlattenLayer",
|
||||||
|
"NntDefineGRULayer",
|
||||||
|
"NntDefineLSTMLayer",
|
||||||
|
"NntDefineLinearAttention",
|
||||||
|
"NntDefineLocalAttention",
|
||||||
|
"NntDefineMultiheadAttention",
|
||||||
|
"NntDefineNormLayer",
|
||||||
|
"NntDefinePoolingLayer",
|
||||||
|
"NntDefinePositionalEncoding",
|
||||||
|
"NntDefineRNNLayer",
|
||||||
|
"NntDefineReformerAttention",
|
||||||
|
"NntDefineRelativePositionBias",
|
||||||
|
"NntDefineReshapeLayer",
|
||||||
|
"NntDefineRotaryPositionalEmbedding",
|
||||||
|
"NntDefineTransformerEncoderLayer",
|
||||||
|
"NntDefineTransformerXLAttention",
|
||||||
|
"NntDefineVanillaAttention",
|
||||||
|
"NntEditModelLayers",
|
||||||
|
"NntEvaluatePredictions",
|
||||||
|
"NntFileLoader",
|
||||||
|
"NntFineTuneModel",
|
||||||
|
"NntHuggingFaceDataLoader",
|
||||||
|
"NntImageToTensor",
|
||||||
|
"NntInference",
|
||||||
|
"NntInputLayer",
|
||||||
|
"NntLoadModel",
|
||||||
|
"NntMergeExtendModel",
|
||||||
|
"NntPlotTensors",
|
||||||
|
"NntRandomTensorGenerator",
|
||||||
|
"NntSHAPSummaryNode",
|
||||||
|
"NntSaveModel",
|
||||||
|
"NntShowLayerStack",
|
||||||
|
"NntShowModelInfo",
|
||||||
|
"NntTensorElementToImage",
|
||||||
|
"NntTensorOperations",
|
||||||
|
"NntTensorSlice",
|
||||||
|
"NntTensorToText",
|
||||||
|
"NntTextBatchProcessor",
|
||||||
|
"NntTextToTensor",
|
||||||
|
"NntTimeSeriesDataLoader",
|
||||||
|
"NntTorchvisionDataLoader",
|
||||||
|
"NntTorchvisionDatasets",
|
||||||
|
"NntTrainModel",
|
||||||
|
"NntTrainingHyperparameters",
|
||||||
|
"NntVisualizeConfidenceScores",
|
||||||
|
"NntVisualizeGraph",
|
||||||
|
"NntVisualizePredictionMetrics",
|
||||||
|
"NntVisualizeTrainingMetrics"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI Neural Network Toolkit NNT "
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/iwanders/ComfyUI_nodes": [
|
"https://github.com/iwanders/ComfyUI_nodes": [
|
||||||
[
|
[
|
||||||
"IW_JsonPickItem",
|
"IW_JsonPickItem",
|
||||||
@@ -16538,7 +16863,9 @@
|
|||||||
"Ksampler Parameters JK",
|
"Ksampler Parameters JK",
|
||||||
"Latent Crop Offset JK",
|
"Latent Crop Offset JK",
|
||||||
"Latent Upscale Parameters Extract JK",
|
"Latent Upscale Parameters Extract JK",
|
||||||
|
"Load Image With Alpha JK",
|
||||||
"Load Image With Metadata JK",
|
"Load Image With Metadata JK",
|
||||||
|
"Make Image Grid JK",
|
||||||
"Metadata Pipe Extract JK",
|
"Metadata Pipe Extract JK",
|
||||||
"Metadata Pipe JK",
|
"Metadata Pipe JK",
|
||||||
"NodesState JK",
|
"NodesState JK",
|
||||||
@@ -16609,6 +16936,7 @@
|
|||||||
"Save Image with Metadata Flow JK",
|
"Save Image with Metadata Flow JK",
|
||||||
"Save Image with Metadata JK",
|
"Save Image with Metadata JK",
|
||||||
"Scale To Resolution JK",
|
"Scale To Resolution JK",
|
||||||
|
"Split Image Grid JK",
|
||||||
"Stability Conservative Upscale",
|
"Stability Conservative Upscale",
|
||||||
"Stability Control Sketch",
|
"Stability Control Sketch",
|
||||||
"Stability Control Structure",
|
"Stability Control Structure",
|
||||||
@@ -16737,12 +17065,14 @@
|
|||||||
[
|
[
|
||||||
"ComfyOnlineSaveFile",
|
"ComfyOnlineSaveFile",
|
||||||
"ComfyOnlineUploadAnything",
|
"ComfyOnlineUploadAnything",
|
||||||
|
"EmbeddingLoader",
|
||||||
"LoadHunyuanLoraFromCivitAI",
|
"LoadHunyuanLoraFromCivitAI",
|
||||||
"LoadHunyuanLoraFromComfyOnline",
|
"LoadHunyuanLoraFromComfyOnline",
|
||||||
"LoadHunyuanLoraFromHF",
|
"LoadHunyuanLoraFromHF",
|
||||||
"LoadLoraFromCivitAI",
|
"LoadLoraFromCivitAI",
|
||||||
"LoadLoraFromComfyOnline",
|
"LoadLoraFromComfyOnline",
|
||||||
"LoadLoraFromHF"
|
"LoadLoraFromHF",
|
||||||
|
"SaveAudioAsWav"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui-model-dynamic-loader"
|
"title_aux": "comfyui-model-dynamic-loader"
|
||||||
@@ -17723,6 +18053,7 @@
|
|||||||
"HyVideoReSampler",
|
"HyVideoReSampler",
|
||||||
"HyVideoSTG",
|
"HyVideoSTG",
|
||||||
"HyVideoSampler",
|
"HyVideoSampler",
|
||||||
|
"HyVideoTeaCache",
|
||||||
"HyVideoTextEmbedsLoad",
|
"HyVideoTextEmbedsLoad",
|
||||||
"HyVideoTextEmbedsSave",
|
"HyVideoTextEmbedsSave",
|
||||||
"HyVideoTextEncode",
|
"HyVideoTextEncode",
|
||||||
@@ -18467,6 +18798,15 @@
|
|||||||
"title_aux": "ComfyUI nodes to use CrossImageAttention"
|
"title_aux": "ComfyUI nodes to use CrossImageAttention"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/leeguandong/ComfyUI_FluxCustomId": [
|
||||||
|
[
|
||||||
|
"ApplyCustomIDFlux",
|
||||||
|
"CustomIDModelLoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_FluxCustomId"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/leeguandong/ComfyUI_InternVL2": [
|
"https://github.com/leeguandong/ComfyUI_InternVL2": [
|
||||||
[
|
[
|
||||||
"DynamicPreprocess",
|
"DynamicPreprocess",
|
||||||
@@ -18802,6 +19142,8 @@
|
|||||||
"https://github.com/lldacing/ComfyUI_BiRefNet_ll": [
|
"https://github.com/lldacing/ComfyUI_BiRefNet_ll": [
|
||||||
[
|
[
|
||||||
"AutoDownloadBiRefNetModel",
|
"AutoDownloadBiRefNetModel",
|
||||||
|
"BlurFusionForegroundEstimation",
|
||||||
|
"GetMaskByBiRefNet",
|
||||||
"LoadRembgByBiRefNetModel",
|
"LoadRembgByBiRefNetModel",
|
||||||
"RembgByBiRefNet",
|
"RembgByBiRefNet",
|
||||||
"RembgByBiRefNetAdvanced"
|
"RembgByBiRefNetAdvanced"
|
||||||
@@ -18916,6 +19258,7 @@
|
|||||||
[
|
[
|
||||||
"FluxModCheckpointLoader",
|
"FluxModCheckpointLoader",
|
||||||
"FluxModCheckpointLoaderMini",
|
"FluxModCheckpointLoaderMini",
|
||||||
|
"FluxModSamplerWrapper",
|
||||||
"KSamplerMod",
|
"KSamplerMod",
|
||||||
"SkipLayerForward"
|
"SkipLayerForward"
|
||||||
],
|
],
|
||||||
@@ -20696,6 +21039,16 @@
|
|||||||
"title_aux": "comfyui_dynamic_util_nodes"
|
"title_aux": "comfyui_dynamic_util_nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/muxueChen/ComfyUI_NTCosyVoice": [
|
||||||
|
[
|
||||||
|
"NTCosyVoiceCrossLingualSampler",
|
||||||
|
"NTCosyVoiceInstruct2Sampler",
|
||||||
|
"NTCosyVoiceZeroShotSampler"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "CosyVoice2 for ComfyUI"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/muzi12888/ComfyUI-PoseKeypoint-Mask": [
|
"https://github.com/muzi12888/ComfyUI-PoseKeypoint-Mask": [
|
||||||
[
|
[
|
||||||
"Image Brightness",
|
"Image Brightness",
|
||||||
@@ -21345,13 +21698,15 @@
|
|||||||
"ConditioningZeroOutCombine",
|
"ConditioningZeroOutCombine",
|
||||||
"ConvertTimestepToSigma",
|
"ConvertTimestepToSigma",
|
||||||
"DynSamplerSelect",
|
"DynSamplerSelect",
|
||||||
|
"DynamicThresholdingSimplePost",
|
||||||
"EmptyLatentImageAR",
|
"EmptyLatentImageAR",
|
||||||
"FreeU2PPM",
|
"FreeU2PPM",
|
||||||
"Guidance Limiter",
|
"Guidance Limiter",
|
||||||
"LatentOperationTonemapLuminance",
|
"LatentOperationTonemapLuminance",
|
||||||
"LatentToMaskBB",
|
"LatentToMaskBB",
|
||||||
"LatentToWidthHeight",
|
"LatentToWidthHeight",
|
||||||
"PPMSamplerSelect"
|
"PPMSamplerSelect",
|
||||||
|
"RescaleCFGPost"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-ppm"
|
"title_aux": "ComfyUI-ppm"
|
||||||
@@ -21379,6 +21734,14 @@
|
|||||||
"title_aux": "sd-perturbed-attention"
|
"title_aux": "sd-perturbed-attention"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/pandaer119/ComfyUI_pandai": [
|
||||||
|
[
|
||||||
|
"pandai_dsk_node"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_pandai"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/pants007/comfy-pants": [
|
"https://github.com/pants007/comfy-pants": [
|
||||||
[
|
[
|
||||||
"CLIPTextEncodeAIO",
|
"CLIPTextEncodeAIO",
|
||||||
@@ -21457,6 +21820,16 @@
|
|||||||
"title_aux": "\u2728 Clarity AI - Creative Image Upscaler and Enhancer for ComfyUI"
|
"title_aux": "\u2728 Clarity AI - Creative Image Upscaler and Enhancer for ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/phuvinh010701/ComfyUI-Nudenet": [
|
||||||
|
[
|
||||||
|
"ApplyNudenet",
|
||||||
|
"FilterdLabel",
|
||||||
|
"NudenetModelLoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Nudenet"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/phyblas/paint-by-example_comfyui": [
|
"https://github.com/phyblas/paint-by-example_comfyui": [
|
||||||
[
|
[
|
||||||
"PaintbyExampleAdvanced",
|
"PaintbyExampleAdvanced",
|
||||||
@@ -21522,10 +21895,6 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/playbook3d/playbook3d-comfyui-nodes": [
|
"https://github.com/playbook3d/playbook3d-comfyui-nodes": [
|
||||||
[
|
[
|
||||||
"Beauty Pass Sequence",
|
|
||||||
"Depth Pass Sequence",
|
|
||||||
"Mask Pass Sequence",
|
|
||||||
"Outline Pass Sequence",
|
|
||||||
"Playbook Beauty",
|
"Playbook Beauty",
|
||||||
"Playbook Beauty Sequence",
|
"Playbook Beauty Sequence",
|
||||||
"Playbook Boolean",
|
"Playbook Boolean",
|
||||||
@@ -22596,6 +22965,24 @@
|
|||||||
"title_aux": "ComfyUI_Nimbus-Pack"
|
"title_aux": "ComfyUI_Nimbus-Pack"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/sh570655308/ComfyUI-GigapixelAI": [
|
||||||
|
[
|
||||||
|
"GigapixelAI",
|
||||||
|
"GigapixelModelSettings",
|
||||||
|
"GigapixelUpscaleSettings"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-GigapixelAI"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/sh570655308/ComfyUI-TopazVideoAI": [
|
||||||
|
[
|
||||||
|
"TopazVideoAI"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-TopazVideoAI"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/shadowcz007/comfyui-Image-reward": [
|
"https://github.com/shadowcz007/comfyui-Image-reward": [
|
||||||
[
|
[
|
||||||
"ImageBatchToList_",
|
"ImageBatchToList_",
|
||||||
@@ -23156,9 +23543,7 @@
|
|||||||
"https://github.com/smthemex/ComfyUI_EchoMimic": [
|
"https://github.com/smthemex/ComfyUI_EchoMimic": [
|
||||||
[
|
[
|
||||||
"Echo_LoadModel",
|
"Echo_LoadModel",
|
||||||
"Echo_Sampler",
|
"Echo_Sampler"
|
||||||
"Echo_Upscaleloader",
|
|
||||||
"Echo_VideoUpscale"
|
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI_EchoMimic"
|
"title_aux": "ComfyUI_EchoMimic"
|
||||||
@@ -23630,16 +24015,6 @@
|
|||||||
"title_aux": "Latent Mirror node for ComfyUI"
|
"title_aux": "Latent Mirror node for ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale": [
|
|
||||||
[
|
|
||||||
"UltimateSDUpscale",
|
|
||||||
"UltimateSDUpscaleCustomSample",
|
|
||||||
"UltimateSDUpscaleNoUpscale"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "UltimateSDUpscale"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/ssitu/ComfyUI_fabric": [
|
"https://github.com/ssitu/ComfyUI_fabric": [
|
||||||
[
|
[
|
||||||
"FABRICPatchModel",
|
"FABRICPatchModel",
|
||||||
@@ -24422,6 +24797,14 @@
|
|||||||
"title_aux": "comfyui-webcam-node"
|
"title_aux": "comfyui-webcam-node"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/umiyuki/comfyui-pad-to-eight": [
|
||||||
|
[
|
||||||
|
"Pad To Eight"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI Pad To Eight"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/un-seen/comfyui-tensorops": [
|
"https://github.com/un-seen/comfyui-tensorops": [
|
||||||
[
|
[
|
||||||
"BackgroundSelect",
|
"BackgroundSelect",
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import os
|
|||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
import git
|
import git
|
||||||
import configparser
|
|
||||||
import json
|
import json
|
||||||
import yaml
|
import yaml
|
||||||
import requests
|
import requests
|
||||||
@@ -13,13 +12,13 @@ from git.remote import RemoteProgress
|
|||||||
|
|
||||||
|
|
||||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||||
|
git_exe_path = os.environ.get('GIT_EXE_PATH')
|
||||||
|
|
||||||
if comfy_path is None:
|
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)
|
print("\nWARN: The `COMFYUI_PATH` environment variable is not set. Assuming `custom_nodes/ComfyUI-Manager/../../` as the ComfyUI path.", file=sys.stderr)
|
||||||
comfy_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
|
comfy_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def download_url(url, dest_folder, filename=None):
|
def download_url(url, dest_folder, filename=None):
|
||||||
# Ensure the destination folder exists
|
# Ensure the destination folder exists
|
||||||
if not os.path.exists(dest_folder):
|
if not os.path.exists(dest_folder):
|
||||||
@@ -43,7 +42,6 @@ def download_url(url, dest_folder, filename=None):
|
|||||||
print(f"Failed to download file from {url}")
|
print(f"Failed to download file from {url}")
|
||||||
|
|
||||||
|
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json")
|
nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json")
|
||||||
working_directory = os.getcwd()
|
working_directory = os.getcwd()
|
||||||
|
|
||||||
@@ -127,8 +125,17 @@ def gitcheck(path, do_fetch=False):
|
|||||||
|
|
||||||
|
|
||||||
def switch_to_default_branch(repo):
|
def switch_to_default_branch(repo):
|
||||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
try:
|
||||||
repo.git.checkout(default_branch)
|
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
||||||
|
repo.git.checkout(default_branch)
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
repo.git.checkout(repo.heads.master)
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
repo.git.checkout('-b', 'master', 'origin/master')
|
||||||
|
except:
|
||||||
|
print("[ComfyUI Manager] Failed to switch to the default branch")
|
||||||
|
|
||||||
|
|
||||||
def gitpull(path):
|
def gitpull(path):
|
||||||
@@ -431,10 +438,8 @@ def restore_pip_snapshot(pips, options):
|
|||||||
|
|
||||||
|
|
||||||
def setup_environment():
|
def setup_environment():
|
||||||
config = configparser.ConfigParser()
|
if git_exe_path is not None:
|
||||||
config.read(config_path)
|
git.Git().update_environment(GIT_PYTHON_GIT_EXECUTABLE=git_exe_path)
|
||||||
if 'default' in config and 'git_exe' in config['default'] and config['default']['git_exe'] != '':
|
|
||||||
git.Git().update_environment(GIT_PYTHON_GIT_EXECUTABLE=config['default']['git_exe'])
|
|
||||||
|
|
||||||
|
|
||||||
setup_environment()
|
setup_environment()
|
||||||
|
|||||||
4819
github-stats.json
4819
github-stats.json
File diff suppressed because it is too large
Load Diff
@@ -92,7 +92,7 @@ def install_node(node_id, version=None):
|
|||||||
|
|
||||||
|
|
||||||
def all_versions_of_node(node_id):
|
def all_versions_of_node(node_id):
|
||||||
url = f"https://api.comfy.org/nodes/{node_id}/versions"
|
url = f"https://api.comfy.org/nodes/{node_id}/versions?statuses=NodeVersionStatusActive&statuses=NodeVersionStatusPending"
|
||||||
|
|
||||||
response = requests.get(url)
|
response = requests.get(url)
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
@@ -129,3 +129,26 @@ def read_cnr_info(fullpath):
|
|||||||
return None
|
return None
|
||||||
except Exception:
|
except Exception:
|
||||||
return None # not valid CNR node pack
|
return None # not valid CNR node pack
|
||||||
|
|
||||||
|
|
||||||
|
def generate_cnr_id(fullpath, cnr_id):
|
||||||
|
cnr_id_path = os.path.join(fullpath, '.git', '.cnr-id')
|
||||||
|
try:
|
||||||
|
if not os.path.exists(cnr_id_path):
|
||||||
|
with open(cnr_id_path, "w") as f:
|
||||||
|
return f.write(cnr_id)
|
||||||
|
except:
|
||||||
|
print(f"[ComfyUI Manager] unable to create file: {cnr_id_path}")
|
||||||
|
|
||||||
|
|
||||||
|
def read_cnr_id(fullpath):
|
||||||
|
cnr_id_path = os.path.join(fullpath, '.git', '.cnr-id')
|
||||||
|
try:
|
||||||
|
if os.path.exists(cnr_id_path):
|
||||||
|
with open(cnr_id_path) as f:
|
||||||
|
return f.read().strip()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
"""
|
||||||
|
description:
|
||||||
|
`manager_core` contains the core implementation of the management functions in ComfyUI-Manager.
|
||||||
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
@@ -36,7 +41,7 @@ import manager_downloader
|
|||||||
from node_package import InstalledNodePackage
|
from node_package import InstalledNodePackage
|
||||||
|
|
||||||
|
|
||||||
version_code = [3, 3, 2]
|
version_code = [3, 5]
|
||||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||||
|
|
||||||
|
|
||||||
@@ -45,6 +50,7 @@ DEFAULT_CHANNEL = "https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/ma
|
|||||||
|
|
||||||
default_custom_nodes_path = None
|
default_custom_nodes_path = None
|
||||||
|
|
||||||
|
|
||||||
def get_default_custom_nodes_path():
|
def get_default_custom_nodes_path():
|
||||||
global default_custom_nodes_path
|
global default_custom_nodes_path
|
||||||
if default_custom_nodes_path is None:
|
if default_custom_nodes_path is None:
|
||||||
@@ -74,6 +80,16 @@ def get_comfyui_tag():
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def get_script_env():
|
||||||
|
copied = 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
|
||||||
|
|
||||||
|
return copied
|
||||||
|
|
||||||
|
|
||||||
invalid_nodes = {}
|
invalid_nodes = {}
|
||||||
|
|
||||||
|
|
||||||
@@ -150,6 +166,7 @@ manager_channel_list_path = None
|
|||||||
manager_startup_script_path = None
|
manager_startup_script_path = None
|
||||||
manager_snapshot_path = None
|
manager_snapshot_path = None
|
||||||
manager_pip_overrides_path = None
|
manager_pip_overrides_path = None
|
||||||
|
manager_components_path = None
|
||||||
|
|
||||||
def update_user_directory(user_dir):
|
def update_user_directory(user_dir):
|
||||||
global manager_files_path
|
global manager_files_path
|
||||||
@@ -158,6 +175,7 @@ def update_user_directory(user_dir):
|
|||||||
global manager_startup_script_path
|
global manager_startup_script_path
|
||||||
global manager_snapshot_path
|
global manager_snapshot_path
|
||||||
global manager_pip_overrides_path
|
global manager_pip_overrides_path
|
||||||
|
global manager_components_path
|
||||||
|
|
||||||
manager_files_path = os.path.abspath(os.path.join(user_dir, 'default', 'ComfyUI-Manager'))
|
manager_files_path = os.path.abspath(os.path.join(user_dir, 'default', 'ComfyUI-Manager'))
|
||||||
if not os.path.exists(manager_files_path):
|
if not os.path.exists(manager_files_path):
|
||||||
@@ -174,6 +192,11 @@ def update_user_directory(user_dir):
|
|||||||
manager_config_path = os.path.join(manager_files_path, 'config.ini')
|
manager_config_path = os.path.join(manager_files_path, 'config.ini')
|
||||||
manager_channel_list_path = os.path.join(manager_files_path, 'channels.list')
|
manager_channel_list_path = os.path.join(manager_files_path, 'channels.list')
|
||||||
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
||||||
|
manager_components_path = os.path.join(manager_files_path, "components")
|
||||||
|
manager_util.cache_dir = os.path.join(manager_files_path, "cache")
|
||||||
|
|
||||||
|
if not os.path.exists(manager_util.cache_dir):
|
||||||
|
os.makedirs(manager_util.cache_dir)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import folder_paths
|
import folder_paths
|
||||||
@@ -260,6 +283,27 @@ def is_installed(name):
|
|||||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
pkg = manager_util.get_installed_packages().get(name.lower())
|
||||||
|
if pkg is None:
|
||||||
|
return False # update if not installed
|
||||||
|
|
||||||
|
if match is None:
|
||||||
|
return True # don't update if version is not specified
|
||||||
|
|
||||||
|
if match.group(2) in ['>', '>=']:
|
||||||
|
if manager_util.StrictVersion(pkg) < manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
elif manager_util.StrictVersion(pkg) > manager_util.StrictVersion(match.group(3)):
|
||||||
|
print(f"[SKIP] Downgrading pip package isn't allowed: {name.lower()} (cur={pkg})")
|
||||||
|
|
||||||
|
if match.group(2) == '==':
|
||||||
|
if manager_util.StrictVersion(pkg) < manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
|
if match.group(2) == '~=':
|
||||||
|
if manager_util.StrictVersion(pkg) == manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
return name.lower() in manager_util.get_installed_packages()
|
return name.lower() in manager_util.get_installed_packages()
|
||||||
|
|
||||||
|
|
||||||
@@ -433,6 +477,7 @@ class UnifiedManager:
|
|||||||
cnr = self.get_cnr_by_repo(url)
|
cnr = self.get_cnr_by_repo(url)
|
||||||
commit_hash = git_utils.get_commit_hash(fullpath)
|
commit_hash = git_utils.get_commit_hash(fullpath)
|
||||||
if cnr:
|
if cnr:
|
||||||
|
cnr_utils.generate_cnr_id(fullpath, cnr['id'])
|
||||||
return {'id': cnr['id'], 'cnr': cnr, 'ver': 'nightly', 'hash': commit_hash}
|
return {'id': cnr['id'], 'cnr': cnr, 'ver': 'nightly', 'hash': commit_hash}
|
||||||
else:
|
else:
|
||||||
url = os.path.basename(url)
|
url = os.path.basename(url)
|
||||||
@@ -659,7 +704,7 @@ class UnifiedManager:
|
|||||||
res = {}
|
res = {}
|
||||||
|
|
||||||
channel_url = normalize_channel(channel)
|
channel_url = normalize_channel(channel)
|
||||||
if channel:
|
if channel_url:
|
||||||
if mode not in ['remote', 'local', 'cache']:
|
if mode not in ['remote', 'local', 'cache']:
|
||||||
print(f"[bold red]ERROR: Invalid mode is specified `--mode {mode}`[/bold red]", file=sys.stderr)
|
print(f"[bold red]ERROR: Invalid mode is specified `--mode {mode}`[/bold red]", file=sys.stderr)
|
||||||
return {}
|
return {}
|
||||||
@@ -1234,6 +1279,8 @@ class UnifiedManager:
|
|||||||
return ManagedResult('skip').with_msg('Up to date')
|
return ManagedResult('skip').with_msg('Up to date')
|
||||||
|
|
||||||
def unified_update(self, node_id, version_spec=None, instant_execution=False, no_deps=False, return_postinstall=False):
|
def unified_update(self, node_id, version_spec=None, instant_execution=False, no_deps=False, return_postinstall=False):
|
||||||
|
orig_print(f"\x1b[2K\rUpdating: {node_id}", end='')
|
||||||
|
|
||||||
if version_spec is None:
|
if version_spec is None:
|
||||||
version_spec = self.resolve_unspecified_version(node_id, guess_mode='active')
|
version_spec = self.resolve_unspecified_version(node_id, guess_mode='active')
|
||||||
|
|
||||||
@@ -1292,6 +1339,7 @@ class UnifiedManager:
|
|||||||
if version_spec == 'unknown':
|
if version_spec == 'unknown':
|
||||||
self.unknown_active_nodes[node_id] = to_path
|
self.unknown_active_nodes[node_id] = to_path
|
||||||
elif version_spec == 'nightly':
|
elif version_spec == 'nightly':
|
||||||
|
cnr_utils.generate_cnr_id(to_path, node_id)
|
||||||
self.active_nodes[node_id] = 'nightly', to_path
|
self.active_nodes[node_id] = 'nightly', to_path
|
||||||
|
|
||||||
return res.with_target(version_spec)
|
return res.with_target(version_spec)
|
||||||
@@ -1344,6 +1392,63 @@ class UnifiedManager:
|
|||||||
unified_manager = UnifiedManager()
|
unified_manager = UnifiedManager()
|
||||||
|
|
||||||
|
|
||||||
|
def identify_node_pack_from_path(fullpath):
|
||||||
|
module_name = os.path.basename(fullpath)
|
||||||
|
if module_name.endswith('.git'):
|
||||||
|
module_name = module_name[:-4]
|
||||||
|
|
||||||
|
repo_url = git_utils.git_url(fullpath)
|
||||||
|
if repo_url is None:
|
||||||
|
# cnr
|
||||||
|
cnr = cnr_utils.read_cnr_info(fullpath)
|
||||||
|
if cnr is not None:
|
||||||
|
return module_name, cnr['version'], cnr['id']
|
||||||
|
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
# nightly or unknown
|
||||||
|
cnr_id = cnr_utils.read_cnr_id(fullpath)
|
||||||
|
commit_hash = git_utils.get_commit_hash(fullpath)
|
||||||
|
|
||||||
|
if cnr_id is not None:
|
||||||
|
return module_name, commit_hash, cnr_id
|
||||||
|
else:
|
||||||
|
return module_name, commit_hash, ''
|
||||||
|
|
||||||
|
|
||||||
|
def get_installed_node_packs():
|
||||||
|
res = {}
|
||||||
|
|
||||||
|
for x in get_custom_nodes_paths():
|
||||||
|
for y in os.listdir(x):
|
||||||
|
if y == '__pycache__' or y == '.disabled':
|
||||||
|
continue
|
||||||
|
|
||||||
|
fullpath = os.path.join(x, y)
|
||||||
|
info = identify_node_pack_from_path(fullpath)
|
||||||
|
if info is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
is_disabled = not y.endswith('.disabled')
|
||||||
|
|
||||||
|
res[info[0]] = { 'ver': info[1], 'cnr_id': info[2], 'enabled': is_disabled }
|
||||||
|
|
||||||
|
disabled_dirs = os.path.join(x, '.disabled')
|
||||||
|
if os.path.exists(disabled_dirs):
|
||||||
|
for y in os.listdir(disabled_dirs):
|
||||||
|
if y == '__pycache__':
|
||||||
|
continue
|
||||||
|
|
||||||
|
fullpath = os.path.join(disabled_dirs, y)
|
||||||
|
info = identify_node_pack_from_path(fullpath)
|
||||||
|
if info is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
res[info[0]] = { 'ver': info[1], 'cnr_id': info[2], 'enabled': False }
|
||||||
|
|
||||||
|
return res
|
||||||
|
|
||||||
|
|
||||||
def get_channel_dict():
|
def get_channel_dict():
|
||||||
global channel_dict
|
global channel_dict
|
||||||
|
|
||||||
@@ -1386,9 +1491,7 @@ class ManagerFuncs:
|
|||||||
print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
new_env = os.environ.copy()
|
subprocess.check_call(cmd, cwd=cwd, env=get_script_env())
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
|
||||||
subprocess.check_call(cmd, cwd=cwd, env=new_env)
|
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
@@ -1400,7 +1503,6 @@ def write_config():
|
|||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config['default'] = {
|
config['default'] = {
|
||||||
'preview_method': manager_funcs.get_current_preview_method(),
|
'preview_method': manager_funcs.get_current_preview_method(),
|
||||||
'badge_mode': get_config()['badge_mode'],
|
|
||||||
'git_exe': get_config()['git_exe'],
|
'git_exe': get_config()['git_exe'],
|
||||||
'channel_url': get_config()['channel_url'],
|
'channel_url': get_config()['channel_url'],
|
||||||
'share_option': get_config()['share_option'],
|
'share_option': get_config()['share_option'],
|
||||||
@@ -1441,7 +1543,6 @@ def read_config():
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
'preview_method': default_conf['preview_method'] if 'preview_method' in default_conf else manager_funcs.get_current_preview_method(),
|
'preview_method': default_conf['preview_method'] if 'preview_method' in default_conf else manager_funcs.get_current_preview_method(),
|
||||||
'badge_mode': default_conf['badge_mode'] if 'badge_mode' in default_conf else 'none',
|
|
||||||
'git_exe': default_conf['git_exe'] if 'git_exe' in default_conf else '',
|
'git_exe': default_conf['git_exe'] if 'git_exe' in default_conf else '',
|
||||||
'channel_url': default_conf['channel_url'] if 'channel_url' in default_conf else DEFAULT_CHANNEL,
|
'channel_url': default_conf['channel_url'] if 'channel_url' in default_conf else DEFAULT_CHANNEL,
|
||||||
'share_option': default_conf['share_option'] if 'share_option' in default_conf else 'all',
|
'share_option': default_conf['share_option'] if 'share_option' in default_conf else 'all',
|
||||||
@@ -1460,7 +1561,6 @@ def read_config():
|
|||||||
except Exception:
|
except Exception:
|
||||||
return {
|
return {
|
||||||
'preview_method': manager_funcs.get_current_preview_method(),
|
'preview_method': manager_funcs.get_current_preview_method(),
|
||||||
'badge_mode': 'none',
|
|
||||||
'git_exe': '',
|
'git_exe': '',
|
||||||
'channel_url': DEFAULT_CHANNEL,
|
'channel_url': DEFAULT_CHANNEL,
|
||||||
'share_option': 'all',
|
'share_option': 'all',
|
||||||
@@ -1487,8 +1587,17 @@ def get_config():
|
|||||||
|
|
||||||
|
|
||||||
def switch_to_default_branch(repo):
|
def switch_to_default_branch(repo):
|
||||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
try:
|
||||||
repo.git.checkout(default_branch)
|
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
||||||
|
repo.git.checkout(default_branch)
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
repo.git.checkout(repo.heads.master)
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
repo.git.checkout('-b', 'master', 'origin/master')
|
||||||
|
except:
|
||||||
|
print("[ComfyUI Manager] Failed to switch to the default branch")
|
||||||
|
|
||||||
|
|
||||||
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
||||||
@@ -1539,9 +1648,8 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
|||||||
else:
|
else:
|
||||||
command = [sys.executable, git_script_path, "--check", path]
|
command = [sys.executable, git_script_path, "--check", path]
|
||||||
|
|
||||||
new_env = os.environ.copy()
|
new_env = get_script_env()
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=get_default_custom_nodes_path(), env=new_env)
|
||||||
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=get_default_custom_nodes_path())
|
|
||||||
output, _ = process.communicate()
|
output, _ = process.communicate()
|
||||||
output = output.decode('utf-8').strip()
|
output = output.decode('utf-8').strip()
|
||||||
|
|
||||||
@@ -1592,10 +1700,8 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
|||||||
|
|
||||||
|
|
||||||
def __win_check_git_pull(path):
|
def __win_check_git_pull(path):
|
||||||
new_env = os.environ.copy()
|
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
|
||||||
command = [sys.executable, git_script_path, "--pull", path]
|
command = [sys.executable, git_script_path, "--pull", path]
|
||||||
process = subprocess.Popen(command, env=new_env, cwd=get_default_custom_nodes_path())
|
process = subprocess.Popen(command, env=get_script_env(), cwd=get_default_custom_nodes_path())
|
||||||
process.wait()
|
process.wait()
|
||||||
|
|
||||||
|
|
||||||
@@ -1695,7 +1801,7 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
|||||||
|
|
||||||
if do_update:
|
if do_update:
|
||||||
if repo.is_dirty():
|
if repo.is_dirty():
|
||||||
print(f"STASH: '{path}' is dirty.")
|
print(f"\nSTASH: '{path}' is dirty.")
|
||||||
repo.git.stash()
|
repo.git.stash()
|
||||||
|
|
||||||
if f'{remote_name}/{branch_name}' not in repo.refs:
|
if f'{remote_name}/{branch_name}' not in repo.refs:
|
||||||
@@ -2946,7 +3052,7 @@ def get_comfyui_versions():
|
|||||||
versions = sorted(versions + [current_tag], reverse=True)
|
versions = sorted(versions + [current_tag], reverse=True)
|
||||||
versions = versions[:4]
|
versions = versions[:4]
|
||||||
|
|
||||||
main_branch = repo.heads.main
|
main_branch = repo.heads.master
|
||||||
latest_commit = main_branch.commit
|
latest_commit = main_branch.commit
|
||||||
latest_tag = repo.git.describe('--tags', latest_commit.hexsha)
|
latest_tag = repo.git.describe('--tags', latest_commit.hexsha)
|
||||||
|
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ class ManagerFuncsInComfyUI(core.ManagerFuncs):
|
|||||||
logging.error(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
logging.error(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
process = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, bufsize=1)
|
process = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, bufsize=1, env=core.get_script_env())
|
||||||
|
|
||||||
stdout_thread = threading.Thread(target=handle_stream, args=(process.stdout, ""))
|
stdout_thread = threading.Thread(target=handle_stream, args=(process.stdout, ""))
|
||||||
stderr_thread = threading.Thread(target=handle_stream, args=(process.stderr, "[!]"))
|
stderr_thread = threading.Thread(target=handle_stream, args=(process.stderr, "[!]"))
|
||||||
@@ -135,7 +135,6 @@ local_db_model = os.path.join(manager_util.comfyui_manager_path, "model-list.jso
|
|||||||
local_db_alter = os.path.join(manager_util.comfyui_manager_path, "alter-list.json")
|
local_db_alter = os.path.join(manager_util.comfyui_manager_path, "alter-list.json")
|
||||||
local_db_custom_node_list = os.path.join(manager_util.comfyui_manager_path, "custom-node-list.json")
|
local_db_custom_node_list = os.path.join(manager_util.comfyui_manager_path, "custom-node-list.json")
|
||||||
local_db_extension_node_mappings = os.path.join(manager_util.comfyui_manager_path, "extension-node-map.json")
|
local_db_extension_node_mappings = os.path.join(manager_util.comfyui_manager_path, "extension-node-map.json")
|
||||||
components_path = os.path.join(manager_util.comfyui_manager_path, 'components')
|
|
||||||
|
|
||||||
|
|
||||||
def set_preview_method(method):
|
def set_preview_method(method):
|
||||||
@@ -154,10 +153,6 @@ def set_preview_method(method):
|
|||||||
set_preview_method(core.get_config()['preview_method'])
|
set_preview_method(core.get_config()['preview_method'])
|
||||||
|
|
||||||
|
|
||||||
def set_badge_mode(mode):
|
|
||||||
core.get_config()['badge_mode'] = mode
|
|
||||||
|
|
||||||
|
|
||||||
def set_default_ui_mode(mode):
|
def set_default_ui_mode(mode):
|
||||||
core.get_config()['default_ui'] = mode
|
core.get_config()['default_ui'] = mode
|
||||||
|
|
||||||
@@ -542,17 +537,18 @@ def populate_markdown(x):
|
|||||||
x['title'] = manager_util.sanitize_tag(x['title'])
|
x['title'] = manager_util.sanitize_tag(x['title'])
|
||||||
|
|
||||||
|
|
||||||
|
# freeze imported version
|
||||||
|
startup_time_installed_node_packs = core.get_installed_node_packs()
|
||||||
@routes.get("/customnode/installed")
|
@routes.get("/customnode/installed")
|
||||||
async def installed_list(request):
|
async def installed_list(request):
|
||||||
unified_manager = core.unified_manager
|
mode = request.query.get('mode', 'default')
|
||||||
|
|
||||||
await unified_manager.reload('cache')
|
if mode == 'imported':
|
||||||
await unified_manager.get_custom_nodes('default', 'cache')
|
res = startup_time_installed_node_packs
|
||||||
|
else:
|
||||||
|
res = core.get_installed_node_packs()
|
||||||
|
|
||||||
return web.json_response({
|
return web.json_response(res, content_type='application/json')
|
||||||
node_id: package.version if package.is_from_cnr else package.get_commit_hash()
|
|
||||||
for node_id, package in unified_manager.installed_node_packages.items() if not package.disabled
|
|
||||||
}, content_type='application/json')
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/customnode/getlist")
|
@routes.get("/customnode/getlist")
|
||||||
@@ -821,7 +817,7 @@ async def get_cnr_versions(request):
|
|||||||
node_name = request.match_info.get("node_name", None)
|
node_name = request.match_info.get("node_name", None)
|
||||||
versions = core.cnr_utils.all_versions_of_node(node_name)
|
versions = core.cnr_utils.all_versions_of_node(node_name)
|
||||||
|
|
||||||
if versions:
|
if versions is not None:
|
||||||
return web.json_response(versions, content_type='application/json')
|
return web.json_response(versions, content_type='application/json')
|
||||||
|
|
||||||
return web.Response(status=400)
|
return web.Response(status=400)
|
||||||
@@ -1154,17 +1150,6 @@ async def preview_method(request):
|
|||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/badge_mode")
|
|
||||||
async def badge_mode(request):
|
|
||||||
if "value" in request.rel_url.query:
|
|
||||||
set_badge_mode(request.rel_url.query['value'])
|
|
||||||
core.write_config()
|
|
||||||
else:
|
|
||||||
return web.Response(text=core.get_config()['badge_mode'], status=200)
|
|
||||||
|
|
||||||
return web.Response(status=200)
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/default_ui")
|
@routes.get("/manager/default_ui")
|
||||||
async def default_ui_mode(request):
|
async def default_ui_mode(request):
|
||||||
if "value" in request.rel_url.query:
|
if "value" in request.rel_url.query:
|
||||||
@@ -1302,9 +1287,13 @@ def restart(self):
|
|||||||
sys_argv.remove('--windows-standalone-build')
|
sys_argv.remove('--windows-standalone-build')
|
||||||
|
|
||||||
if sys.platform.startswith('win32'):
|
if sys.platform.startswith('win32'):
|
||||||
return os.execv(sys.executable, ['"' + sys.executable + '"', '"' + sys_argv[0] + '"'] + sys_argv[1:])
|
cmds = ['"' + sys.executable + '"', '"' + sys_argv[0] + '"'] + sys_argv[1:]
|
||||||
else:
|
else:
|
||||||
return os.execv(sys.executable, [sys.executable] + sys_argv)
|
cmds = [sys.executable] + sys_argv
|
||||||
|
|
||||||
|
print(f"Command: {cmds}", flush=True)
|
||||||
|
|
||||||
|
return os.execv(sys.executable, cmds)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/manager/component/save")
|
@routes.post("/manager/component/save")
|
||||||
@@ -1314,15 +1303,15 @@ async def save_component(request):
|
|||||||
name = data['name']
|
name = data['name']
|
||||||
workflow = data['workflow']
|
workflow = data['workflow']
|
||||||
|
|
||||||
if not os.path.exists(components_path):
|
if not os.path.exists(core.manager_components_path):
|
||||||
os.mkdir(components_path)
|
os.mkdir(core.manager_components_path)
|
||||||
|
|
||||||
if 'packname' in workflow and workflow['packname'] != '':
|
if 'packname' in workflow and workflow['packname'] != '':
|
||||||
sanitized_name = manager_util.sanitize_filename(workflow['packname']) + '.pack'
|
sanitized_name = manager_util.sanitize_filename(workflow['packname']) + '.pack'
|
||||||
else:
|
else:
|
||||||
sanitized_name = manager_util.sanitize_filename(name) + '.json'
|
sanitized_name = manager_util.sanitize_filename(name) + '.json'
|
||||||
|
|
||||||
filepath = os.path.join(components_path, sanitized_name)
|
filepath = os.path.join(core.manager_components_path, sanitized_name)
|
||||||
components = {}
|
components = {}
|
||||||
if os.path.exists(filepath):
|
if os.path.exists(filepath):
|
||||||
with open(filepath) as f:
|
with open(filepath) as f:
|
||||||
@@ -1339,24 +1328,27 @@ async def save_component(request):
|
|||||||
|
|
||||||
@routes.post("/manager/component/loads")
|
@routes.post("/manager/component/loads")
|
||||||
async def load_components(request):
|
async def load_components(request):
|
||||||
try:
|
if os.path.exists(core.manager_components_path):
|
||||||
json_files = [f for f in os.listdir(components_path) if f.endswith('.json')]
|
try:
|
||||||
pack_files = [f for f in os.listdir(components_path) if f.endswith('.pack')]
|
json_files = [f for f in os.listdir(core.manager_components_path) if f.endswith('.json')]
|
||||||
|
pack_files = [f for f in os.listdir(core.manager_components_path) if f.endswith('.pack')]
|
||||||
|
|
||||||
components = {}
|
components = {}
|
||||||
for json_file in json_files + pack_files:
|
for json_file in json_files + pack_files:
|
||||||
file_path = os.path.join(components_path, json_file)
|
file_path = os.path.join(core.manager_components_path, json_file)
|
||||||
with open(file_path, 'r') as file:
|
with open(file_path, 'r') as file:
|
||||||
try:
|
try:
|
||||||
# When there is a conflict between the .pack and the .json, the pack takes precedence and overrides.
|
# When there is a conflict between the .pack and the .json, the pack takes precedence and overrides.
|
||||||
components.update(json.load(file))
|
components.update(json.load(file))
|
||||||
except json.JSONDecodeError as e:
|
except json.JSONDecodeError as e:
|
||||||
logging.error(f"[ComfyUI-Manager] Error decoding component file in file {json_file}: {e}")
|
logging.error(f"[ComfyUI-Manager] Error decoding component file in file {json_file}: {e}")
|
||||||
|
|
||||||
return web.json_response(components)
|
return web.json_response(components)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error(f"[ComfyUI-Manager] failed to load components\n{e}")
|
logging.error(f"[ComfyUI-Manager] failed to load components\n{e}")
|
||||||
return web.Response(status=400)
|
return web.Response(status=400)
|
||||||
|
else:
|
||||||
|
return web.json_response({})
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/version")
|
@routes.get("/manager/version")
|
||||||
@@ -1414,7 +1406,6 @@ async def default_cache_update():
|
|||||||
# else:
|
# else:
|
||||||
# logging.info("[ComfyUI-Manager] Migration check is skipped...")
|
# logging.info("[ComfyUI-Manager] Migration check is skipped...")
|
||||||
|
|
||||||
|
|
||||||
threading.Thread(target=lambda: asyncio.run(default_cache_update())).start()
|
threading.Thread(target=lambda: asyncio.run(default_cache_update())).start()
|
||||||
|
|
||||||
if not os.path.exists(core.manager_config_path):
|
if not os.path.exists(core.manager_config_path):
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
"""
|
||||||
|
description:
|
||||||
|
`manager_util` is the lightest module shared across the prestartup_script, main code, and cm-cli of ComfyUI-Manager.
|
||||||
|
"""
|
||||||
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import json
|
import json
|
||||||
import threading
|
import threading
|
||||||
@@ -10,7 +15,7 @@ import re
|
|||||||
cache_lock = threading.Lock()
|
cache_lock = threading.Lock()
|
||||||
|
|
||||||
comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
||||||
cache_dir = os.path.join(comfyui_manager_path, '.cache')
|
cache_dir = os.path.join(comfyui_manager_path, '.cache') # This path is also updated together in **manager_core.update_user_directory**.
|
||||||
|
|
||||||
|
|
||||||
# DON'T USE StrictVersion - cannot handle pre_release version
|
# DON'T USE StrictVersion - cannot handle pre_release version
|
||||||
|
|||||||
@@ -103,24 +103,6 @@ docStyle.innerHTML = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cm-channel-badge {
|
|
||||||
color: white;
|
|
||||||
background-color: #AA0000;
|
|
||||||
width: 220px;
|
|
||||||
height: 23px;
|
|
||||||
font-size: 13px;
|
|
||||||
border-radius: 5px;
|
|
||||||
left: 5px;
|
|
||||||
top: 5px;
|
|
||||||
align-content: center;
|
|
||||||
justify-content: center;
|
|
||||||
text-align: center;
|
|
||||||
font-weight: bold;
|
|
||||||
float: left;
|
|
||||||
vertical-align: middle;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-nodes-grid a {
|
#custom-nodes-grid a {
|
||||||
color: #5555FF;
|
color: #5555FF;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@@ -244,7 +226,6 @@ var update_comfyui_button = null;
|
|||||||
var switch_comfyui_button = null;
|
var switch_comfyui_button = null;
|
||||||
var fetch_updates_button = null;
|
var fetch_updates_button = null;
|
||||||
var update_all_button = null;
|
var update_all_button = null;
|
||||||
var badge_mode = "none";
|
|
||||||
let share_option = 'all';
|
let share_option = 'all';
|
||||||
|
|
||||||
// copied style from https://github.com/pythongosssss/ComfyUI-Custom-Scripts
|
// copied style from https://github.com/pythongosssss/ComfyUI-Custom-Scripts
|
||||||
@@ -426,14 +407,6 @@ const style = `
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
async function init_badge_mode() {
|
|
||||||
api.fetchApi('/manager/badge_mode')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(data => { badge_mode = data; })
|
|
||||||
}
|
|
||||||
|
|
||||||
async function init_share_option() {
|
async function init_share_option() {
|
||||||
api.fetchApi('/manager/share_option')
|
api.fetchApi('/manager/share_option')
|
||||||
.then(response => response.text())
|
.then(response => response.text())
|
||||||
@@ -450,7 +423,6 @@ async function init_notice(notice) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
await init_badge_mode();
|
|
||||||
await init_share_option();
|
await init_share_option();
|
||||||
|
|
||||||
async function fetchNicknames() {
|
async function fetchNicknames() {
|
||||||
@@ -517,65 +489,6 @@ function getNickname(node, nodename) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function drawBadge(node, orig, restArgs) {
|
|
||||||
let ctx = restArgs[0];
|
|
||||||
const r = orig?.apply?.(node, restArgs);
|
|
||||||
|
|
||||||
if (!node.flags.collapsed && badge_mode != 'none' && node.constructor.title_mode != LiteGraph.NO_TITLE) {
|
|
||||||
let text = "";
|
|
||||||
if (badge_mode.startsWith('id_nick'))
|
|
||||||
text = `#${node.id} `;
|
|
||||||
|
|
||||||
let nick = node.getNickname();
|
|
||||||
if (nick) {
|
|
||||||
if (nick == 'ComfyUI') {
|
|
||||||
if(badge_mode.endsWith('hide')) {
|
|
||||||
nick = "";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
nick = "🦊"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nick.length > 25) {
|
|
||||||
text += nick.substring(0, 23) + "..";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
text += nick;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (text != "") {
|
|
||||||
let fgColor = "white";
|
|
||||||
let bgColor = "#0F1F0F";
|
|
||||||
let visible = true;
|
|
||||||
|
|
||||||
ctx.save();
|
|
||||||
ctx.font = "12px sans-serif";
|
|
||||||
const sz = ctx.measureText(text);
|
|
||||||
ctx.fillStyle = bgColor;
|
|
||||||
ctx.beginPath();
|
|
||||||
ctx.roundRect(node.size[0] - sz.width - 12, -LiteGraph.NODE_TITLE_HEIGHT - 20, sz.width + 12, 20, 5);
|
|
||||||
ctx.fill();
|
|
||||||
|
|
||||||
ctx.fillStyle = fgColor;
|
|
||||||
ctx.fillText(text, node.size[0] - sz.width - 6, -LiteGraph.NODE_TITLE_HEIGHT - 6);
|
|
||||||
ctx.restore();
|
|
||||||
|
|
||||||
if (node.has_errors) {
|
|
||||||
ctx.save();
|
|
||||||
ctx.font = "bold 14px sans-serif";
|
|
||||||
const sz2 = ctx.measureText(node.type);
|
|
||||||
ctx.fillStyle = 'white';
|
|
||||||
ctx.fillText(node.type, node.size[0] / 2 - sz2.width / 2, node.size[1] / 2);
|
|
||||||
ctx.restore();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
async function updateComfyUI() {
|
async function updateComfyUI() {
|
||||||
let prev_text = update_comfyui_button.innerText;
|
let prev_text = update_comfyui_button.innerText;
|
||||||
update_comfyui_button.innerText = "Updating ComfyUI...";
|
update_comfyui_button.innerText = "Updating ComfyUI...";
|
||||||
@@ -1069,32 +982,9 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
api.fetchApi(`/manager/preview_method?value=${event.target.value}`);
|
api.fetchApi(`/manager/preview_method?value=${event.target.value}`);
|
||||||
});
|
});
|
||||||
|
|
||||||
// nickname
|
|
||||||
let badge_combo = "";
|
|
||||||
if(is_legacy_front()) {
|
|
||||||
badge_combo = document.createElement("select");
|
|
||||||
badge_combo.setAttribute("title", "Configure the content to be displayed on the badge at the top right corner of the node. The ID is the identifier of the node. If 'hide built-in' is selected, both unknown nodes and built-in nodes will be omitted, making them indistinguishable");
|
|
||||||
badge_combo.className = "cm-menu-combo";
|
|
||||||
badge_combo.appendChild($el('option', { value: 'none', text: 'Badge: None' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'nick', text: 'Badge: Nickname' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'nick_hide', text: 'Badge: Nickname (hide built-in)' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'id_nick', text: 'Badge: #ID Nickname' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'id_nick_hide', text: 'Badge: #ID Nickname (hide built-in)' }, []));
|
|
||||||
|
|
||||||
api.fetchApi('/manager/badge_mode')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(data => { badge_combo.value = data; badge_mode = data; });
|
|
||||||
|
|
||||||
badge_combo.addEventListener('change', function (event) {
|
|
||||||
api.fetchApi(`/manager/badge_mode?value=${event.target.value}`);
|
|
||||||
badge_mode = event.target.value;
|
|
||||||
app.graph.setDirtyCanvas(true);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// channel
|
// channel
|
||||||
let channel_combo = document.createElement("select");
|
let channel_combo = document.createElement("select");
|
||||||
channel_combo.setAttribute("title", "Configure the channel for retrieving data from the Custom Node list (including missing nodes) or the Model list. Note that the badge utilizes local information.");
|
channel_combo.setAttribute("title", "Configure the channel for retrieving data from the Custom Node list (including missing nodes) or the Model list.");
|
||||||
channel_combo.className = "cm-menu-combo";
|
channel_combo.className = "cm-menu-combo";
|
||||||
api.fetchApi('/manager/channel_url_list')
|
api.fetchApi('/manager/channel_url_list')
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
@@ -1218,7 +1108,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
this.datasrc_combo,
|
this.datasrc_combo,
|
||||||
channel_combo,
|
channel_combo,
|
||||||
preview_combo,
|
preview_combo,
|
||||||
badge_combo,
|
|
||||||
default_ui_combo,
|
default_ui_combo,
|
||||||
share_combo,
|
share_combo,
|
||||||
component_policy_combo,
|
component_policy_combo,
|
||||||
@@ -1663,32 +1552,6 @@ app.registerExtension({
|
|||||||
this._addExtraNodeContextMenu(nodeType, app);
|
this._addExtraNodeContextMenu(nodeType, app);
|
||||||
},
|
},
|
||||||
|
|
||||||
async nodeCreated(node, app) {
|
|
||||||
if(is_legacy_front()) {
|
|
||||||
if(!node.badge_enabled) {
|
|
||||||
node.getNickname = function () { return getNickname(node, node.comfyClass.trim()) };
|
|
||||||
let orig = node.onDrawForeground;
|
|
||||||
if(!orig)
|
|
||||||
orig = node.__proto__.onDrawForeground;
|
|
||||||
|
|
||||||
node.onDrawForeground = function (ctx) {
|
|
||||||
drawBadge(node, orig, arguments)
|
|
||||||
};
|
|
||||||
node.badge_enabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
async loadedGraphNode(node, app) {
|
|
||||||
if(is_legacy_front()) {
|
|
||||||
if(!node.badge_enabled) {
|
|
||||||
const orig = node.onDrawForeground;
|
|
||||||
node.getNickname = function () { return getNickname(node, node.type.trim()) };
|
|
||||||
node.onDrawForeground = function (ctx) { drawBadge(node, orig, arguments) };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_addExtraNodeContextMenu(node, app) {
|
_addExtraNodeContextMenu(node, app) {
|
||||||
const origGetExtraMenuOptions = node.prototype.getExtraMenuOptions;
|
const origGetExtraMenuOptions = node.prototype.getExtraMenuOptions;
|
||||||
node.prototype.cm_menu_added = true;
|
node.prototype.cm_menu_added = true;
|
||||||
|
|||||||
@@ -1190,7 +1190,7 @@ export class CustomNodesManager {
|
|||||||
version_cnt++;
|
version_cnt++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rowItem.cnr_latest != rowItem.originalData.active_version) {
|
if(rowItem.cnr_latest != rowItem.originalData.active_version && obj.length > 0) {
|
||||||
versions.push('latest');
|
versions.push('latest');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,16 +17,18 @@ import { api } from "../../scripts/api.js";
|
|||||||
class WorkflowMetadataExtension {
|
class WorkflowMetadataExtension {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.name = "Comfy.CustomNodesManager.WorkflowMetadata";
|
this.name = "Comfy.CustomNodesManager.WorkflowMetadata";
|
||||||
this.installedNodeVersions = {};
|
this.installedNodes = {};
|
||||||
this.comfyCoreVersion = null;
|
this.comfyCoreVersion = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the installed node versions
|
* Get the installed nodes info
|
||||||
* @returns {Promise<Record<string, string>>} The mapping from node name to version
|
* @returns {Promise<Record<string, {ver: string, cnr_id: string, enabled: boolean}>>} The mapping from node name to its info.
|
||||||
* version can either be a git commit hash or a semantic version such as "1.0.0"
|
* ver can either be a git commit hash or a semantic version such as "1.0.0"
|
||||||
|
* cnr_id is the id of the node in the ComfyRegistry
|
||||||
|
* enabled is true if the node is enabled, false if it is disabled
|
||||||
*/
|
*/
|
||||||
async getInstalledNodeVersions() {
|
async getInstalledNodes() {
|
||||||
const res = await api.fetchApi("/customnode/installed");
|
const res = await api.fetchApi("/customnode/installed");
|
||||||
return await res.json();
|
return await res.json();
|
||||||
}
|
}
|
||||||
@@ -48,8 +50,10 @@ class WorkflowMetadataExtension {
|
|||||||
|
|
||||||
if (modules[0] === "custom_nodes") {
|
if (modules[0] === "custom_nodes") {
|
||||||
const nodePackageName = modules[1];
|
const nodePackageName = modules[1];
|
||||||
const nodeVersion = this.installedNodeVersions[nodePackageName];
|
const nodeInfo =
|
||||||
nodeVersions[nodePackageName] = nodeVersion;
|
this.installedNodes[nodePackageName] ??
|
||||||
|
this.installedNodes[nodePackageName.toLowerCase()];
|
||||||
|
nodeVersions[nodePackageName] = nodeInfo.ver;
|
||||||
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
||||||
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
||||||
} else {
|
} else {
|
||||||
@@ -61,7 +65,7 @@ class WorkflowMetadataExtension {
|
|||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
const extension = this;
|
const extension = this;
|
||||||
this.installedNodeVersions = await this.getInstalledNodeVersions();
|
this.installedNodes = await this.getInstalledNodes();
|
||||||
this.comfyCoreVersion = (await api.getSystemStats()).system.comfyui_version;
|
this.comfyCoreVersion = (await api.getSystemStats()).system.comfyui_version;
|
||||||
|
|
||||||
// Attach metadata when app.graphToPrompt is called.
|
// Attach metadata when app.graphToPrompt is called.
|
||||||
|
|||||||
@@ -9,8 +9,107 @@
|
|||||||
"description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel."
|
"description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel."
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "zyd232",
|
||||||
|
"title": "ComfyUI-zyd232-Nodes",
|
||||||
|
"reference": "https://github.com/zyd232/ComfyUI-zyd232-Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/zyd232/ComfyUI-zyd232-Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Image Pixels Compare"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "yanhuifair",
|
||||||
|
"title": "ComfyUI-FairLab",
|
||||||
|
"reference": "https://github.com/yanhuifair/ComfyUI-FairLab",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yanhuifair/ComfyUI-FairLab"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: CLIP Text Encode Translated, Translate String, Load Image From Folder, Save String To Folder, Fix UTF-8 String, String Combine, String Field, Download Image, Save Images To Folder, Save Image To Folder, Image Resize"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "nomcycle",
|
||||||
|
"title": "ComfyUI_Cluster [WIP]",
|
||||||
|
"reference": "https://github.com/nomcycle/ComfyUI_Cluster",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/nomcycle/ComfyUI_Cluster"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Very early W.I.P of clustered ComfyUI inference."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "5x00",
|
||||||
|
"title": "ComfyUI-LLM-Concat [WIP]",
|
||||||
|
"reference": "https://github.com/5x00/ComfyUI-LLM-Concat",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/5x00/ComfyUI-LLM-Concat"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple ComfyUI node to combine strings using ChatGPT / Claude. Can be helpful to combine multiple keywords into a single prompt.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "waynepimpzhang",
|
||||||
|
"title": "FindBrightestSpot [WIP]",
|
||||||
|
"reference": "https://github.com/waynepimpzhang/comfyui-opencv-brightestspot",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/waynepimpzhang/comfyui-opencv-brightestspot"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Analyze the image to find the x and y coordinates of the brightest point.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "nmlen",
|
||||||
|
"title": "comfyui-mosaic-blur [WIP]",
|
||||||
|
"reference": "https://github.com/nmlen/comfyui-mosaic-blur",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/nmlen/comfyui-mosaic-blur"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple mosaic blur node for ComfyUI that uses CV2 or Pillow\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "power88",
|
||||||
|
"title": "ComfyUI-PDiD-Nodes [WIP]",
|
||||||
|
"reference": "https://github.com/power88/ComfyUI-PDiD-Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/power88/ComfyUI-PDiD-Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Get Image Size, Check Character Tag, Nearest SDXL Resolution divided by 64, Get Image Main Color, Blend Images, List Operations, Make Image Gray.\nNOTE: not working"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "FinetunersAI",
|
||||||
|
"title": "ComfyUI Finetuners [WIP]",
|
||||||
|
"reference": "https://github.com/FinetunersAI/finetuners",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/FinetunersAI/finetuners"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A collection of utility nodes for ComfyUI to enhance your workflow.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sourceful-official",
|
||||||
|
"title": "ComfyUI_InstructPixToPixConditioningLatent [WIP]",
|
||||||
|
"reference": "https://github.com/sourceful-official/ComfyUI_InstructPixToPixConditioningLatent",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sourceful-official/ComfyUI_InstructPixToPixConditioningLatent"
|
||||||
|
],
|
||||||
|
"description": "ComfyUI-ComfyUI_InstructPixToPixConditioningLatent\nNOTE:invalid pyproject.toml",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "fritzprix",
|
||||||
|
"title": "ComfyUI-LLM-Utils [WIP]",
|
||||||
|
"reference": "https://github.com/fritzprix/ComfyUI-LLM-Utils",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/fritzprix/ComfyUI-LLM-Utils"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A collection of utility nodes for ComfyUI focused on text and LLM-related operations\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "ciga2011",
|
"author": "ciga2011",
|
||||||
"title": "ComfyUI-AppGen [UNSAFE]",
|
"title": "ComfyUI-AppGen [UNSAFE]",
|
||||||
@@ -31,16 +130,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "for now: just custom node(s) to fetch tags from a given danbooru (soon e621 too) post link\ncurrently only supports danbooru-style urls + api response formats\nthis repo is a rewrite of: [a/https://github.com/yffyhk/comfyui_auto_danbooru](https://github.com/yffyhk/comfyui_auto_danbooru)"
|
"description": "for now: just custom node(s) to fetch tags from a given danbooru (soon e621 too) post link\ncurrently only supports danbooru-style urls + api response formats\nthis repo is a rewrite of: [a/https://github.com/yffyhk/comfyui_auto_danbooru](https://github.com/yffyhk/comfyui_auto_danbooru)"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "ai-business-hql",
|
|
||||||
"title": "comfyUIAgent [WIP]",
|
|
||||||
"reference": "https://github.com/ai-business-hql/comfyUIAgent",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ai-business-hql/comfyUIAgent"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "test"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Grey3016",
|
"author": "Grey3016",
|
||||||
"title": "Save2Icon",
|
"title": "Save2Icon",
|
||||||
@@ -51,16 +140,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: Save2Icon"
|
"description": "NODES: Save2Icon"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "sh570655308",
|
|
||||||
"title": "ComfyUI-TopazVideoAI [WIP]",
|
|
||||||
"reference": "https://github.com/sh570655308/ComfyUI-TopazVideoAI",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/sh570655308/ComfyUI-TopazVideoAI"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "NODES: Topaz Video AI (Upscale & Frame Interpolation)\nNOTE1:Requirements: Licensed installation of TopazVideoAI\nNOTE2: The files in the repo are not organized."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Chargeuk",
|
"author": "Chargeuk",
|
||||||
"title": "ComfyUI-vts-nodes [WIP]",
|
"title": "ComfyUI-vts-nodes [WIP]",
|
||||||
@@ -224,13 +303,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "Maxim-Dey",
|
"author": "Maxim-Dey",
|
||||||
"title": "ComfyUI-MS_Tools",
|
"title": "ComfyUI-MS_Tools [WIP]",
|
||||||
"reference": "https://github.com/Maxim-Dey/ComfyUI-MaksiTools",
|
"reference": "https://github.com/Maxim-Dey/ComfyUI-MaksiTools",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools"
|
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: MS Time Measure Node"
|
"description": "NODES: MS Time Measure NodeMaksiTools"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "jammyfu",
|
"author": "jammyfu",
|
||||||
@@ -524,17 +603,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: Image Clip Node, Audio Duration Node, Save Video Node,..."
|
"description": "NODES: Image Clip Node, Audio Duration Node, Save Video Node,..."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "sh570655308",
|
|
||||||
"title": "ComfyUI-GigapixelAI [WIP]",
|
|
||||||
"reference": "https://github.com/sh570655308/ComfyUI-GigapixelAI",
|
|
||||||
"pip": ["GigapixelAI>=7.3.0"],
|
|
||||||
"files": [
|
|
||||||
"https://github.com/sh570655308/ComfyUI-GigapixelAI"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "custom nodes use gigapixelai ai in comfyui Thanks @choey for the https://github.com/choey/Comfy-Topaz nodes helps me a lot\nRequirements: Licensed installation of Gigapixel 8: the path of gigapixel.exe is in the installation folder of Topaz Gigapixel AI, manually fill it if your installation is not default. Need GigapixelAI>=7.3.0\nNOTE: The files in the repo are not organized."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Big Idea Technology",
|
"author": "Big Idea Technology",
|
||||||
"title": "ComfyUI-Movie-Tools [WIP]",
|
"title": "ComfyUI-Movie-Tools [WIP]",
|
||||||
|
|||||||
@@ -154,6 +154,14 @@
|
|||||||
"title_aux": "ComfyUI_Fooocus"
|
"title_aux": "ComfyUI_Fooocus"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/5x00/ComfyUI-LLM-Concat": [
|
||||||
|
[
|
||||||
|
"LLMConcate"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-LLM-Concat [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
||||||
[
|
[
|
||||||
"ManualSigma"
|
"ManualSigma"
|
||||||
@@ -510,8 +518,10 @@
|
|||||||
"https://github.com/Chargeuk/ComfyUI-vts-nodes": [
|
"https://github.com/Chargeuk/ComfyUI-vts-nodes": [
|
||||||
[
|
[
|
||||||
"VTS Clean Text",
|
"VTS Clean Text",
|
||||||
|
"VTS Clip Text Encode",
|
||||||
"VTS Color Mask To Mask",
|
"VTS Color Mask To Mask",
|
||||||
"VTS Conditioning Set Batch Mask",
|
"VTS Conditioning Set Batch Mask",
|
||||||
|
"VTS Images Crop From Masks",
|
||||||
"VTS Merge Delimited Text",
|
"VTS Merge Delimited Text",
|
||||||
"VTS Reduce Batch Size",
|
"VTS Reduce Batch Size",
|
||||||
"VTS To Text",
|
"VTS To Text",
|
||||||
@@ -562,8 +572,10 @@
|
|||||||
"DevToolsNodeWithOnlyOptionalInput",
|
"DevToolsNodeWithOnlyOptionalInput",
|
||||||
"DevToolsNodeWithOptionalInput",
|
"DevToolsNodeWithOptionalInput",
|
||||||
"DevToolsNodeWithOutputList",
|
"DevToolsNodeWithOutputList",
|
||||||
|
"DevToolsNodeWithSeedInput",
|
||||||
"DevToolsNodeWithStringInput",
|
"DevToolsNodeWithStringInput",
|
||||||
"DevToolsNodeWithUnionInput",
|
"DevToolsNodeWithUnionInput",
|
||||||
|
"DevToolsObjectPatchNode",
|
||||||
"DevToolsSimpleSlider"
|
"DevToolsSimpleSlider"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -652,7 +664,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit": [
|
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit": [
|
||||||
[
|
[
|
||||||
"GetBooruImageInfo",
|
"GetBooruPost",
|
||||||
"TagEncode"
|
"TagEncode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -678,9 +690,27 @@
|
|||||||
"AD_TextListToString",
|
"AD_TextListToString",
|
||||||
"AD_TextSaver",
|
"AD_TextSaver",
|
||||||
"AD_TxtToCSVCombiner",
|
"AD_TxtToCSVCombiner",
|
||||||
"AD_ZipSave"
|
"AD_ZipSave",
|
||||||
|
"AD_advanced-padding",
|
||||||
|
"AD_color-image",
|
||||||
|
"AD_image-concat",
|
||||||
|
"AD_image-resize",
|
||||||
|
"AD_mockup-maker",
|
||||||
|
"AD_poster-maker",
|
||||||
|
"AD_prompt-saver",
|
||||||
|
"ImageResize",
|
||||||
|
"Incrementer \ud83e\udeb4",
|
||||||
|
"TextAppendNode",
|
||||||
|
"Width and height for scaling image to ideal resolution \ud83e\udeb4",
|
||||||
|
"Width and height from aspect ratio \ud83e\udeb4",
|
||||||
|
"YANC.MultilineString",
|
||||||
|
"comfyui-easy-padding",
|
||||||
|
"image concat mask"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
|
"author": "ComfyUI Addoor",
|
||||||
|
"description": "Save prompts to CSV file with customizable naming pattern",
|
||||||
|
"title": "ComfyUI-PromptSaver",
|
||||||
"title_aux": "ComfyUI-Addoor [UNSAFE]"
|
"title_aux": "ComfyUI-Addoor [UNSAFE]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -742,6 +772,16 @@
|
|||||||
"title_aux": "Fast Group Link [WIP]"
|
"title_aux": "Fast Group Link [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/FinetunersAI/finetuners": [
|
||||||
|
[
|
||||||
|
"AutoImageResize",
|
||||||
|
"GroupLink",
|
||||||
|
"VariablesInjector"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI Finetuners [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Fucci-Mateo/ComfyUI-Airtable": [
|
"https://github.com/Fucci-Mateo/ComfyUI-Airtable": [
|
||||||
[
|
[
|
||||||
"Push pose to Airtable"
|
"Push pose to Airtable"
|
||||||
@@ -769,7 +809,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/Grey3016/Save2Icon": [
|
"https://github.com/Grey3016/Save2Icon": [
|
||||||
[
|
[
|
||||||
"Save2Icon"
|
"ConvertToIconNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "Save2Icon"
|
"title_aux": "Save2Icon"
|
||||||
@@ -1075,10 +1115,14 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools": [
|
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools": [
|
||||||
[
|
[
|
||||||
"MT Time Measure Node"
|
"\ud83d\udd22 Return Boolean",
|
||||||
|
"\ud83d\udd22 Return Float",
|
||||||
|
"\ud83d\udd22 Return Integer",
|
||||||
|
"\ud83d\udd22 Return Multiline String",
|
||||||
|
"\ud83d\udd27 Time Measure Node"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-MS_Tools"
|
"title_aux": "ComfyUI-MS_Tools [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/MrAdamBlack/CheckProgress": [
|
"https://github.com/MrAdamBlack/CheckProgress": [
|
||||||
@@ -1230,6 +1274,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
||||||
[
|
[
|
||||||
|
"AdvancedScript",
|
||||||
"CheckpointLoaderSimpleShared //SeedV",
|
"CheckpointLoaderSimpleShared //SeedV",
|
||||||
"ControlNetLoaderAdvancedShared",
|
"ControlNetLoaderAdvancedShared",
|
||||||
"LoraLoader //SeedV",
|
"LoraLoader //SeedV",
|
||||||
@@ -1242,6 +1287,7 @@
|
|||||||
"https://github.com/ShahFaisalWani/ComfyUI-Mojen-Nodeset": [
|
"https://github.com/ShahFaisalWani/ComfyUI-Mojen-Nodeset": [
|
||||||
[
|
[
|
||||||
"MojenAnalyzeProcessor",
|
"MojenAnalyzeProcessor",
|
||||||
|
"MojenAspectRatio",
|
||||||
"MojenImageLoader",
|
"MojenImageLoader",
|
||||||
"MojenLogPercent",
|
"MojenLogPercent",
|
||||||
"MojenNSFWClassifier",
|
"MojenNSFWClassifier",
|
||||||
@@ -2445,7 +2491,8 @@
|
|||||||
"Genera.BatchTester",
|
"Genera.BatchTester",
|
||||||
"Genera.GCPStorageNode",
|
"Genera.GCPStorageNode",
|
||||||
"Genera.MaskDrawer",
|
"Genera.MaskDrawer",
|
||||||
"Genera.Utils"
|
"Genera.Utils",
|
||||||
|
"PainterNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-GeneraNodes"
|
"title_aux": "ComfyUI-GeneraNodes"
|
||||||
@@ -2498,6 +2545,19 @@
|
|||||||
"title_aux": "comfyui-cem-tools"
|
"title_aux": "comfyui-cem-tools"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/fritzprix/ComfyUI-LLM-Utils": [
|
||||||
|
[
|
||||||
|
"WeightedDict",
|
||||||
|
"WeightedDictConcat",
|
||||||
|
"WeightedDictInput",
|
||||||
|
"WeightedDictSelect",
|
||||||
|
"WeightedDictSelectGroup",
|
||||||
|
"WeightedDictToPrompt"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-LLM-Utils [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/galoreware/ComfyUI-GaloreNodes": [
|
"https://github.com/galoreware/ComfyUI-GaloreNodes": [
|
||||||
[
|
[
|
||||||
"GNI_HEX_TO_COLOR",
|
"GNI_HEX_TO_COLOR",
|
||||||
@@ -2798,12 +2858,16 @@
|
|||||||
"ClickPopup",
|
"ClickPopup",
|
||||||
"ColorPicker",
|
"ColorPicker",
|
||||||
"DynamicImageCombiner",
|
"DynamicImageCombiner",
|
||||||
|
"DynamicMaskCombiner",
|
||||||
|
"ImageLatentCreator",
|
||||||
"ImageResolutionAdjuster",
|
"ImageResolutionAdjuster",
|
||||||
|
"ImageSizeCreator",
|
||||||
"MaskPreview",
|
"MaskPreview",
|
||||||
"MultilineTextInput",
|
"MultilineTextInput",
|
||||||
"RemoveEmptyLinesAndLeadingSpaces",
|
"RemoveEmptyLinesAndLeadingSpaces",
|
||||||
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
||||||
"ShowTextPlus",
|
"ShowTextPlus",
|
||||||
|
"SimpleTextInput",
|
||||||
"TextCombiner"
|
"TextCombiner"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -3089,6 +3153,7 @@
|
|||||||
"HyVideoReSampler",
|
"HyVideoReSampler",
|
||||||
"HyVideoSTG",
|
"HyVideoSTG",
|
||||||
"HyVideoSampler",
|
"HyVideoSampler",
|
||||||
|
"HyVideoTeaCache",
|
||||||
"HyVideoTextEmbedsLoad",
|
"HyVideoTextEmbedsLoad",
|
||||||
"HyVideoTextEmbedsSave",
|
"HyVideoTextEmbedsSave",
|
||||||
"HyVideoTextEncode",
|
"HyVideoTextEncode",
|
||||||
@@ -3721,6 +3786,22 @@
|
|||||||
"title_aux": "ComfyUI-PromptUtilities"
|
"title_aux": "ComfyUI-PromptUtilities"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/nmlen/comfyui-mosaic-blur": [
|
||||||
|
[
|
||||||
|
"ImageMosaic"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfyui-mosaic-blur [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/nomcycle/ComfyUI_Cluster": [
|
||||||
|
[
|
||||||
|
"FenceClusteredWorkflow"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_Cluster [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/oshtz/ComfyUI-oshtz-nodes": [
|
"https://github.com/oshtz/ComfyUI-oshtz-nodes": [
|
||||||
[
|
[
|
||||||
"ImageOverlayNode",
|
"ImageOverlayNode",
|
||||||
@@ -3768,13 +3849,15 @@
|
|||||||
"ConditioningZeroOutCombine",
|
"ConditioningZeroOutCombine",
|
||||||
"ConvertTimestepToSigma",
|
"ConvertTimestepToSigma",
|
||||||
"DynSamplerSelect",
|
"DynSamplerSelect",
|
||||||
|
"DynamicThresholdingSimplePost",
|
||||||
"EmptyLatentImageAR",
|
"EmptyLatentImageAR",
|
||||||
"FreeU2PPM",
|
"FreeU2PPM",
|
||||||
"Guidance Limiter",
|
"Guidance Limiter",
|
||||||
"LatentOperationTonemapLuminance",
|
"LatentOperationTonemapLuminance",
|
||||||
"LatentToMaskBB",
|
"LatentToMaskBB",
|
||||||
"LatentToWidthHeight",
|
"LatentToWidthHeight",
|
||||||
"PPMSamplerSelect"
|
"PPMSamplerSelect",
|
||||||
|
"RescaleCFGPost"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-ppm"
|
"title_aux": "ComfyUI-ppm"
|
||||||
@@ -3804,6 +3887,20 @@
|
|||||||
"title_aux": "NudeNet-Detector-Provider [WIP]"
|
"title_aux": "NudeNet-Detector-Provider [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/power88/ComfyUI-PDiD-Nodes": [
|
||||||
|
[
|
||||||
|
"Blend Images",
|
||||||
|
"Check Character Tag",
|
||||||
|
"Get Image Colors",
|
||||||
|
"Get image size",
|
||||||
|
"List Operations",
|
||||||
|
"Make Image Gray",
|
||||||
|
"Nearest SDXL Resolution divided by 64"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-PDiD-Nodes [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/prabinpebam/anyPython": [
|
"https://github.com/prabinpebam/anyPython": [
|
||||||
[
|
[
|
||||||
"Any Python"
|
"Any Python"
|
||||||
@@ -3938,23 +4035,6 @@
|
|||||||
"title_aux": "comfyui-creative-nodes"
|
"title_aux": "comfyui-creative-nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/sh570655308/ComfyUI-GigapixelAI": [
|
|
||||||
[
|
|
||||||
"GigapixelAI",
|
|
||||||
"GigapixelUpscaleSettings"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "ComfyUI-GigapixelAI [WIP]"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/sh570655308/ComfyUI-TopazVideoAI": [
|
|
||||||
[
|
|
||||||
"TopazVideoAI"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "ComfyUI-TopazVideoAI [WIP]"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/shadowcz007/ComfyUI-PuLID-Test": [
|
"https://github.com/shadowcz007/ComfyUI-PuLID-Test": [
|
||||||
[
|
[
|
||||||
"ApplyPulid",
|
"ApplyPulid",
|
||||||
@@ -4073,6 +4153,14 @@
|
|||||||
"title_aux": "dandy [UNSAFE]"
|
"title_aux": "dandy [UNSAFE]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/sourceful-official/ComfyUI_InstructPixToPixConditioningLatent": [
|
||||||
|
[
|
||||||
|
"InstructPixToPixConditioningLatent"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_InstructPixToPixConditioningLatent [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/sswink/comfyui-lingshang": [
|
"https://github.com/sswink/comfyui-lingshang": [
|
||||||
[
|
[
|
||||||
"LS_ALY_Seg_Body_Utils",
|
"LS_ALY_Seg_Body_Utils",
|
||||||
@@ -4311,6 +4399,14 @@
|
|||||||
"title_aux": "ComfyUI-exit [UNSAFE]"
|
"title_aux": "ComfyUI-exit [UNSAFE]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/waynepimpzhang/comfyui-opencv-brightestspot": [
|
||||||
|
[
|
||||||
|
"FindBrightestSpot"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "FindBrightestSpot [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/willblaschko/ComfyUI-Unload-Models": [
|
"https://github.com/willblaschko/ComfyUI-Unload-Models": [
|
||||||
[
|
[
|
||||||
"DeleteAnyObject",
|
"DeleteAnyObject",
|
||||||
@@ -4359,6 +4455,24 @@
|
|||||||
"title_aux": "ComfyUI-XYNodes"
|
"title_aux": "ComfyUI-XYNodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/yanhuifair/ComfyUI-FairLab": [
|
||||||
|
[
|
||||||
|
"CLIPTranslatedClass",
|
||||||
|
"DownloadImageClass",
|
||||||
|
"FixUTF8StringClass",
|
||||||
|
"ImageResizeClass",
|
||||||
|
"LoadImageFromFolderClass",
|
||||||
|
"SaveImageToFolderClass",
|
||||||
|
"SaveImagesToFolderClass",
|
||||||
|
"SaveStringToFolderClass",
|
||||||
|
"StringCombineClass",
|
||||||
|
"StringFieldClass",
|
||||||
|
"TranslateStringClass"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-FairLab"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API": [
|
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API": [
|
||||||
[
|
[
|
||||||
"FetchTokenFromDropbox",
|
"FetchTokenFromDropbox",
|
||||||
@@ -4397,6 +4511,14 @@
|
|||||||
"title_aux": "Comfyui_image2prompt"
|
"title_aux": "Comfyui_image2prompt"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/zyd232/ComfyUI-zyd232-Nodes": [
|
||||||
|
[
|
||||||
|
"ImageCompareNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-zyd232-Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://raw.githubusercontent.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/main/EXT_VariationUtils.py": [
|
"https://raw.githubusercontent.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/main/EXT_VariationUtils.py": [
|
||||||
[
|
[
|
||||||
"BatchToList",
|
"BatchToList",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -11,6 +11,16 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "ai-business-hql",
|
||||||
|
"title": "comfyUIAgent [REMOVED]",
|
||||||
|
"reference": "https://github.com/ai-business-hql/comfyUIAgent",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ai-business-hql/comfyUIAgent"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "test"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "daqingliu",
|
"author": "daqingliu",
|
||||||
"title": "ComfyUI-SaveImageOSS [REMOVED]",
|
"title": "ComfyUI-SaveImageOSS [REMOVED]",
|
||||||
|
|||||||
@@ -9,6 +9,331 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "LucipherDev",
|
||||||
|
"title": "ComfyUI-TangoFlux",
|
||||||
|
"reference": "https://github.com/LucipherDev/ComfyUI-TangoFlux",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-TangoFlux"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Custom Nodes for 'TangoFlux: Super Fast and Faithful Text to Audio Generation with Flow Matching'. This generates high-quality 44.1kHz audio up to 30 seconds using just a text prompt."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "welltop-cn",
|
||||||
|
"title": "ComfyUI-TeaCache",
|
||||||
|
"id": "teacache",
|
||||||
|
"reference": "https://github.com/welltop-cn/ComfyUI-TeaCache",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/welltop-cn/ComfyUI-TeaCache"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Unofficial implementation of [ali-vilab/TeaCache](https://github.com/ali-vilab/TeaCache) for ComfyUI"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jammyfu",
|
||||||
|
"title": "Painting Coder Utils",
|
||||||
|
"id": "painting-coder-utils",
|
||||||
|
"reference": "https://github.com/jammyfu/ComfyUI_PaintingCoderUtils",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jammyfu/ComfyUI_PaintingCoderUtils"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A practical collection of nodes for ComfyUI that streamlines image and text processing workflows. Features include image optimized resolution adjustment, text cleaning tools, dynamic image/text combination, and mask preview utilities. Perfect for artists and developers looking to enhance their AI art creation pipeline."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "calcuis",
|
||||||
|
"title": "gguf",
|
||||||
|
"id": "gguf",
|
||||||
|
"reference": "https://github.com/calcuis/gguf",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/calcuis/gguf"
|
||||||
|
],
|
||||||
|
"preemptions":[
|
||||||
|
"LoaderGGUF",
|
||||||
|
"ClipLoaderGGUF",
|
||||||
|
"DualClipLoaderGGUF",
|
||||||
|
"TripleClipLoaderGGUF",
|
||||||
|
"LoaderGGUFAdvanced",
|
||||||
|
"GGUFSave"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "gguf node for comfyui"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sh570655308",
|
||||||
|
"title": "ComfyUI-GigapixelAI",
|
||||||
|
"id": "gigapixel",
|
||||||
|
"reference": "https://github.com/sh570655308/ComfyUI-GigapixelAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sh570655308/ComfyUI-GigapixelAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes use gigapixelai in comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sh570655308",
|
||||||
|
"title": "ComfyUI-TopazVideoAI",
|
||||||
|
"id": "tvai",
|
||||||
|
"reference": "https://github.com/sh570655308/ComfyUI-TopazVideoAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sh570655308/ComfyUI-TopazVideoAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes use topazvideoai in comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "FinetunersAI",
|
||||||
|
"title": "ComfyUI_Finetuners_Suite",
|
||||||
|
"reference": "https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A suite of nodes for ComfyUI that helps making ComfyUI more accesible for artists"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ChenDarYen",
|
||||||
|
"title": "ComfyUI-TimestepShiftModel",
|
||||||
|
"reference": "https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a ComfyUI implementation of the timestep shift technique used in [a/NitroFusion: High-Fidelity Single-Step Diffusion through Dynamic Adversarial Training.](https://arxiv.org/abs/2412.02030)\nFor more details, visit the official [a/NitroFusion GitHub repository](https://github.com/ChenDarYen/NitroFusion)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "facok",
|
||||||
|
"title": "ComfyUI-HunyuanVideoMultiLora",
|
||||||
|
"reference": "https://github.com/facok/ComfyUI-HunyuanVideoMultiLora",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom LoRA-loading node designed to prevent issues such as blurriness and other artifacts when loading multiple LoRAs in HunYuan Video.\nUsage Instructions: The connection method remains unchanged from the original. The only difference is the additional blocks_type option. Please select double_blocks."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "JJ",
|
||||||
|
"title": "ComfyUI-Jtils",
|
||||||
|
"reference": "https://github.com/cnbjjj/ComfyUI-Jtils",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cnbjjj/ComfyUI-Jtils"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "An extension for ComfyUI that adds utility functions and nodes not available in the default setup."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "billwuhao",
|
||||||
|
"title": "ComfyUI_OneButtonPrompt_Flux",
|
||||||
|
"reference": "https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI_OneButtonPrompt_Flux is a Flux prompt generation node. The subject can be 'human,' 'other' or a combination of both. For human, pose settings can be enabled. Additionally, various styles can be applied. Finally, combine it with 'Prompt Enhancement' to seamlessly automate image generation, eliminating the hassle of designing prompts."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "pandaer119",
|
||||||
|
"title": "ComfyUI_pandai",
|
||||||
|
"reference": "https://github.com/pandaer119/ComfyUI_pandai",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/pandaer119/ComfyUI_pandai"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Introduction The ComfyUI_pandai node is a custom ComfyUI node designed to interact with the DeepSeek API. It supports text generation, translation, and text polishing. With this node, users can easily generate text, translate content, and refine the generated text for better quality."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "umiyuki",
|
||||||
|
"title": "ComfyUI Pad To Eight",
|
||||||
|
"reference": "https://github.com/umiyuki/comfyui-pad-to-eight",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/umiyuki/comfyui-pad-to-eight"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom ComfyUI node that pads an image to a multiple of 8 width."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Meettya",
|
||||||
|
"title": "ComfyUI-OneForOne",
|
||||||
|
"reference": "https://github.com/Meettya/ComfyUI-OneForOne",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Meettya/ComfyUI-OneForOne"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Node:Image Fit Calculator"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "KunmyonChoi",
|
||||||
|
"title": "ComfyUI_S3_direct",
|
||||||
|
"reference": "https://github.com/KunmyonChoi/ComfyUI_S3_direct",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/KunmyonChoi/ComfyUI_S3_direct"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom_node that load and save file directly from S3\nSimplified version of [a/https://github.com/kealiu/ComfyUI-S3-Tools](https://github.com/kealiu/ComfyUI-S3-Tools)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "laogou666",
|
||||||
|
"title": "Comfyui-LG_Relight",
|
||||||
|
"reference": "https://github.com/LAOGOU-666/Comfyui-LG_Relight",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LAOGOU-666/Comfyui-LG_Relight"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple implementation of real-time 3D lighting in ComfyUI. It's an open-source node, have fun playing around!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "fssorc",
|
||||||
|
"title": "ComfyUI_RopeWrapper",
|
||||||
|
"reference": "https://github.com/fssorc/ComfyUI_RopeWrapper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/fssorc/ComfyUI_RopeWrapper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Wrap Rope into ComfyUI, do a little change to use in ComfyUI. All credit goes to Hillobar and his ROPE [ㅁ/https://github.com/Hillobar/Rope](https://github.com/Hillobar/Rope)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hodanajan",
|
||||||
|
"title": "optimal-crop-resolution",
|
||||||
|
"reference": "https://github.com/hodanajan/optimal-crop-resolution",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hodanajan/optimal-crop-resolution"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI node to calculate optimal resolution to crop the image to (from a list of aspect ratios)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "inventorado",
|
||||||
|
"title": "ComfyUI Neural Network Toolkit NNT ",
|
||||||
|
"id": "nnt",
|
||||||
|
"reference": "https://github.com/inventorado/ComfyUI_NNT",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/inventorado/ComfyUI_NNT"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Neural Network Toolkit (NNT) for ComfyUI is an extensive set of custom ComfyUI nodes for designing, training, and fine-tuning neural networks. This toolkit allows defining models, layers, training workflows, transformers, and tensor operations in a visual manner using nodes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Hullabalo",
|
||||||
|
"title": "ComfyUI-Loop",
|
||||||
|
"reference": "https://github.com/Hullabalo/ComfyUI-Loop",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Hullabalo/ComfyUI-Loop"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A pair of nodes (Load Image and Save Image) to create a simple loop in your ComfyUI inpainting workflow, without the need of loading your last saved image"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "leeguandong",
|
||||||
|
"title": "ComfyUI_FluxCustomId",
|
||||||
|
"reference": "https://github.com/leeguandong/ComfyUI_FluxCustomId",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/leeguandong/ComfyUI_FluxCustomId"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI nodes to use FluxCustomId\nOriginal repo: [a/https://github.com/damo-cv/FLUX-customID](https://github.com/damo-cv/FLUX-customID)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bongsang",
|
||||||
|
"title": "ComfyUI-Bongsang",
|
||||||
|
"reference": "https://github.com/bongsang/ComfyUI-Bongsang",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bongsang/ComfyUI-Bongsang"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The 'ComfyUI-Bongsang' is very useful tools for a diffusion model developer."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "5x00",
|
||||||
|
"title": "ComfyUI-PiAPI-Faceswap",
|
||||||
|
"reference": "https://github.com/5x00/ComfyUI-PiAPI-Faceswap",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/5x00/ComfyUI-PiAPI-Faceswap"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple ComfyUI nodes that integrates [a/PiAPI faceswap](https://piapi.ai/faceswap-api) service into ComfyUI. This can be helpful if you're trying to create a workflow that includes faceswap for commercial usage."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "muxueChen",
|
||||||
|
"title": "CosyVoice2 for ComfyUI",
|
||||||
|
"reference": "https://github.com/muxueChen/ComfyUI_NTCosyVoice",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/muxueChen/ComfyUI_NTCosyVoice"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI_NTCosyVoice is a plugin of ComfyUI for Cosysvoice2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "cenzijing",
|
||||||
|
"title": "ComfyUI-Markmap",
|
||||||
|
"reference": "https://github.com/cenzijing/ComfyUI-Markmap",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cenzijing/ComfyUI-Markmap"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node for creating mindmaps from markdown"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Jovi_Spout",
|
||||||
|
"id": "jovi_spout",
|
||||||
|
"reference": "https://github.com/Amorano/Jovi_Spout",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Amorano/Jovi_Spout"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Nodes for using Spout streams."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "AconexOfficial",
|
||||||
|
"title": "ComfyUI GOAT Nodes",
|
||||||
|
"reference": "https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes to level up your workflows performance and streamline specific functions."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Jaminanim",
|
||||||
|
"title": "ComfyUI-Random-Int-Divisor-Node",
|
||||||
|
"reference": "https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A set of custom ComfyUI nodes for generating random integers within a range, adjusted to the nearest multiple of a user-defined divisor. Needlessly includes both an efficient and simple list implementation. Updates with each generation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "LucipherDev",
|
||||||
|
"title": "ComfyUI-AniDoc",
|
||||||
|
"reference": "https://github.com/LucipherDev/ComfyUI-AniDoc",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-AniDoc"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bear2b",
|
||||||
|
"title": "ColorMatrixGPU Node for ComfyUI",
|
||||||
|
"reference": "https://github.com/bear2b/comfyui-argo-nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bear2b/comfyui-argo-nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This node applies a custom 4x4 color matrix to an image using GPU acceleration via PyTorch."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Vaibhavs10",
|
||||||
|
"title": "ComfyUI-DDUF",
|
||||||
|
"reference": "https://github.com/Vaibhavs10/ComfyUI-DDUF",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Vaibhavs10/ComfyUI-DDUF"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Run DDUF in ComfyUI - powered by Diffusers."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "tocubed",
|
"author": "tocubed",
|
||||||
"title": "ComfyUI-EvTexture",
|
"title": "ComfyUI-EvTexture",
|
||||||
@@ -371,320 +696,6 @@
|
|||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Image to caption with CLIP ViT-L/14. Small and fast addition to the CLIP-L model you already have loaded to generate captions for images within your workflow."
|
"description": "Image to caption with CLIP ViT-L/14. Small and fast addition to the CLIP-L model you already have loaded to generate captions for images within your workflow."
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "solution9th",
|
|
||||||
"title": "Comfyui_mobilesam",
|
|
||||||
"reference": "https://github.com/solution9th/Comfyui_mobilesam",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/solution9th/Comfyui_mobilesam"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "NODES: Mobile SAM Model Loader, Mobile SAM Detector, Mobile SAM Predictor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Doctor Diffusion",
|
|
||||||
"title": "ComfyUI-basic-pitch",
|
|
||||||
"reference": "https://github.com/DoctorDiffusion/ComfyUI-basic-pitch",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/DoctorDiffusion/ComfyUI-basic-pitch"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Audio to midi functionality within ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ronsantash",
|
|
||||||
"title": "ComfyUIFlexiLoRALoader",
|
|
||||||
"reference": "https://github.com/ronsantash/Comfyui-flexi-lora-loader",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ronsantash/Comfyui-flexi-lora-loader"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "FlexiLoRALoader - A ComfyUI custom node for dynamic LoRA weight management. Apply multiple LoRAs with flexible weight patterns and randomization features for creative AI image generation.\nFeatures: • Multiple LoRA handling (up to 3) • Weight pattern presets • Random/Sequential mode • Debug logging support"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "neverbiasu",
|
|
||||||
"title": "ComfyUI-Dashscope",
|
|
||||||
"reference": "https://github.com/neverbiasu/ComfyUI-Dashscope",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/neverbiasu/ComfyUI-Dashscope"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This project adapts the dashscope([a/aliyun-bailian](https://bailian.console.aliyun.com)) api into ComfyUI."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "SparknightLLC",
|
|
||||||
"title": "ComfyUI-ConditionalInterrupt",
|
|
||||||
"reference": "https://github.com/SparknightLLC/ComfyUI-ConditionalInterrupt",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/SparknightLLC/ComfyUI-ConditionalInterrupt"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A node for ComfyUI that terminates the workflow processing if 'proceed' is set to False. More convenient than manually bypassing a bunch of nodes.\nThis is a restructured version of the 'SRL Conditional Interrupt' node from the [a/srl-nodes](https://github.com/seanlynch/srl-nodes) pack."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "zhilemann",
|
|
||||||
"title": "ComfyUI-moondream2",
|
|
||||||
"reference": "https://github.com/zhilemann/ComfyUI-moondream2",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/zhilemann/ComfyUI-moondream2"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "nodes for nightly moondream2 VLM inference\nsupports only captioning and visual queries at the moment"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "York Xiang",
|
|
||||||
"title": "Remembering utils",
|
|
||||||
"id": "comfyui-rememberingutils",
|
|
||||||
"reference": "https://github.com/bombless/comfyUI-RememberingUtils",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/bombless/comfyUI-RememberingUtils"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Helper nodes to display last seed and prompt."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "cherninlab",
|
|
||||||
"title": "Logo Generator Node for ComfyUI",
|
|
||||||
"reference": "https://github.com/cherninlab/logo-generator-comfyui",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/cherninlab/logo-generator-comfyui"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This custom node allows you to generate logo images using Google Fonts."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "shahkoorosh",
|
|
||||||
"title": "ComfyUI-KGnodes",
|
|
||||||
"reference": "https://github.com/shahkoorosh/ComfyUI-KGnodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/shahkoorosh/ComfyUI-KGnodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "NODES:Custom Resolution Latent Node, Style Selector\nThis Custom node offers various experimental nodes to make it easier to use ComfyUI."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "shahkoorosh",
|
|
||||||
"title": "comfyui-sunflower-nodes",
|
|
||||||
"reference": "https://github.com/andygill/comfyui-sunflower-nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/andygill/comfyui-sunflower-nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI nodes for 3D visualization."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "shahkoorosh",
|
|
||||||
"title": "ComfyUI_RH_APICall",
|
|
||||||
"reference": "https://github.com/HM-RunningHub/ComfyUI_RH_APICall",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/HM-RunningHub/ComfyUI_RH_APICall"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This is a ComfyUI plugin that makes it easier to call and run workflows from RunningHub in your local ComfyUI setup."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "wqjuser",
|
|
||||||
"title": "ComfyUI-Chat-Image",
|
|
||||||
"reference": "https://github.com/wqjuser/ComfyUI-Chat-Image",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/wqjuser/ComfyUI-Chat-Image"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Use an online large language model to describe images."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "shinich39",
|
|
||||||
"title": "comfyui-view-recommendations",
|
|
||||||
"reference": "https://github.com/shinich39/comfyui-view-recommendations",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/shinich39/comfyui-view-recommendations"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Load model generation data from civitai."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "SlackinJack",
|
|
||||||
"title": "asyncdiff_comfyui",
|
|
||||||
"reference": "https://github.com/SlackinJack/asyncdiff_comfyui",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/SlackinJack/asyncdiff_comfyui"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "AsyncDiff node for ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "wmpmiles",
|
|
||||||
"title": "comfyui-some-image-processing-stuff",
|
|
||||||
"reference": "https://github.com/wmpmiles/comfyui-some-image-processing-stuff",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/wmpmiles/comfyui-some-image-processing-stuff"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Some ComfyUI nodes that provide some image-processing functionality. Resampling, Color Grading, Inpainting, ..."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "kevinmcmahondev",
|
|
||||||
"title": "Skin Tone Detector for ComfyUI",
|
|
||||||
"reference": "https://github.com/kevinmcmahondev/comfyui-skin-tone-detector",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/kevinmcmahondev/comfyui-skin-tone-detector"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A ComfyUI node that detects the skin tone of a person in an image and matches it to the standard emoji skin tone palette."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "yolanother",
|
|
||||||
"title": "Save Uncompressed 16 Bit PNG",
|
|
||||||
"reference": "https://github.com/yolanother/ComfyUI-Save16bitPng",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/yolanother/ComfyUI-Save16bitPng"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "The SaveImageARGB16PNG node provides functionality for saving images as uncompressed PNG files with ARGB16 precision. This node is particularly useful for workflows that require high-quality image saving with metadata such as prompts and additional PNG info."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "TKRLAB",
|
|
||||||
"title": "Prompt List JSON",
|
|
||||||
"reference": "https://github.com/TKRLAB/ComfyUI_Prompt_List_JSON",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/TKRLAB/ComfyUI_Prompt_List_JSON"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This repository provides a custom node for ComfyUI that allows managing positive and negative prompts in a structured JSON format. The node supports adding, updating, and logging prompts, ensuring seamless integration into your workflow."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "RyanOnTheInside",
|
|
||||||
"title": "ComfyUI-EfficientTAM",
|
|
||||||
"reference": "https://github.com/ryanontheinside/ComfyUI_EfficientTAM",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ryanontheinside/ComfyUI_EfficientTAM"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A ComfyUI implementation of [a/EfficientTAM](https://github.com/yformer/EfficientTAM)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "mahdi",
|
|
||||||
"title": "seamless-clone-comfyui",
|
|
||||||
"reference": "https://github.com/Aksaz/comfyui-seamless-clone",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Aksaz/comfyui-seamless-clone"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Seamless Clone for ComfyUI"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "xfgexo",
|
|
||||||
"title": "EXO Custom ComfyUI Nodes",
|
|
||||||
"id": "exo-custom-nodes",
|
|
||||||
"reference": "https://github.com/xfgexo/EXO-Custom-ComfyUI-Nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/xfgexo/EXO-Custom-ComfyUI-Nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A custom node pack made with efficiency and quality of life features in mind. Most notably is my Prompt Builder Deluxe Node. Unlike any other run-of-the-mill prompt builder or styler node out there. Mine allows you to create and design in a way no other node does."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "jefferyharrell",
|
|
||||||
"title": "JH XMP Metadata Nodes",
|
|
||||||
"reference": "https://github.com/ComfyUI-JH/ComfyUI-JH-XMP-Metadata-Nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ComfyUI-JH/ComfyUI-JH-XMP-Metadata-Nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "These are custom nodes for ComfyUI for the loading and saving of metadata in XMP format. XMP metadata is embedded in the images created by these nodes; it travels along wherever the image does. Both macOS and Windows index XMP metadata automatically, making it searchable from the Finder on the Mac or the File Explorer in Windows. Apps like Photoshop or Lightroom (and presumably many others) expose XMP metadata and allow it to be edited."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "AEmotionStudio",
|
|
||||||
"title": "ComfyUI Christmas Theme 🎄✨",
|
|
||||||
"reference": "https://github.com/AEmotionStudio/ComfyUI-ChristmasTheme",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/AEmotionStudio/ComfyUI-ChristmasTheme"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A beautiful theme extension for ComfyUI that adds festive touches with dynamic backgrounds, snowfall effects, and animated node connections"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Black Forest Labs",
|
|
||||||
"title": "Black Forest Labs API Nodes",
|
|
||||||
"reference": "https://github.com/black-forest-labs/bfl-comfy-nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/black-forest-labs/bfl-comfy-nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "ComfyUI nodes for Black Forest Labs API Services"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "Light-x02",
|
|
||||||
"title": "Image Metadata Nodes",
|
|
||||||
"id": "image_metadata_nodes",
|
|
||||||
"reference": "https://github.com/Light-x02/ComfyUI-Image-Metadata-Nodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Light-x02/ComfyUI-Image-Metadata-Nodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes for loading and saving images with metadata in ComfyUI."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "marcoc2",
|
|
||||||
"title": "Image Processing Suite for ComfyUI",
|
|
||||||
"reference": "https://github.com/marcoc2/ComfyUI-AnotherUtils",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/marcoc2/ComfyUI-AnotherUtils"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A collection of specialized image processing nodes for ComfyUI, focused on dataset preparation and pixel art manipulation."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "BIMer-99",
|
|
||||||
"title": "ComfyUI_FishSpeech_EX",
|
|
||||||
"reference": "https://github.com/BIMer-99/ComfyUI_FishSpeech_EX",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/BIMer-99/ComfyUI_FishSpeech_EX"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This plugin is optimized for Fish-Speech-1.5 version and is only applicable to version 1.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "CyanAutumn",
|
|
||||||
"title": "ComfyUi Random Manage Cyan",
|
|
||||||
"id": "CyanAutumn",
|
|
||||||
"reference": "https://github.com/CyanAutumn/ComfyUi_Random_Manage_Cyan",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/CyanAutumn/ComfyUi_Random_Manage_Cyan"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A random prompt node"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "kazeyori",
|
|
||||||
"title": "Quick Image Sequence Process",
|
|
||||||
"reference": "https://github.com/kazeyori/ComfyUI-QuickImageSequenceProcess",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/kazeyori/ComfyUI-QuickImageSequenceProcess"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A ComfyUI plugin for quick image sequence processing. This plugin allows users to manipulate frame sequences with various operations including frame insertion, deletion, and duplication."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ptmaster",
|
|
||||||
"title": "Embedding Merge for ComfyUI",
|
|
||||||
"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"
|
|
||||||
],
|
|
||||||
"install_type": "copy",
|
|
||||||
"description": "NODES: OverrideLoadedDiffusionDevice.\nI happen to have two graphics cards, and I want to load models into another graphics card in Comfyui, so I designed this small node."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"author": "ADDOOR",
|
|
||||||
"title": "ComfyUI-Addoor",
|
|
||||||
"reference": "https://github.com/Eagle-CN/ComfyUI-Addoor",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Eagle-CN/ComfyUI-Addoor"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "A collection of batch operation toolkits suitable for ComfyUI"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,6 +39,9 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/1038lab/ComfyUI-RMBG": [
|
"https://github.com/1038lab/ComfyUI-RMBG": [
|
||||||
[
|
[
|
||||||
|
"ClothesSegment",
|
||||||
|
"FashionSegmentAccessories",
|
||||||
|
"FashionSegmentClothing",
|
||||||
"RMBG",
|
"RMBG",
|
||||||
"Segment"
|
"Segment"
|
||||||
],
|
],
|
||||||
@@ -298,7 +301,15 @@
|
|||||||
"title_aux": "ComfyUI-DareMerge"
|
"title_aux": "ComfyUI-DareMerge"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/5x00/ComfyUI-VLM_Captions": [
|
"https://github.com/5x00/ComfyUI-PiAPI-Faceswap": [
|
||||||
|
[
|
||||||
|
"Face Swapper"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-PiAPI-Faceswap"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/5x00/ComfyUI-VLM-Captions": [
|
||||||
[
|
[
|
||||||
"Image To Caption"
|
"Image To Caption"
|
||||||
],
|
],
|
||||||
@@ -1225,6 +1236,27 @@
|
|||||||
"title_aux": "ComfyUI Nodes for External Tooling"
|
"title_aux": "ComfyUI Nodes for External Tooling"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes": [
|
||||||
|
[
|
||||||
|
"Advanced_Upscale_Image_Using_Model",
|
||||||
|
"Capped_Float_Positive",
|
||||||
|
"Capped_Int_Positive",
|
||||||
|
"Embedding_Selector",
|
||||||
|
"Fast_Color_Match",
|
||||||
|
"Fast_Film_Grain",
|
||||||
|
"Get_Side_Length_Of_Image",
|
||||||
|
"Image_Dimensions",
|
||||||
|
"Image_Tiler",
|
||||||
|
"Image_Untiler",
|
||||||
|
"Int_Divide_Rounded",
|
||||||
|
"Sampler_Settings",
|
||||||
|
"Smart_Seed",
|
||||||
|
"Triple_Prompt"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI GOAT Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Aerse/ComfyUI-Seed-Nodes": [
|
"https://github.com/Aerse/ComfyUI-Seed-Nodes": [
|
||||||
[
|
[
|
||||||
"Seed-Nodes: ImagePixelator",
|
"Seed-Nodes: ImagePixelator",
|
||||||
@@ -1348,6 +1380,15 @@
|
|||||||
"title_aux": "Jovi_GLSL"
|
"title_aux": "Jovi_GLSL"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Amorano/Jovi_Spout": [
|
||||||
|
[
|
||||||
|
"SPOUT READER (JOV_SP) \ud83d\udcfa",
|
||||||
|
"SPOUT WRITER (JOV_SP) \ud83c\udfa5"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Jovi_Spout"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Amorano/Jovimetrix": [
|
"https://github.com/Amorano/Jovimetrix": [
|
||||||
[
|
[
|
||||||
"ADJUST (JOV) \ud83d\udd78\ufe0f",
|
"ADJUST (JOV) \ud83d\udd78\ufe0f",
|
||||||
@@ -2184,6 +2225,14 @@
|
|||||||
"title_aux": "ImageTransceiver - ComfyUI"
|
"title_aux": "ImageTransceiver - ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel": [
|
||||||
|
[
|
||||||
|
"Timestep Shift Model"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-TimestepShiftModel"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/ChrisColeTech/ComfyUI-Elegant-Resource-Monitor": [
|
"https://github.com/ChrisColeTech/ComfyUI-Elegant-Resource-Monitor": [
|
||||||
[
|
[
|
||||||
"Resource Monitor"
|
"Resource Monitor"
|
||||||
@@ -2210,11 +2259,14 @@
|
|||||||
"ClownInpaint",
|
"ClownInpaint",
|
||||||
"ClownInpaintSimple",
|
"ClownInpaintSimple",
|
||||||
"ClownSampler",
|
"ClownSampler",
|
||||||
|
"ClownSamplerAdvanced",
|
||||||
"ClownsharKSampler",
|
"ClownsharKSampler",
|
||||||
"ClownsharKSamplerAutomation",
|
"ClownsharKSamplerAutomation",
|
||||||
|
"ClownsharKSamplerGuide",
|
||||||
"ClownsharKSamplerGuides",
|
"ClownsharKSamplerGuides",
|
||||||
"ClownsharKSamplerOptions",
|
"ClownsharKSamplerOptions",
|
||||||
"ClownsharKSamplerOptions_SDE_Noise",
|
"ClownsharKSamplerOptions_SDE_Noise",
|
||||||
|
"ClownsharkSamplerOptions_FrameWeights",
|
||||||
"Conditioning Recast FP64",
|
"Conditioning Recast FP64",
|
||||||
"ConditioningAdd",
|
"ConditioningAdd",
|
||||||
"ConditioningAverageScheduler",
|
"ConditioningAverageScheduler",
|
||||||
@@ -2309,6 +2361,7 @@
|
|||||||
"UltraSharkSampler",
|
"UltraSharkSampler",
|
||||||
"UltraSharkSampler Tiled",
|
"UltraSharkSampler Tiled",
|
||||||
"UltraSharkSamplerRBTest",
|
"UltraSharkSamplerRBTest",
|
||||||
|
"VAEEncodeAdvanced",
|
||||||
"VGG19StyleTransfer",
|
"VGG19StyleTransfer",
|
||||||
"Zampler_Test"
|
"Zampler_Test"
|
||||||
],
|
],
|
||||||
@@ -2486,6 +2539,7 @@
|
|||||||
"ImageMinusMask",
|
"ImageMinusMask",
|
||||||
"Light or Dark",
|
"Light or Dark",
|
||||||
"Load Random Images",
|
"Load Random Images",
|
||||||
|
"Mask Preprocess Morphology",
|
||||||
"PhotoShop Transfer",
|
"PhotoShop Transfer",
|
||||||
"Yuan"
|
"Yuan"
|
||||||
],
|
],
|
||||||
@@ -2598,10 +2652,14 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/DesertPixelAi/ComfyUI-Desert-Pixel-Nodes": [
|
"https://github.com/DesertPixelAi/ComfyUI-Desert-Pixel-Nodes": [
|
||||||
[
|
[
|
||||||
|
"DP 10 String Switch",
|
||||||
"DP 2 String Switch",
|
"DP 2 String Switch",
|
||||||
"DP 5 String Switch",
|
"DP 5 String Switch",
|
||||||
|
"DP Add Weight To String Sdxl",
|
||||||
|
"DP Advanced Weight String Sdxl",
|
||||||
"DP Animation Calculator 10 Inputs",
|
"DP Animation Calculator 10 Inputs",
|
||||||
"DP Animation Calculator 5 Inputs",
|
"DP Animation Calculator 5 Inputs",
|
||||||
|
"DP Art Style Generator",
|
||||||
"DP Aspect Ratio Picker",
|
"DP Aspect Ratio Picker",
|
||||||
"DP Big Letters",
|
"DP Big Letters",
|
||||||
"DP Broken Token",
|
"DP Broken Token",
|
||||||
@@ -2626,6 +2684,9 @@
|
|||||||
"DP Image Empty Latent Switch SDXL",
|
"DP Image Empty Latent Switch SDXL",
|
||||||
"DP Image Slide Show",
|
"DP Image Slide Show",
|
||||||
"DP Image Strip",
|
"DP Image Strip",
|
||||||
|
"DP Image Switch 10",
|
||||||
|
"DP Image Switch 3",
|
||||||
|
"DP Image Switch 5",
|
||||||
"DP Int 0-1000",
|
"DP Int 0-1000",
|
||||||
"DP Int 0-1000 4 Step",
|
"DP Int 0-1000 4 Step",
|
||||||
"DP Int 0-1000 8 Step",
|
"DP Int 0-1000 8 Step",
|
||||||
@@ -2650,6 +2711,7 @@
|
|||||||
"DP Random Mode Switch",
|
"DP Random Mode Switch",
|
||||||
"DP Random Psychedelic Punk Generator",
|
"DP Random Psychedelic Punk Generator",
|
||||||
"DP Random Superhero Prompt Generator",
|
"DP Random Superhero Prompt Generator",
|
||||||
|
"DP Random Vehicle Generator",
|
||||||
"DP Save Preview Image",
|
"DP Save Preview Image",
|
||||||
"DP Set New Model Folder Link",
|
"DP Set New Model Folder Link",
|
||||||
"DP String Text",
|
"DP String Text",
|
||||||
@@ -2767,9 +2829,27 @@
|
|||||||
"AD_TextListToString",
|
"AD_TextListToString",
|
||||||
"AD_TextSaver",
|
"AD_TextSaver",
|
||||||
"AD_TxtToCSVCombiner",
|
"AD_TxtToCSVCombiner",
|
||||||
"AD_ZipSave"
|
"AD_ZipSave",
|
||||||
|
"AD_advanced-padding",
|
||||||
|
"AD_color-image",
|
||||||
|
"AD_image-concat",
|
||||||
|
"AD_image-resize",
|
||||||
|
"AD_mockup-maker",
|
||||||
|
"AD_poster-maker",
|
||||||
|
"AD_prompt-saver",
|
||||||
|
"ImageResize",
|
||||||
|
"Incrementer \ud83e\udeb4",
|
||||||
|
"TextAppendNode",
|
||||||
|
"Width and height for scaling image to ideal resolution \ud83e\udeb4",
|
||||||
|
"Width and height from aspect ratio \ud83e\udeb4",
|
||||||
|
"YANC.MultilineString",
|
||||||
|
"comfyui-easy-padding",
|
||||||
|
"image concat mask"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
|
"author": "ComfyUI Addoor",
|
||||||
|
"description": "Save prompts to CSV file with customizable naming pattern",
|
||||||
|
"title": "ComfyUI-PromptSaver",
|
||||||
"title_aux": "ComfyUI-Addoor"
|
"title_aux": "ComfyUI-Addoor"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -3343,6 +3423,16 @@
|
|||||||
"title_aux": "IC-Light-ComfyUI-Node"
|
"title_aux": "IC-Light-ComfyUI-Node"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite": [
|
||||||
|
[
|
||||||
|
"AutoImageResize",
|
||||||
|
"GroupLink",
|
||||||
|
"VariablesInjector"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_Finetuners_Suite"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/FizzleDorf/ComfyUI-AIT": [
|
"https://github.com/FizzleDorf/ComfyUI-AIT": [
|
||||||
[
|
[
|
||||||
"AIT_Unet_Loader",
|
"AIT_Unet_Loader",
|
||||||
@@ -3754,7 +3844,8 @@
|
|||||||
"RH_ExecuteNode",
|
"RH_ExecuteNode",
|
||||||
"RH_ImageUploaderNode",
|
"RH_ImageUploaderNode",
|
||||||
"RH_NodeInfoListNode",
|
"RH_NodeInfoListNode",
|
||||||
"RH_SettingsNode"
|
"RH_SettingsNode",
|
||||||
|
"RH_Utils"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI_RH_APICall"
|
"title_aux": "ComfyUI_RH_APICall"
|
||||||
@@ -3924,6 +4015,7 @@
|
|||||||
"AgentMemoryProvider",
|
"AgentMemoryProvider",
|
||||||
"AgentNode",
|
"AgentNode",
|
||||||
"BasicRecursionFilterNode",
|
"BasicRecursionFilterNode",
|
||||||
|
"DocumentChunkRecursionFilterNode",
|
||||||
"DocumentProcessor",
|
"DocumentProcessor",
|
||||||
"LinuxMemoryDirectory",
|
"LinuxMemoryDirectory",
|
||||||
"QueryNode"
|
"QueryNode"
|
||||||
@@ -3935,6 +4027,17 @@
|
|||||||
"title_aux": "ComfyUI_LiteLLM"
|
"title_aux": "ComfyUI_LiteLLM"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Hullabalo/ComfyUI-Loop": [
|
||||||
|
[
|
||||||
|
"ImageCutLoop",
|
||||||
|
"ImagePasteLoop",
|
||||||
|
"LoadImageSimple",
|
||||||
|
"SaveImageSimple"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Loop"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/IDGallagher/ComfyUI-IG-Motion-I2V": [
|
"https://github.com/IDGallagher/ComfyUI-IG-Motion-I2V": [
|
||||||
[
|
[
|
||||||
"MI2V Flow Animator",
|
"MI2V Flow Animator",
|
||||||
@@ -4136,12 +4239,12 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/Isulion/ComfyUI_Isulion": [
|
"https://github.com/Isulion/ComfyUI_Isulion": [
|
||||||
[
|
[
|
||||||
|
"CustomTextNode",
|
||||||
"DisplayImageFromURL",
|
"DisplayImageFromURL",
|
||||||
"IsuCollage_Node",
|
"IsuCollage_Node",
|
||||||
"Isulion Civitai Image Display",
|
"Isulion Civitai Image Display",
|
||||||
"Isulion Civitai Model Explorer",
|
"Isulion Civitai Model Explorer",
|
||||||
"Isulion Civitai Trending",
|
"Isulion Civitai Trending",
|
||||||
"Isulion Video Prompt Generator \ud83c\udfa5",
|
|
||||||
"IsulionActionGenerator",
|
"IsulionActionGenerator",
|
||||||
"IsulionAlienWorldGenerator",
|
"IsulionAlienWorldGenerator",
|
||||||
"IsulionAnimalBehaviorGenerator",
|
"IsulionAnimalBehaviorGenerator",
|
||||||
@@ -4170,6 +4273,7 @@
|
|||||||
"IsulionStyleMixer",
|
"IsulionStyleMixer",
|
||||||
"IsulionTechGenerator",
|
"IsulionTechGenerator",
|
||||||
"IsulionTimeOfDayGenerator",
|
"IsulionTimeOfDayGenerator",
|
||||||
|
"IsulionVideoPromptGenerator",
|
||||||
"IsulionWeatherGenerator",
|
"IsulionWeatherGenerator",
|
||||||
"\ud83d\udca4 IsulionShutdown"
|
"\ud83d\udca4 IsulionShutdown"
|
||||||
],
|
],
|
||||||
@@ -4335,6 +4439,16 @@
|
|||||||
"title_aux": "ComfyUI-AI-Assistant"
|
"title_aux": "ComfyUI-AI-Assistant"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node": [
|
||||||
|
[
|
||||||
|
"RandomIntegerNodeEfficient",
|
||||||
|
"RandomIntegerNodeEfficientAdvanced",
|
||||||
|
"RandomIntegerNodeList"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Random-Int-Divisor-Node"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Jannchie/ComfyUI-J": [
|
"https://github.com/Jannchie/ComfyUI-J": [
|
||||||
[
|
[
|
||||||
"DiffusersCompelPromptEmbedding",
|
"DiffusersCompelPromptEmbedding",
|
||||||
@@ -4916,6 +5030,16 @@
|
|||||||
"title_aux": "ComfyUI-DenoiseChooser"
|
"title_aux": "ComfyUI-DenoiseChooser"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/KunmyonChoi/ComfyUI_S3_direct": [
|
||||||
|
[
|
||||||
|
"Direct Load Image From S3",
|
||||||
|
"Direct Save Image To S3",
|
||||||
|
"Save VHS Video to S3"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_S3_direct"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/KwaiVGI/ComfyUI-KLingAI-API": [
|
"https://github.com/KwaiVGI/ComfyUI-KLingAI-API": [
|
||||||
[
|
[
|
||||||
"Client",
|
"Client",
|
||||||
@@ -4946,6 +5070,14 @@
|
|||||||
"title_aux": "ComfyUI_LG_FFT"
|
"title_aux": "ComfyUI_LG_FFT"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/LAOGOU-666/Comfyui-LG_Relight": [
|
||||||
|
[
|
||||||
|
"LG_Relight"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Comfyui-LG_Relight"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/LEv145/images-grid-comfy-plugin": [
|
"https://github.com/LEv145/images-grid-comfy-plugin": [
|
||||||
[
|
[
|
||||||
"GridAnnotation",
|
"GridAnnotation",
|
||||||
@@ -5203,6 +5335,17 @@
|
|||||||
"title_aux": "ComfyUI-RawSaver"
|
"title_aux": "ComfyUI-RawSaver"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-AniDoc": [
|
||||||
|
[
|
||||||
|
"AniDocLoader",
|
||||||
|
"AniDocSampler",
|
||||||
|
"GetAniDocControlnetImages",
|
||||||
|
"LoadCoTracker"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-AniDoc"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/LucipherDev/ComfyUI-Golden-Noise": [
|
"https://github.com/LucipherDev/ComfyUI-Golden-Noise": [
|
||||||
[
|
[
|
||||||
"GoldenNoise"
|
"GoldenNoise"
|
||||||
@@ -5482,6 +5625,14 @@
|
|||||||
"title_aux": "SimpleToolsNodes"
|
"title_aux": "SimpleToolsNodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Meettya/ComfyUI-OneForOne": [
|
||||||
|
[
|
||||||
|
"OFO Image Fit"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-OneForOne"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/MetaGLM/ComfyUI-ZhipuAI-Platform": [
|
"https://github.com/MetaGLM/ComfyUI-ZhipuAI-Platform": [
|
||||||
[
|
[
|
||||||
"VideoReportData",
|
"VideoReportData",
|
||||||
@@ -5769,23 +5920,39 @@
|
|||||||
"DJZ-LoadLatentV2",
|
"DJZ-LoadLatentV2",
|
||||||
"DJZDatamosh",
|
"DJZDatamosh",
|
||||||
"DJZDatamoshV2",
|
"DJZDatamoshV2",
|
||||||
|
"DatasetWordcloud",
|
||||||
|
"DinskyPlus",
|
||||||
|
"DinskyPlusV2",
|
||||||
"DjzDatamoshV3",
|
"DjzDatamoshV3",
|
||||||
"DjzDatamoshV4",
|
"DjzDatamoshV4",
|
||||||
"DjzDatamoshV5",
|
"DjzDatamoshV5",
|
||||||
"DjzDatamoshV6",
|
"DjzDatamoshV6",
|
||||||
"DjzDatamoshV7",
|
"DjzDatamoshV7",
|
||||||
|
"FractalGenerator",
|
||||||
|
"FractalGeneratorV2",
|
||||||
|
"FractalGeneratorV3",
|
||||||
"ImageSizeAdjuster",
|
"ImageSizeAdjuster",
|
||||||
"ImageSizeAdjusterV2",
|
"ImageSizeAdjusterV2",
|
||||||
"ImageSizeAdjusterV3",
|
"ImageSizeAdjusterV3",
|
||||||
|
"LoadTextDirectory",
|
||||||
"LoadVideoDirectory",
|
"LoadVideoDirectory",
|
||||||
|
"ParametricMeshGen",
|
||||||
|
"ParametricMeshGenV2",
|
||||||
"ProjectFilePathNode",
|
"ProjectFilePathNode",
|
||||||
|
"PromptCleaner",
|
||||||
|
"PromptInject",
|
||||||
|
"PromptSwap",
|
||||||
|
"SequentialNumberGenerator",
|
||||||
"StringWeights",
|
"StringWeights",
|
||||||
|
"TrianglesPlus",
|
||||||
|
"TrianglesPlusV2",
|
||||||
"ZenkaiPrompt",
|
"ZenkaiPrompt",
|
||||||
"ZenkaiPromptV2",
|
"ZenkaiPromptV2",
|
||||||
"ZenkaiWildcard",
|
"ZenkaiWildcard",
|
||||||
"ZenkaiWildcardV2"
|
"ZenkaiWildcardV2"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
|
"author": "DJZ-Nodes",
|
||||||
"title_aux": "DJZ-Nodes"
|
"title_aux": "DJZ-Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -7297,7 +7464,8 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/ShmuelRonen/ComfyUI-LatentSyncWrapper": [
|
"https://github.com/ShmuelRonen/ComfyUI-LatentSyncWrapper": [
|
||||||
[
|
[
|
||||||
"D_LatentSyncNode"
|
"D_LatentSyncNode",
|
||||||
|
"D_VideoLengthAdjuster"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-LatentSyncWrapper"
|
"title_aux": "ComfyUI-LatentSyncWrapper"
|
||||||
@@ -7667,8 +7835,10 @@
|
|||||||
"SDVN Image Info",
|
"SDVN Image Info",
|
||||||
"SDVN Image Layout",
|
"SDVN Image Layout",
|
||||||
"SDVN Image Repeat",
|
"SDVN Image Repeat",
|
||||||
|
"SDVN Image Scraper",
|
||||||
"SDVN Image Size",
|
"SDVN Image Size",
|
||||||
"SDVN Inpaint",
|
"SDVN Inpaint",
|
||||||
|
"SDVN Join Parameter",
|
||||||
"SDVN KSampler",
|
"SDVN KSampler",
|
||||||
"SDVN Load Checkpoint",
|
"SDVN Load Checkpoint",
|
||||||
"SDVN Load Image",
|
"SDVN Load Image",
|
||||||
@@ -7676,6 +7846,7 @@
|
|||||||
"SDVN Load Image From List",
|
"SDVN Load Image From List",
|
||||||
"SDVN Load Image Url",
|
"SDVN Load Image Url",
|
||||||
"SDVN Load Lora",
|
"SDVN Load Lora",
|
||||||
|
"SDVN Load Model",
|
||||||
"SDVN Load Text",
|
"SDVN Load Text",
|
||||||
"SDVN Logic",
|
"SDVN Logic",
|
||||||
"SDVN Lora Download",
|
"SDVN Lora Download",
|
||||||
@@ -7848,6 +8019,7 @@
|
|||||||
"Divide Image and Select Tile",
|
"Divide Image and Select Tile",
|
||||||
"Divide and Conquer Algorithm",
|
"Divide and Conquer Algorithm",
|
||||||
"Divide and Conquer Algorithm (No Upscale)",
|
"Divide and Conquer Algorithm (No Upscale)",
|
||||||
|
"Load Images into List",
|
||||||
"Make Size"
|
"Make Size"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -8693,6 +8865,18 @@
|
|||||||
"title_aux": "Tripo for ComfyUI"
|
"title_aux": "Tripo for ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Vaibhavs10/ComfyUI-DDUF": [
|
||||||
|
[
|
||||||
|
"DDUFLoader",
|
||||||
|
"DiffusersModelMakeup",
|
||||||
|
"DiffusersPipelineLoader",
|
||||||
|
"DiffusersSchedulerLoader",
|
||||||
|
"DiffusersSimpleSampler"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-DDUF"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/VangengLab/ComfyUI-LivePortrait_v2": [
|
"https://github.com/VangengLab/ComfyUI-LivePortrait_v2": [
|
||||||
[
|
[
|
||||||
"LivePortraitProcess_animal"
|
"LivePortraitProcess_animal"
|
||||||
@@ -9131,7 +9315,9 @@
|
|||||||
"InstaCText",
|
"InstaCText",
|
||||||
"InstaCTextML",
|
"InstaCTextML",
|
||||||
"InstaPromptMultipleStyleSelector",
|
"InstaPromptMultipleStyleSelector",
|
||||||
"InstaPromptStyleSelector"
|
"InstaPromptStyleSelector",
|
||||||
|
"LoadVideo",
|
||||||
|
"PreViewVideo"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "InstaSD nodes for ComfyUI"
|
"title_aux": "InstaSD nodes for ComfyUI"
|
||||||
@@ -9171,6 +9357,7 @@
|
|||||||
"https://github.com/Wicloz/ComfyUI-Simply-Nodes": [
|
"https://github.com/Wicloz/ComfyUI-Simply-Nodes": [
|
||||||
[
|
[
|
||||||
"WF_ConditionalLoraLoader",
|
"WF_ConditionalLoraLoader",
|
||||||
|
"WF_FixupPixelArt",
|
||||||
"WF_MultilineText",
|
"WF_MultilineText",
|
||||||
"WF_RandomStyle",
|
"WF_RandomStyle",
|
||||||
"WF_ResolutionSDXL",
|
"WF_ResolutionSDXL",
|
||||||
@@ -10798,6 +10985,14 @@
|
|||||||
"title_aux": "Mikey Nodes"
|
"title_aux": "Mikey Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/bear2b/comfyui-argo-nodes": [
|
||||||
|
[
|
||||||
|
"ColorMatrixGPU"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ColorMatrixGPU Node for ComfyUI"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/bedovyy/ComfyUI_NAIDGenerator": [
|
"https://github.com/bedovyy/ComfyUI_NAIDGenerator": [
|
||||||
[
|
[
|
||||||
"ColorizeNAID",
|
"ColorizeNAID",
|
||||||
@@ -10843,6 +11038,14 @@
|
|||||||
"title_aux": "ComfyUI_TextAssets"
|
"title_aux": "ComfyUI_TextAssets"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux": [
|
||||||
|
[
|
||||||
|
"OneButtonPromptFlux"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_OneButtonPrompt_Flux"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/bitaffinity/ComfyUI_HF_Inference": [
|
"https://github.com/bitaffinity/ComfyUI_HF_Inference": [
|
||||||
[
|
[
|
||||||
"Classification",
|
"Classification",
|
||||||
@@ -11104,6 +11307,15 @@
|
|||||||
"title_aux": "Remembering utils"
|
"title_aux": "Remembering utils"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/bongsang/ComfyUI-Bongsang": [
|
||||||
|
[
|
||||||
|
"AnyInfo",
|
||||||
|
"RgbChannel"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Bongsang"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/boredofnames/ComfyUI-ntfy": [
|
"https://github.com/boredofnames/ComfyUI-ntfy": [
|
||||||
[
|
[
|
||||||
"Ntfy",
|
"Ntfy",
|
||||||
@@ -11358,6 +11570,15 @@
|
|||||||
"title_aux": "ComfyUI SimpleTools Suit"
|
"title_aux": "ComfyUI SimpleTools Suit"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/cenzijing/ComfyUI-Markmap": [
|
||||||
|
[
|
||||||
|
"MarkmapNode",
|
||||||
|
"ReadHtmlNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Markmap"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/cerspense/ComfyUI_cspnodes": [
|
"https://github.com/cerspense/ComfyUI_cspnodes": [
|
||||||
[
|
[
|
||||||
"DepthToNormalMap",
|
"DepthToNormalMap",
|
||||||
@@ -12535,12 +12756,8 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/civen-cn/ComfyUI-Whisper-Translator": [
|
"https://github.com/civen-cn/ComfyUI-Whisper-Translator": [
|
||||||
[
|
[
|
||||||
"Add Subtitles To Background",
|
|
||||||
"Add Subtitles To Frames",
|
|
||||||
"Add Subtitles To FramesX",
|
"Add Subtitles To FramesX",
|
||||||
"Apply Whisper",
|
"Apply WhisperX"
|
||||||
"Apply WhisperX",
|
|
||||||
"Resize Cropped Subtitles"
|
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI Whisper Translator"
|
"title_aux": "ComfyUI Whisper Translator"
|
||||||
@@ -13965,19 +14182,26 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/drmbt/comfyui-dreambait-nodes": [
|
"https://github.com/drmbt/comfyui-dreambait-nodes": [
|
||||||
[
|
[
|
||||||
|
"AudioInfoPlus",
|
||||||
"BoolPlusPlus",
|
"BoolPlusPlus",
|
||||||
"DRMBT_AspectPadImageForOutpainting",
|
"DRMBT_AspectPadImageForOutpainting",
|
||||||
"DRMBT_LoadMedia",
|
"DRMBT_LoadMedia",
|
||||||
"DRMBT_MultiMinMax",
|
"DRMBT_MultiMinMax",
|
||||||
"DRMBT_String_Item_Menu",
|
"DRMBT_String_Item_Menu",
|
||||||
|
"DownloadAndLoadMiniCPMV",
|
||||||
|
"DreambaitFolderOpener",
|
||||||
|
"DynamicDictionary",
|
||||||
"ImageFrameBlend",
|
"ImageFrameBlend",
|
||||||
"ImageResizeFaceAware",
|
"ImageResizeFaceAware",
|
||||||
"ListItemExtract",
|
"ListItemExtract",
|
||||||
"ListItemSelector",
|
"ListItemSelector",
|
||||||
|
"LoadAudioPlus",
|
||||||
|
"MiniCPMVNode",
|
||||||
"MusicGen",
|
"MusicGen",
|
||||||
"NormalizeAudio",
|
"NormalizeAudio",
|
||||||
"NumberPlusPlus",
|
"NumberPlusPlus",
|
||||||
"NumberRemap",
|
"NumberRemap",
|
||||||
|
"Qwen2AudioInstruct",
|
||||||
"SwitchDuo",
|
"SwitchDuo",
|
||||||
"TextLineSelect",
|
"TextLineSelect",
|
||||||
"TextLinesToList",
|
"TextLinesToList",
|
||||||
@@ -14263,7 +14487,8 @@
|
|||||||
"Genera.BatchTester",
|
"Genera.BatchTester",
|
||||||
"Genera.GCPStorageNode",
|
"Genera.GCPStorageNode",
|
||||||
"Genera.MaskDrawer",
|
"Genera.MaskDrawer",
|
||||||
"Genera.Utils"
|
"Genera.Utils",
|
||||||
|
"PainterNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-GeneraNodes"
|
"title_aux": "ComfyUI-GeneraNodes"
|
||||||
@@ -14348,6 +14573,14 @@
|
|||||||
"title_aux": "ComfyUI-Showrunner-Utils"
|
"title_aux": "ComfyUI-Showrunner-Utils"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora": [
|
||||||
|
[
|
||||||
|
"HunyuanVideoLoraLoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-HunyuanVideoMultiLora"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/fairy-root/ComfyUI-GLHF": [
|
"https://github.com/fairy-root/ComfyUI-GLHF": [
|
||||||
[
|
[
|
||||||
"glhf_chat"
|
"glhf_chat"
|
||||||
@@ -14891,6 +15124,22 @@
|
|||||||
"title_aux": "ComfyUI_FaceShaper"
|
"title_aux": "ComfyUI_FaceShaper"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/fssorc/ComfyUI_RopeWrapper": [
|
||||||
|
[
|
||||||
|
"RopeVideoCombine",
|
||||||
|
"RopeWrapper_DetectNode",
|
||||||
|
"RopeWrapper_FaceRestore",
|
||||||
|
"RopeWrapper_LoadModels",
|
||||||
|
"RopeWrapper_LoadSwapInfo",
|
||||||
|
"RopeWrapper_OptionNode",
|
||||||
|
"RopeWrapper_SaveSwapInfo",
|
||||||
|
"RopeWrapper_SwapNode",
|
||||||
|
"RopeWrapper_SwapNodeTEST"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_RopeWrapper"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/fssorc/ComfyUI_pose_inter": [
|
"https://github.com/fssorc/ComfyUI_pose_inter": [
|
||||||
[
|
[
|
||||||
"Pose_Inter"
|
"Pose_Inter"
|
||||||
@@ -15369,6 +15618,7 @@
|
|||||||
"Griptape Util: Create Agent Modelfile",
|
"Griptape Util: Create Agent Modelfile",
|
||||||
"Griptape Util: Create Model from Modelfile",
|
"Griptape Util: Create Model from Modelfile",
|
||||||
"Griptape Util: Remove Ollama Model",
|
"Griptape Util: Remove Ollama Model",
|
||||||
|
"Griptape Util: Switch Node",
|
||||||
"Griptape Vector Store Driver: Amazon OpenSearch",
|
"Griptape Vector Store Driver: Amazon OpenSearch",
|
||||||
"Griptape Vector Store Driver: Azure MongoDB",
|
"Griptape Vector Store Driver: Azure MongoDB",
|
||||||
"Griptape Vector Store Driver: Griptape Cloud",
|
"Griptape Vector Store Driver: Griptape Cloud",
|
||||||
@@ -15606,6 +15856,7 @@
|
|||||||
"LLavaLoader",
|
"LLavaLoader",
|
||||||
"LorapathLoader",
|
"LorapathLoader",
|
||||||
"Lorebook",
|
"Lorebook",
|
||||||
|
"Mcp_tool",
|
||||||
"RSS_loader",
|
"RSS_loader",
|
||||||
"RSS_tool",
|
"RSS_tool",
|
||||||
"SpeedChange",
|
"SpeedChange",
|
||||||
@@ -15849,6 +16100,14 @@
|
|||||||
"title_aux": "ComfyUI 3D Pose Editor"
|
"title_aux": "ComfyUI 3D Pose Editor"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/hodanajan/optimal-crop-resolution": [
|
||||||
|
[
|
||||||
|
"AspectRatioCalculator"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "optimal-crop-resolution"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/holchan/ComfyUI-ModelDownloader": [
|
"https://github.com/holchan/ComfyUI-ModelDownloader": [
|
||||||
[
|
[
|
||||||
"LoRADownloader",
|
"LoRADownloader",
|
||||||
@@ -16225,6 +16484,72 @@
|
|||||||
"title_aux": "comfyui_extra_api"
|
"title_aux": "comfyui_extra_api"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/inventorado/ComfyUI_NNT": [
|
||||||
|
[
|
||||||
|
"NntAnalyzeInferenceMetrics",
|
||||||
|
"NntAnalyzeModel",
|
||||||
|
"NntCompileModel",
|
||||||
|
"NntDatasetToImageTensor",
|
||||||
|
"NntDatasetToTargetTensor",
|
||||||
|
"NntDatasetToTensor",
|
||||||
|
"NntDatasetToTextTensor",
|
||||||
|
"NntDefineActivationLayer",
|
||||||
|
"NntDefineAlibiPositionalBias",
|
||||||
|
"NntDefineConvLayer",
|
||||||
|
"NntDefineDenseLayer",
|
||||||
|
"NntDefineFlattenLayer",
|
||||||
|
"NntDefineGRULayer",
|
||||||
|
"NntDefineLSTMLayer",
|
||||||
|
"NntDefineLinearAttention",
|
||||||
|
"NntDefineLocalAttention",
|
||||||
|
"NntDefineMultiheadAttention",
|
||||||
|
"NntDefineNormLayer",
|
||||||
|
"NntDefinePoolingLayer",
|
||||||
|
"NntDefinePositionalEncoding",
|
||||||
|
"NntDefineRNNLayer",
|
||||||
|
"NntDefineReformerAttention",
|
||||||
|
"NntDefineRelativePositionBias",
|
||||||
|
"NntDefineReshapeLayer",
|
||||||
|
"NntDefineRotaryPositionalEmbedding",
|
||||||
|
"NntDefineTransformerEncoderLayer",
|
||||||
|
"NntDefineTransformerXLAttention",
|
||||||
|
"NntDefineVanillaAttention",
|
||||||
|
"NntEditModelLayers",
|
||||||
|
"NntEvaluatePredictions",
|
||||||
|
"NntFileLoader",
|
||||||
|
"NntFineTuneModel",
|
||||||
|
"NntHuggingFaceDataLoader",
|
||||||
|
"NntImageToTensor",
|
||||||
|
"NntInference",
|
||||||
|
"NntInputLayer",
|
||||||
|
"NntLoadModel",
|
||||||
|
"NntMergeExtendModel",
|
||||||
|
"NntPlotTensors",
|
||||||
|
"NntRandomTensorGenerator",
|
||||||
|
"NntSHAPSummaryNode",
|
||||||
|
"NntSaveModel",
|
||||||
|
"NntShowLayerStack",
|
||||||
|
"NntShowModelInfo",
|
||||||
|
"NntTensorElementToImage",
|
||||||
|
"NntTensorOperations",
|
||||||
|
"NntTensorSlice",
|
||||||
|
"NntTensorToText",
|
||||||
|
"NntTextBatchProcessor",
|
||||||
|
"NntTextToTensor",
|
||||||
|
"NntTimeSeriesDataLoader",
|
||||||
|
"NntTorchvisionDataLoader",
|
||||||
|
"NntTorchvisionDatasets",
|
||||||
|
"NntTrainModel",
|
||||||
|
"NntTrainingHyperparameters",
|
||||||
|
"NntVisualizeConfidenceScores",
|
||||||
|
"NntVisualizeGraph",
|
||||||
|
"NntVisualizePredictionMetrics",
|
||||||
|
"NntVisualizeTrainingMetrics"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI Neural Network Toolkit NNT "
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/iwanders/ComfyUI_nodes": [
|
"https://github.com/iwanders/ComfyUI_nodes": [
|
||||||
[
|
[
|
||||||
"IW_JsonPickItem",
|
"IW_JsonPickItem",
|
||||||
@@ -16538,7 +16863,9 @@
|
|||||||
"Ksampler Parameters JK",
|
"Ksampler Parameters JK",
|
||||||
"Latent Crop Offset JK",
|
"Latent Crop Offset JK",
|
||||||
"Latent Upscale Parameters Extract JK",
|
"Latent Upscale Parameters Extract JK",
|
||||||
|
"Load Image With Alpha JK",
|
||||||
"Load Image With Metadata JK",
|
"Load Image With Metadata JK",
|
||||||
|
"Make Image Grid JK",
|
||||||
"Metadata Pipe Extract JK",
|
"Metadata Pipe Extract JK",
|
||||||
"Metadata Pipe JK",
|
"Metadata Pipe JK",
|
||||||
"NodesState JK",
|
"NodesState JK",
|
||||||
@@ -16609,6 +16936,7 @@
|
|||||||
"Save Image with Metadata Flow JK",
|
"Save Image with Metadata Flow JK",
|
||||||
"Save Image with Metadata JK",
|
"Save Image with Metadata JK",
|
||||||
"Scale To Resolution JK",
|
"Scale To Resolution JK",
|
||||||
|
"Split Image Grid JK",
|
||||||
"Stability Conservative Upscale",
|
"Stability Conservative Upscale",
|
||||||
"Stability Control Sketch",
|
"Stability Control Sketch",
|
||||||
"Stability Control Structure",
|
"Stability Control Structure",
|
||||||
@@ -16737,12 +17065,14 @@
|
|||||||
[
|
[
|
||||||
"ComfyOnlineSaveFile",
|
"ComfyOnlineSaveFile",
|
||||||
"ComfyOnlineUploadAnything",
|
"ComfyOnlineUploadAnything",
|
||||||
|
"EmbeddingLoader",
|
||||||
"LoadHunyuanLoraFromCivitAI",
|
"LoadHunyuanLoraFromCivitAI",
|
||||||
"LoadHunyuanLoraFromComfyOnline",
|
"LoadHunyuanLoraFromComfyOnline",
|
||||||
"LoadHunyuanLoraFromHF",
|
"LoadHunyuanLoraFromHF",
|
||||||
"LoadLoraFromCivitAI",
|
"LoadLoraFromCivitAI",
|
||||||
"LoadLoraFromComfyOnline",
|
"LoadLoraFromComfyOnline",
|
||||||
"LoadLoraFromHF"
|
"LoadLoraFromHF",
|
||||||
|
"SaveAudioAsWav"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui-model-dynamic-loader"
|
"title_aux": "comfyui-model-dynamic-loader"
|
||||||
@@ -17723,6 +18053,7 @@
|
|||||||
"HyVideoReSampler",
|
"HyVideoReSampler",
|
||||||
"HyVideoSTG",
|
"HyVideoSTG",
|
||||||
"HyVideoSampler",
|
"HyVideoSampler",
|
||||||
|
"HyVideoTeaCache",
|
||||||
"HyVideoTextEmbedsLoad",
|
"HyVideoTextEmbedsLoad",
|
||||||
"HyVideoTextEmbedsSave",
|
"HyVideoTextEmbedsSave",
|
||||||
"HyVideoTextEncode",
|
"HyVideoTextEncode",
|
||||||
@@ -18467,6 +18798,15 @@
|
|||||||
"title_aux": "ComfyUI nodes to use CrossImageAttention"
|
"title_aux": "ComfyUI nodes to use CrossImageAttention"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/leeguandong/ComfyUI_FluxCustomId": [
|
||||||
|
[
|
||||||
|
"ApplyCustomIDFlux",
|
||||||
|
"CustomIDModelLoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_FluxCustomId"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/leeguandong/ComfyUI_InternVL2": [
|
"https://github.com/leeguandong/ComfyUI_InternVL2": [
|
||||||
[
|
[
|
||||||
"DynamicPreprocess",
|
"DynamicPreprocess",
|
||||||
@@ -18802,6 +19142,8 @@
|
|||||||
"https://github.com/lldacing/ComfyUI_BiRefNet_ll": [
|
"https://github.com/lldacing/ComfyUI_BiRefNet_ll": [
|
||||||
[
|
[
|
||||||
"AutoDownloadBiRefNetModel",
|
"AutoDownloadBiRefNetModel",
|
||||||
|
"BlurFusionForegroundEstimation",
|
||||||
|
"GetMaskByBiRefNet",
|
||||||
"LoadRembgByBiRefNetModel",
|
"LoadRembgByBiRefNetModel",
|
||||||
"RembgByBiRefNet",
|
"RembgByBiRefNet",
|
||||||
"RembgByBiRefNetAdvanced"
|
"RembgByBiRefNetAdvanced"
|
||||||
@@ -18916,6 +19258,7 @@
|
|||||||
[
|
[
|
||||||
"FluxModCheckpointLoader",
|
"FluxModCheckpointLoader",
|
||||||
"FluxModCheckpointLoaderMini",
|
"FluxModCheckpointLoaderMini",
|
||||||
|
"FluxModSamplerWrapper",
|
||||||
"KSamplerMod",
|
"KSamplerMod",
|
||||||
"SkipLayerForward"
|
"SkipLayerForward"
|
||||||
],
|
],
|
||||||
@@ -20696,6 +21039,16 @@
|
|||||||
"title_aux": "comfyui_dynamic_util_nodes"
|
"title_aux": "comfyui_dynamic_util_nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/muxueChen/ComfyUI_NTCosyVoice": [
|
||||||
|
[
|
||||||
|
"NTCosyVoiceCrossLingualSampler",
|
||||||
|
"NTCosyVoiceInstruct2Sampler",
|
||||||
|
"NTCosyVoiceZeroShotSampler"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "CosyVoice2 for ComfyUI"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/muzi12888/ComfyUI-PoseKeypoint-Mask": [
|
"https://github.com/muzi12888/ComfyUI-PoseKeypoint-Mask": [
|
||||||
[
|
[
|
||||||
"Image Brightness",
|
"Image Brightness",
|
||||||
@@ -21345,13 +21698,15 @@
|
|||||||
"ConditioningZeroOutCombine",
|
"ConditioningZeroOutCombine",
|
||||||
"ConvertTimestepToSigma",
|
"ConvertTimestepToSigma",
|
||||||
"DynSamplerSelect",
|
"DynSamplerSelect",
|
||||||
|
"DynamicThresholdingSimplePost",
|
||||||
"EmptyLatentImageAR",
|
"EmptyLatentImageAR",
|
||||||
"FreeU2PPM",
|
"FreeU2PPM",
|
||||||
"Guidance Limiter",
|
"Guidance Limiter",
|
||||||
"LatentOperationTonemapLuminance",
|
"LatentOperationTonemapLuminance",
|
||||||
"LatentToMaskBB",
|
"LatentToMaskBB",
|
||||||
"LatentToWidthHeight",
|
"LatentToWidthHeight",
|
||||||
"PPMSamplerSelect"
|
"PPMSamplerSelect",
|
||||||
|
"RescaleCFGPost"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-ppm"
|
"title_aux": "ComfyUI-ppm"
|
||||||
@@ -21379,6 +21734,14 @@
|
|||||||
"title_aux": "sd-perturbed-attention"
|
"title_aux": "sd-perturbed-attention"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/pandaer119/ComfyUI_pandai": [
|
||||||
|
[
|
||||||
|
"pandai_dsk_node"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_pandai"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/pants007/comfy-pants": [
|
"https://github.com/pants007/comfy-pants": [
|
||||||
[
|
[
|
||||||
"CLIPTextEncodeAIO",
|
"CLIPTextEncodeAIO",
|
||||||
@@ -21457,6 +21820,16 @@
|
|||||||
"title_aux": "\u2728 Clarity AI - Creative Image Upscaler and Enhancer for ComfyUI"
|
"title_aux": "\u2728 Clarity AI - Creative Image Upscaler and Enhancer for ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/phuvinh010701/ComfyUI-Nudenet": [
|
||||||
|
[
|
||||||
|
"ApplyNudenet",
|
||||||
|
"FilterdLabel",
|
||||||
|
"NudenetModelLoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Nudenet"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/phyblas/paint-by-example_comfyui": [
|
"https://github.com/phyblas/paint-by-example_comfyui": [
|
||||||
[
|
[
|
||||||
"PaintbyExampleAdvanced",
|
"PaintbyExampleAdvanced",
|
||||||
@@ -21522,10 +21895,6 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/playbook3d/playbook3d-comfyui-nodes": [
|
"https://github.com/playbook3d/playbook3d-comfyui-nodes": [
|
||||||
[
|
[
|
||||||
"Beauty Pass Sequence",
|
|
||||||
"Depth Pass Sequence",
|
|
||||||
"Mask Pass Sequence",
|
|
||||||
"Outline Pass Sequence",
|
|
||||||
"Playbook Beauty",
|
"Playbook Beauty",
|
||||||
"Playbook Beauty Sequence",
|
"Playbook Beauty Sequence",
|
||||||
"Playbook Boolean",
|
"Playbook Boolean",
|
||||||
@@ -22596,6 +22965,24 @@
|
|||||||
"title_aux": "ComfyUI_Nimbus-Pack"
|
"title_aux": "ComfyUI_Nimbus-Pack"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/sh570655308/ComfyUI-GigapixelAI": [
|
||||||
|
[
|
||||||
|
"GigapixelAI",
|
||||||
|
"GigapixelModelSettings",
|
||||||
|
"GigapixelUpscaleSettings"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-GigapixelAI"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/sh570655308/ComfyUI-TopazVideoAI": [
|
||||||
|
[
|
||||||
|
"TopazVideoAI"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-TopazVideoAI"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/shadowcz007/comfyui-Image-reward": [
|
"https://github.com/shadowcz007/comfyui-Image-reward": [
|
||||||
[
|
[
|
||||||
"ImageBatchToList_",
|
"ImageBatchToList_",
|
||||||
@@ -23156,9 +23543,7 @@
|
|||||||
"https://github.com/smthemex/ComfyUI_EchoMimic": [
|
"https://github.com/smthemex/ComfyUI_EchoMimic": [
|
||||||
[
|
[
|
||||||
"Echo_LoadModel",
|
"Echo_LoadModel",
|
||||||
"Echo_Sampler",
|
"Echo_Sampler"
|
||||||
"Echo_Upscaleloader",
|
|
||||||
"Echo_VideoUpscale"
|
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI_EchoMimic"
|
"title_aux": "ComfyUI_EchoMimic"
|
||||||
@@ -23630,16 +24015,6 @@
|
|||||||
"title_aux": "Latent Mirror node for ComfyUI"
|
"title_aux": "Latent Mirror node for ComfyUI"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale": [
|
|
||||||
[
|
|
||||||
"UltimateSDUpscale",
|
|
||||||
"UltimateSDUpscaleCustomSample",
|
|
||||||
"UltimateSDUpscaleNoUpscale"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "UltimateSDUpscale"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/ssitu/ComfyUI_fabric": [
|
"https://github.com/ssitu/ComfyUI_fabric": [
|
||||||
[
|
[
|
||||||
"FABRICPatchModel",
|
"FABRICPatchModel",
|
||||||
@@ -24422,6 +24797,14 @@
|
|||||||
"title_aux": "comfyui-webcam-node"
|
"title_aux": "comfyui-webcam-node"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/umiyuki/comfyui-pad-to-eight": [
|
||||||
|
[
|
||||||
|
"Pad To Eight"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI Pad To Eight"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/un-seen/comfyui-tensorops": [
|
"https://github.com/un-seen/comfyui-tensorops": [
|
||||||
[
|
[
|
||||||
"BackgroundSelect",
|
"BackgroundSelect",
|
||||||
|
|||||||
@@ -260,6 +260,16 @@
|
|||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This is the ComfyUI custom node template repository that anyone can use to create their own custom nodes."
|
"description": "This is the ComfyUI custom node template repository that anyone can use to create their own custom nodes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "laogou666",
|
||||||
|
"title": "Comfyui_LG_Advertisement",
|
||||||
|
"reference": "https://github.com/LAOGOU-666/Comfyui_LG_Advertisement",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LAOGOU-666/Comfyui_LG_Advertisement"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A node for demonstration."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -172,6 +172,7 @@
|
|||||||
"CLIPTextEncodeControlnet",
|
"CLIPTextEncodeControlnet",
|
||||||
"CLIPTextEncodeFlux",
|
"CLIPTextEncodeFlux",
|
||||||
"CLIPTextEncodeHunyuanDiT",
|
"CLIPTextEncodeHunyuanDiT",
|
||||||
|
"CLIPTextEncodePixArtAlpha",
|
||||||
"CLIPTextEncodeSD3",
|
"CLIPTextEncodeSD3",
|
||||||
"CLIPTextEncodeSDXL",
|
"CLIPTextEncodeSDXL",
|
||||||
"CLIPTextEncodeSDXLRefiner",
|
"CLIPTextEncodeSDXLRefiner",
|
||||||
@@ -189,6 +190,7 @@
|
|||||||
"ConditioningSetAreaStrength",
|
"ConditioningSetAreaStrength",
|
||||||
"ConditioningSetMask",
|
"ConditioningSetMask",
|
||||||
"ConditioningSetTimestepRange",
|
"ConditioningSetTimestepRange",
|
||||||
|
"ConditioningStableAudio",
|
||||||
"ConditioningZeroOut",
|
"ConditioningZeroOut",
|
||||||
"ControlNetApply",
|
"ControlNetApply",
|
||||||
"ControlNetApplyAdvanced",
|
"ControlNetApplyAdvanced",
|
||||||
@@ -202,7 +204,9 @@
|
|||||||
"DisableNoise",
|
"DisableNoise",
|
||||||
"DualCFGGuider",
|
"DualCFGGuider",
|
||||||
"DualCLIPLoader",
|
"DualCLIPLoader",
|
||||||
|
"EmptyHunyuanLatentVideo",
|
||||||
"EmptyImage",
|
"EmptyImage",
|
||||||
|
"EmptyLTXVLatentVideo",
|
||||||
"EmptyLatentAudio",
|
"EmptyLatentAudio",
|
||||||
"EmptyLatentImage",
|
"EmptyLatentImage",
|
||||||
"EmptyMochiLatentVideo",
|
"EmptyMochiLatentVideo",
|
||||||
@@ -245,6 +249,9 @@
|
|||||||
"KSamplerAdvanced",
|
"KSamplerAdvanced",
|
||||||
"KSamplerSelect",
|
"KSamplerSelect",
|
||||||
"KarrasScheduler",
|
"KarrasScheduler",
|
||||||
|
"LTXVConditioning",
|
||||||
|
"LTXVImgToVideo",
|
||||||
|
"LTXVScheduler",
|
||||||
"LaplaceScheduler",
|
"LaplaceScheduler",
|
||||||
"LatentAdd",
|
"LatentAdd",
|
||||||
"LatentApplyOperation",
|
"LatentApplyOperation",
|
||||||
@@ -265,6 +272,8 @@
|
|||||||
"LatentSubtract",
|
"LatentSubtract",
|
||||||
"LatentUpscale",
|
"LatentUpscale",
|
||||||
"LatentUpscaleBy",
|
"LatentUpscaleBy",
|
||||||
|
"Load3D",
|
||||||
|
"Load3DAnimation",
|
||||||
"LoadAudio",
|
"LoadAudio",
|
||||||
"LoadImage",
|
"LoadImage",
|
||||||
"LoadImageMask",
|
"LoadImageMask",
|
||||||
@@ -272,11 +281,15 @@
|
|||||||
"LoraLoader",
|
"LoraLoader",
|
||||||
"LoraLoaderModelOnly",
|
"LoraLoaderModelOnly",
|
||||||
"LoraSave",
|
"LoraSave",
|
||||||
|
"Mahiro",
|
||||||
"MaskComposite",
|
"MaskComposite",
|
||||||
"MaskToImage",
|
"MaskToImage",
|
||||||
"ModelMergeAdd",
|
"ModelMergeAdd",
|
||||||
|
"ModelMergeAuraflow",
|
||||||
"ModelMergeBlocks",
|
"ModelMergeBlocks",
|
||||||
"ModelMergeFlux1",
|
"ModelMergeFlux1",
|
||||||
|
"ModelMergeLTXV",
|
||||||
|
"ModelMergeMochiPreview",
|
||||||
"ModelMergeSD1",
|
"ModelMergeSD1",
|
||||||
"ModelMergeSD2",
|
"ModelMergeSD2",
|
||||||
"ModelMergeSD35_Large",
|
"ModelMergeSD35_Large",
|
||||||
@@ -289,6 +302,7 @@
|
|||||||
"ModelSamplingContinuousV",
|
"ModelSamplingContinuousV",
|
||||||
"ModelSamplingDiscrete",
|
"ModelSamplingDiscrete",
|
||||||
"ModelSamplingFlux",
|
"ModelSamplingFlux",
|
||||||
|
"ModelSamplingLTXV",
|
||||||
"ModelSamplingSD3",
|
"ModelSamplingSD3",
|
||||||
"ModelSamplingStableCascade",
|
"ModelSamplingStableCascade",
|
||||||
"ModelSave",
|
"ModelSave",
|
||||||
@@ -301,6 +315,7 @@
|
|||||||
"PhotoMakerLoader",
|
"PhotoMakerLoader",
|
||||||
"PolyexponentialScheduler",
|
"PolyexponentialScheduler",
|
||||||
"PorterDuffImageComposite",
|
"PorterDuffImageComposite",
|
||||||
|
"Preview3D",
|
||||||
"PreviewAudio",
|
"PreviewAudio",
|
||||||
"PreviewImage",
|
"PreviewImage",
|
||||||
"RandomNoise",
|
"RandomNoise",
|
||||||
@@ -334,6 +349,7 @@
|
|||||||
"SelfAttentionGuidance",
|
"SelfAttentionGuidance",
|
||||||
"SetLatentNoiseMask",
|
"SetLatentNoiseMask",
|
||||||
"SetUnionControlNetType",
|
"SetUnionControlNetType",
|
||||||
|
"SkipLayerGuidanceDiT",
|
||||||
"SkipLayerGuidanceSD3",
|
"SkipLayerGuidanceSD3",
|
||||||
"SolidMask",
|
"SolidMask",
|
||||||
"SplitImageWithAlpha",
|
"SplitImageWithAlpha",
|
||||||
@@ -462,6 +478,17 @@
|
|||||||
"title_aux": "comfyui-custom-nodes"
|
"title_aux": "comfyui-custom-nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/jhj0517/ComfyUI-CustomNodes-Template": [
|
||||||
|
[
|
||||||
|
"(Down)Load My Model",
|
||||||
|
"Calculate Minus",
|
||||||
|
"Calculate Plus",
|
||||||
|
"Example Output Node"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-CustomNodes-Template"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/jtong/comfyui-jtong-workflow": [
|
"https://github.com/jtong/comfyui-jtong-workflow": [
|
||||||
[
|
[
|
||||||
"Example",
|
"Example",
|
||||||
|
|||||||
@@ -50,9 +50,8 @@ def check_file_logging():
|
|||||||
global enable_file_logging
|
global enable_file_logging
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false':
|
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false':
|
||||||
@@ -79,12 +78,12 @@ custom_nodes_base_path = folder_paths.get_folder_paths('custom_nodes')[0]
|
|||||||
manager_files_path = os.path.abspath(os.path.join(folder_paths.get_user_directory(), 'default', 'ComfyUI-Manager'))
|
manager_files_path = os.path.abspath(os.path.join(folder_paths.get_user_directory(), 'default', 'ComfyUI-Manager'))
|
||||||
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
||||||
restore_snapshot_path = os.path.join(manager_files_path, "startup-scripts", "restore-snapshot.json")
|
restore_snapshot_path = os.path.join(manager_files_path, "startup-scripts", "restore-snapshot.json")
|
||||||
|
manager_config_path = os.path.join(manager_files_path, 'config.ini')
|
||||||
|
|
||||||
git_script_path = os.path.join(comfyui_manager_path, "git_helper.py")
|
|
||||||
cm_cli_path = os.path.join(comfyui_manager_path, "cm-cli.py")
|
cm_cli_path = os.path.join(comfyui_manager_path, "cm-cli.py")
|
||||||
|
|
||||||
|
|
||||||
cm_global.pip_overrides = {}
|
cm_global.pip_overrides = {'numpy': 'numpy<2', 'ultralytics': 'ultralytics==8.3.40'}
|
||||||
if os.path.exists(manager_pip_overrides_path):
|
if os.path.exists(manager_pip_overrides_path):
|
||||||
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||||
cm_global.pip_overrides = json.load(json_file)
|
cm_global.pip_overrides = json.load(json_file)
|
||||||
@@ -318,6 +317,7 @@ except Exception as e:
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
import git # noqa: F401
|
import git # noqa: F401
|
||||||
|
import toml # noqa: F401
|
||||||
except ModuleNotFoundError:
|
except ModuleNotFoundError:
|
||||||
my_path = os.path.dirname(__file__)
|
my_path = os.path.dirname(__file__)
|
||||||
requirements_path = os.path.join(my_path, "requirements.txt")
|
requirements_path = os.path.join(my_path, "requirements.txt")
|
||||||
@@ -344,6 +344,9 @@ print("** Platform:", platform.system())
|
|||||||
print("** Python version:", sys.version)
|
print("** Python version:", sys.version)
|
||||||
print("** Python executable:", sys.executable)
|
print("** Python executable:", sys.executable)
|
||||||
print("** ComfyUI Path:", comfy_path)
|
print("** ComfyUI Path:", comfy_path)
|
||||||
|
print("** User directory:", folder_paths.user_directory)
|
||||||
|
print("** ComfyUI-Manager config path:", manager_config_path)
|
||||||
|
|
||||||
|
|
||||||
if log_path_base is not None:
|
if log_path_base is not None:
|
||||||
print("** Log path:", os.path.abspath(f'{log_path_base}.log'))
|
print("** Log path:", os.path.abspath(f'{log_path_base}.log'))
|
||||||
@@ -354,9 +357,8 @@ else:
|
|||||||
def read_downgrade_blacklist():
|
def read_downgrade_blacklist():
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'downgrade_blacklist' in default_conf:
|
if 'downgrade_blacklist' in default_conf:
|
||||||
@@ -375,13 +377,12 @@ def check_bypass_ssl():
|
|||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
import ssl
|
import ssl
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'bypass_ssl' in default_conf and default_conf['bypass_ssl'].lower() == 'true':
|
if 'bypass_ssl' in default_conf and default_conf['bypass_ssl'].lower() == 'true':
|
||||||
print("[ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see ComfyUI-Manager/config.ini)")
|
print(f"[ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see {manager_config_path})")
|
||||||
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
|
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
@@ -436,6 +437,14 @@ def is_installed(name):
|
|||||||
elif manager_util.StrictVersion(pkg) > manager_util.StrictVersion(match.group(3)):
|
elif manager_util.StrictVersion(pkg) > manager_util.StrictVersion(match.group(3)):
|
||||||
print(f"[SKIP] Downgrading pip package isn't allowed: {name.lower()} (cur={pkg})")
|
print(f"[SKIP] Downgrading pip package isn't allowed: {name.lower()} (cur={pkg})")
|
||||||
|
|
||||||
|
if match.group(2) == '==':
|
||||||
|
if manager_util.StrictVersion(pkg) < manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
|
if match.group(2) == '~=':
|
||||||
|
if manager_util.StrictVersion(pkg) == manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
return True # prevent downgrade
|
return True # prevent downgrade
|
||||||
|
|
||||||
|
|
||||||
@@ -639,9 +648,8 @@ manager_util.clear_pip_cache()
|
|||||||
def check_windows_event_loop_policy():
|
def check_windows_event_loop_policy():
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'windows_selector_event_loop_policy' in default_conf and default_conf['windows_selector_event_loop_policy'].lower() == 'true':
|
if 'windows_selector_event_loop_policy' in default_conf and default_conf['windows_selector_event_loop_policy'].lower() == 'true':
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "comfyui-manager"
|
name = "comfyui-manager"
|
||||||
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||||
version = "3.3.2"
|
version = "3.5"
|
||||||
license = { file = "LICENSE.txt" }
|
license = { file = "LICENSE.txt" }
|
||||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
.\python_embeded\python.exe -s -m pip install gitpython
|
.\python_embeded\python.exe -s -m pip install gitpython
|
||||||
.\python_embeded\python.exe -c "import git; git.Repo.clone_from('https://github.com/ltdrdata/ComfyUI-Manager', './ComfyUI/custom_nodes/ComfyUI-Manager')"
|
.\python_embeded\python.exe -c "import git; git.Repo.clone_from('https://github.com/ltdrdata/ComfyUI-Manager', './ComfyUI/custom_nodes/comfyui-manager')"
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
import git
|
|
||||||
|
|
||||||
commit_hash = "a361cc1"
|
|
||||||
|
|
||||||
repo = git.Repo('.')
|
|
||||||
|
|
||||||
if repo.is_dirty():
|
|
||||||
repo.git.stash()
|
|
||||||
|
|
||||||
repo.git.update_ref("refs/remotes/origin/main", commit_hash)
|
|
||||||
repo.remotes.origin.fetch()
|
|
||||||
repo.git.pull("origin", "main")
|
|
||||||
Reference in New Issue
Block a user