Compare commits
31 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 |
@@ -225,7 +225,7 @@ In `ComfyUI-Manager` V3.0 and later, configuration files and dynamically generat
|
||||
|
||||
## 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.
|
||||
|
||||
|
||||
19
cm-cli.py
19
cm-cli.py
@@ -12,6 +12,7 @@ from rich import print
|
||||
from typing_extensions import List, Annotated
|
||||
import re
|
||||
import git
|
||||
import importlib
|
||||
|
||||
|
||||
sys.path.append(os.path.dirname(__file__))
|
||||
@@ -70,9 +71,8 @@ core.check_invalid_nodes()
|
||||
def read_downgrade_blacklist():
|
||||
try:
|
||||
import configparser
|
||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
||||
config = configparser.ConfigParser()
|
||||
config.read(config_path)
|
||||
config.read(core.manager_config.path)
|
||||
default_conf = config['default']
|
||||
|
||||
if 'downgrade_blacklist' in default_conf:
|
||||
@@ -88,12 +88,20 @@ read_downgrade_blacklist() # This is a preparation step for manager_core
|
||||
|
||||
|
||||
class Ctx:
|
||||
folder_paths = None
|
||||
|
||||
def __init__(self):
|
||||
self.channel = 'default'
|
||||
self.no_deps = False
|
||||
self.mode = 'cache'
|
||||
self.user_directory = None
|
||||
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):
|
||||
if mode is not None:
|
||||
@@ -127,9 +135,9 @@ class Ctx:
|
||||
core.update_user_directory(user_directory)
|
||||
|
||||
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:
|
||||
cm_global.pip_overrides = json.load(json_file)
|
||||
cm_global.pip_overrides = {'numpy': 'numpy<2'}
|
||||
|
||||
@staticmethod
|
||||
def get_startup_scripts_path():
|
||||
@@ -145,7 +153,10 @@ class Ctx:
|
||||
|
||||
@staticmethod
|
||||
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()
|
||||
|
||||
@@ -4004,6 +4004,17 @@
|
||||
"install_type": "git-clone",
|
||||
"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",
|
||||
"title": "select_folder_path_easy",
|
||||
@@ -11361,7 +11372,7 @@
|
||||
"https://github.com/GraftingRayman/ComfyUI_GraftingRayman"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Image Manipulation Nodes"
|
||||
"description": "Image Manipulation and Prompt Generation Nodes"
|
||||
},
|
||||
{
|
||||
"author": "royceschultz",
|
||||
@@ -13323,6 +13334,16 @@
|
||||
"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."
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"title": "ComfyUI YetAnotherSafetyChecker",
|
||||
@@ -14066,6 +14087,16 @@
|
||||
"install_type": "git-clone",
|
||||
"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",
|
||||
"title": "Propmt Worker",
|
||||
@@ -16133,6 +16164,16 @@
|
||||
"install_type": "git-clone",
|
||||
"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",
|
||||
"title": "roblox-comfyui-nodes",
|
||||
@@ -17899,13 +17940,23 @@
|
||||
{
|
||||
"author": "5x00",
|
||||
"title": "ComfyUI-VLM_Captions",
|
||||
"reference": "https://github.com/5x00/ComfyUI-VLM_Captions",
|
||||
"reference": "https://github.com/5x00/ComfyUI-VLM-Captions",
|
||||
"files": [
|
||||
"https://github.com/5x00/ComfyUI-VLM_Captions"
|
||||
"https://github.com/5x00/ComfyUI-VLM-Captions"
|
||||
],
|
||||
"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."
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"title": "RES4LYF",
|
||||
@@ -18797,6 +18848,258 @@
|
||||
"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."
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -40,6 +40,8 @@
|
||||
"https://github.com/1038lab/ComfyUI-RMBG": [
|
||||
[
|
||||
"ClothesSegment",
|
||||
"FashionSegmentAccessories",
|
||||
"FashionSegmentClothing",
|
||||
"RMBG",
|
||||
"Segment"
|
||||
],
|
||||
@@ -299,7 +301,15 @@
|
||||
"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"
|
||||
],
|
||||
@@ -1226,6 +1236,27 @@
|
||||
"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": [
|
||||
[
|
||||
"Seed-Nodes: ImagePixelator",
|
||||
@@ -1349,6 +1380,15 @@
|
||||
"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": [
|
||||
[
|
||||
"ADJUST (JOV) \ud83d\udd78\ufe0f",
|
||||
@@ -2185,6 +2225,14 @@
|
||||
"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": [
|
||||
[
|
||||
"Resource Monitor"
|
||||
@@ -2211,11 +2259,14 @@
|
||||
"ClownInpaint",
|
||||
"ClownInpaintSimple",
|
||||
"ClownSampler",
|
||||
"ClownSamplerAdvanced",
|
||||
"ClownsharKSampler",
|
||||
"ClownsharKSamplerAutomation",
|
||||
"ClownsharKSamplerGuide",
|
||||
"ClownsharKSamplerGuides",
|
||||
"ClownsharKSamplerOptions",
|
||||
"ClownsharKSamplerOptions_SDE_Noise",
|
||||
"ClownsharkSamplerOptions_FrameWeights",
|
||||
"Conditioning Recast FP64",
|
||||
"ConditioningAdd",
|
||||
"ConditioningAverageScheduler",
|
||||
@@ -2310,6 +2361,7 @@
|
||||
"UltraSharkSampler",
|
||||
"UltraSharkSampler Tiled",
|
||||
"UltraSharkSamplerRBTest",
|
||||
"VAEEncodeAdvanced",
|
||||
"VGG19StyleTransfer",
|
||||
"Zampler_Test"
|
||||
],
|
||||
@@ -2600,10 +2652,14 @@
|
||||
],
|
||||
"https://github.com/DesertPixelAi/ComfyUI-Desert-Pixel-Nodes": [
|
||||
[
|
||||
"DP 10 String Switch",
|
||||
"DP 2 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 5 Inputs",
|
||||
"DP Art Style Generator",
|
||||
"DP Aspect Ratio Picker",
|
||||
"DP Big Letters",
|
||||
"DP Broken Token",
|
||||
@@ -2628,6 +2684,9 @@
|
||||
"DP Image Empty Latent Switch SDXL",
|
||||
"DP Image Slide Show",
|
||||
"DP Image Strip",
|
||||
"DP Image Switch 10",
|
||||
"DP Image Switch 3",
|
||||
"DP Image Switch 5",
|
||||
"DP Int 0-1000",
|
||||
"DP Int 0-1000 4 Step",
|
||||
"DP Int 0-1000 8 Step",
|
||||
@@ -2652,6 +2711,7 @@
|
||||
"DP Random Mode Switch",
|
||||
"DP Random Psychedelic Punk Generator",
|
||||
"DP Random Superhero Prompt Generator",
|
||||
"DP Random Vehicle Generator",
|
||||
"DP Save Preview Image",
|
||||
"DP Set New Model Folder Link",
|
||||
"DP String Text",
|
||||
@@ -2769,9 +2829,27 @@
|
||||
"AD_TextListToString",
|
||||
"AD_TextSaver",
|
||||
"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"
|
||||
}
|
||||
],
|
||||
@@ -3345,6 +3423,16 @@
|
||||
"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": [
|
||||
[
|
||||
"AIT_Unet_Loader",
|
||||
@@ -3756,7 +3844,8 @@
|
||||
"RH_ExecuteNode",
|
||||
"RH_ImageUploaderNode",
|
||||
"RH_NodeInfoListNode",
|
||||
"RH_SettingsNode"
|
||||
"RH_SettingsNode",
|
||||
"RH_Utils"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_RH_APICall"
|
||||
@@ -3926,6 +4015,7 @@
|
||||
"AgentMemoryProvider",
|
||||
"AgentNode",
|
||||
"BasicRecursionFilterNode",
|
||||
"DocumentChunkRecursionFilterNode",
|
||||
"DocumentProcessor",
|
||||
"LinuxMemoryDirectory",
|
||||
"QueryNode"
|
||||
@@ -3937,6 +4027,17 @@
|
||||
"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": [
|
||||
[
|
||||
"MI2V Flow Animator",
|
||||
@@ -4138,12 +4239,12 @@
|
||||
],
|
||||
"https://github.com/Isulion/ComfyUI_Isulion": [
|
||||
[
|
||||
"CustomTextNode",
|
||||
"DisplayImageFromURL",
|
||||
"IsuCollage_Node",
|
||||
"Isulion Civitai Image Display",
|
||||
"Isulion Civitai Model Explorer",
|
||||
"Isulion Civitai Trending",
|
||||
"Isulion Video Prompt Generator \ud83c\udfa5",
|
||||
"IsulionActionGenerator",
|
||||
"IsulionAlienWorldGenerator",
|
||||
"IsulionAnimalBehaviorGenerator",
|
||||
@@ -4172,6 +4273,7 @@
|
||||
"IsulionStyleMixer",
|
||||
"IsulionTechGenerator",
|
||||
"IsulionTimeOfDayGenerator",
|
||||
"IsulionVideoPromptGenerator",
|
||||
"IsulionWeatherGenerator",
|
||||
"\ud83d\udca4 IsulionShutdown"
|
||||
],
|
||||
@@ -4337,6 +4439,16 @@
|
||||
"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": [
|
||||
[
|
||||
"DiffusersCompelPromptEmbedding",
|
||||
@@ -4918,6 +5030,16 @@
|
||||
"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": [
|
||||
[
|
||||
"Client",
|
||||
@@ -4948,6 +5070,14 @@
|
||||
"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": [
|
||||
[
|
||||
"GridAnnotation",
|
||||
@@ -5495,6 +5625,14 @@
|
||||
"title_aux": "SimpleToolsNodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/Meettya/ComfyUI-OneForOne": [
|
||||
[
|
||||
"OFO Image Fit"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-OneForOne"
|
||||
}
|
||||
],
|
||||
"https://github.com/MetaGLM/ComfyUI-ZhipuAI-Platform": [
|
||||
[
|
||||
"VideoReportData",
|
||||
@@ -5782,24 +5920,39 @@
|
||||
"DJZ-LoadLatentV2",
|
||||
"DJZDatamosh",
|
||||
"DJZDatamoshV2",
|
||||
"DatasetWordcloud",
|
||||
"DinskyPlus",
|
||||
"DinskyPlusV2",
|
||||
"DjzDatamoshV3",
|
||||
"DjzDatamoshV4",
|
||||
"DjzDatamoshV5",
|
||||
"DjzDatamoshV6",
|
||||
"DjzDatamoshV7",
|
||||
"FractalGenerator",
|
||||
"FractalGeneratorV2",
|
||||
"FractalGeneratorV3",
|
||||
"ImageSizeAdjuster",
|
||||
"ImageSizeAdjusterV2",
|
||||
"ImageSizeAdjusterV3",
|
||||
"LoadTextDirectory",
|
||||
"LoadVideoDirectory",
|
||||
"ParametricMeshGen",
|
||||
"ParametricMeshGenV2",
|
||||
"ProjectFilePathNode",
|
||||
"PromptCleaner",
|
||||
"PromptInject",
|
||||
"PromptSwap",
|
||||
"SequentialNumberGenerator",
|
||||
"StringWeights",
|
||||
"TrianglesPlus",
|
||||
"TrianglesPlusV2",
|
||||
"ZenkaiPrompt",
|
||||
"ZenkaiPromptV2",
|
||||
"ZenkaiWildcard",
|
||||
"ZenkaiWildcardV2"
|
||||
],
|
||||
{
|
||||
"author": "DJZ-Nodes",
|
||||
"title_aux": "DJZ-Nodes"
|
||||
}
|
||||
],
|
||||
@@ -7682,6 +7835,7 @@
|
||||
"SDVN Image Info",
|
||||
"SDVN Image Layout",
|
||||
"SDVN Image Repeat",
|
||||
"SDVN Image Scraper",
|
||||
"SDVN Image Size",
|
||||
"SDVN Inpaint",
|
||||
"SDVN Join Parameter",
|
||||
@@ -7865,6 +8019,7 @@
|
||||
"Divide Image and Select Tile",
|
||||
"Divide and Conquer Algorithm",
|
||||
"Divide and Conquer Algorithm (No Upscale)",
|
||||
"Load Images into List",
|
||||
"Make Size"
|
||||
],
|
||||
{
|
||||
@@ -9160,7 +9315,9 @@
|
||||
"InstaCText",
|
||||
"InstaCTextML",
|
||||
"InstaPromptMultipleStyleSelector",
|
||||
"InstaPromptStyleSelector"
|
||||
"InstaPromptStyleSelector",
|
||||
"LoadVideo",
|
||||
"PreViewVideo"
|
||||
],
|
||||
{
|
||||
"title_aux": "InstaSD nodes for ComfyUI"
|
||||
@@ -9200,6 +9357,7 @@
|
||||
"https://github.com/Wicloz/ComfyUI-Simply-Nodes": [
|
||||
[
|
||||
"WF_ConditionalLoraLoader",
|
||||
"WF_FixupPixelArt",
|
||||
"WF_MultilineText",
|
||||
"WF_RandomStyle",
|
||||
"WF_ResolutionSDXL",
|
||||
@@ -10880,6 +11038,14 @@
|
||||
"title_aux": "ComfyUI_TextAssets"
|
||||
}
|
||||
],
|
||||
"https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux": [
|
||||
[
|
||||
"OneButtonPromptFlux"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_OneButtonPrompt_Flux"
|
||||
}
|
||||
],
|
||||
"https://github.com/bitaffinity/ComfyUI_HF_Inference": [
|
||||
[
|
||||
"Classification",
|
||||
@@ -11141,6 +11307,15 @@
|
||||
"title_aux": "Remembering utils"
|
||||
}
|
||||
],
|
||||
"https://github.com/bongsang/ComfyUI-Bongsang": [
|
||||
[
|
||||
"AnyInfo",
|
||||
"RgbChannel"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Bongsang"
|
||||
}
|
||||
],
|
||||
"https://github.com/boredofnames/ComfyUI-ntfy": [
|
||||
[
|
||||
"Ntfy",
|
||||
@@ -11395,6 +11570,15 @@
|
||||
"title_aux": "ComfyUI SimpleTools Suit"
|
||||
}
|
||||
],
|
||||
"https://github.com/cenzijing/ComfyUI-Markmap": [
|
||||
[
|
||||
"MarkmapNode",
|
||||
"ReadHtmlNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Markmap"
|
||||
}
|
||||
],
|
||||
"https://github.com/cerspense/ComfyUI_cspnodes": [
|
||||
[
|
||||
"DepthToNormalMap",
|
||||
@@ -12572,12 +12756,8 @@
|
||||
],
|
||||
"https://github.com/civen-cn/ComfyUI-Whisper-Translator": [
|
||||
[
|
||||
"Add Subtitles To Background",
|
||||
"Add Subtitles To Frames",
|
||||
"Add Subtitles To FramesX",
|
||||
"Apply Whisper",
|
||||
"Apply WhisperX",
|
||||
"Resize Cropped Subtitles"
|
||||
"Apply WhisperX"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI Whisper Translator"
|
||||
@@ -14002,19 +14182,26 @@
|
||||
],
|
||||
"https://github.com/drmbt/comfyui-dreambait-nodes": [
|
||||
[
|
||||
"AudioInfoPlus",
|
||||
"BoolPlusPlus",
|
||||
"DRMBT_AspectPadImageForOutpainting",
|
||||
"DRMBT_LoadMedia",
|
||||
"DRMBT_MultiMinMax",
|
||||
"DRMBT_String_Item_Menu",
|
||||
"DownloadAndLoadMiniCPMV",
|
||||
"DreambaitFolderOpener",
|
||||
"DynamicDictionary",
|
||||
"ImageFrameBlend",
|
||||
"ImageResizeFaceAware",
|
||||
"ListItemExtract",
|
||||
"ListItemSelector",
|
||||
"LoadAudioPlus",
|
||||
"MiniCPMVNode",
|
||||
"MusicGen",
|
||||
"NormalizeAudio",
|
||||
"NumberPlusPlus",
|
||||
"NumberRemap",
|
||||
"Qwen2AudioInstruct",
|
||||
"SwitchDuo",
|
||||
"TextLineSelect",
|
||||
"TextLinesToList",
|
||||
@@ -14386,6 +14573,14 @@
|
||||
"title_aux": "ComfyUI-Showrunner-Utils"
|
||||
}
|
||||
],
|
||||
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora": [
|
||||
[
|
||||
"HunyuanVideoLoraLoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-HunyuanVideoMultiLora"
|
||||
}
|
||||
],
|
||||
"https://github.com/fairy-root/ComfyUI-GLHF": [
|
||||
[
|
||||
"glhf_chat"
|
||||
@@ -14929,6 +15124,22 @@
|
||||
"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": [
|
||||
[
|
||||
"Pose_Inter"
|
||||
@@ -15407,6 +15618,7 @@
|
||||
"Griptape Util: Create Agent Modelfile",
|
||||
"Griptape Util: Create Model from Modelfile",
|
||||
"Griptape Util: Remove Ollama Model",
|
||||
"Griptape Util: Switch Node",
|
||||
"Griptape Vector Store Driver: Amazon OpenSearch",
|
||||
"Griptape Vector Store Driver: Azure MongoDB",
|
||||
"Griptape Vector Store Driver: Griptape Cloud",
|
||||
@@ -15644,6 +15856,7 @@
|
||||
"LLavaLoader",
|
||||
"LorapathLoader",
|
||||
"Lorebook",
|
||||
"Mcp_tool",
|
||||
"RSS_loader",
|
||||
"RSS_tool",
|
||||
"SpeedChange",
|
||||
@@ -15887,6 +16100,14 @@
|
||||
"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": [
|
||||
[
|
||||
"LoRADownloader",
|
||||
@@ -16263,6 +16484,72 @@
|
||||
"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": [
|
||||
[
|
||||
"IW_JsonPickItem",
|
||||
@@ -16778,12 +17065,14 @@
|
||||
[
|
||||
"ComfyOnlineSaveFile",
|
||||
"ComfyOnlineUploadAnything",
|
||||
"EmbeddingLoader",
|
||||
"LoadHunyuanLoraFromCivitAI",
|
||||
"LoadHunyuanLoraFromComfyOnline",
|
||||
"LoadHunyuanLoraFromHF",
|
||||
"LoadLoraFromCivitAI",
|
||||
"LoadLoraFromComfyOnline",
|
||||
"LoadLoraFromHF"
|
||||
"LoadLoraFromHF",
|
||||
"SaveAudioAsWav"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-model-dynamic-loader"
|
||||
@@ -17764,6 +18053,7 @@
|
||||
"HyVideoReSampler",
|
||||
"HyVideoSTG",
|
||||
"HyVideoSampler",
|
||||
"HyVideoTeaCache",
|
||||
"HyVideoTextEmbedsLoad",
|
||||
"HyVideoTextEmbedsSave",
|
||||
"HyVideoTextEncode",
|
||||
@@ -18508,6 +18798,15 @@
|
||||
"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": [
|
||||
[
|
||||
"DynamicPreprocess",
|
||||
@@ -18843,6 +19142,8 @@
|
||||
"https://github.com/lldacing/ComfyUI_BiRefNet_ll": [
|
||||
[
|
||||
"AutoDownloadBiRefNetModel",
|
||||
"BlurFusionForegroundEstimation",
|
||||
"GetMaskByBiRefNet",
|
||||
"LoadRembgByBiRefNetModel",
|
||||
"RembgByBiRefNet",
|
||||
"RembgByBiRefNetAdvanced"
|
||||
@@ -18957,6 +19258,7 @@
|
||||
[
|
||||
"FluxModCheckpointLoader",
|
||||
"FluxModCheckpointLoaderMini",
|
||||
"FluxModSamplerWrapper",
|
||||
"KSamplerMod",
|
||||
"SkipLayerForward"
|
||||
],
|
||||
@@ -20737,6 +21039,16 @@
|
||||
"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": [
|
||||
[
|
||||
"Image Brightness",
|
||||
@@ -21422,6 +21734,14 @@
|
||||
"title_aux": "sd-perturbed-attention"
|
||||
}
|
||||
],
|
||||
"https://github.com/pandaer119/ComfyUI_pandai": [
|
||||
[
|
||||
"pandai_dsk_node"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_pandai"
|
||||
}
|
||||
],
|
||||
"https://github.com/pants007/comfy-pants": [
|
||||
[
|
||||
"CLIPTextEncodeAIO",
|
||||
@@ -21575,10 +21895,6 @@
|
||||
],
|
||||
"https://github.com/playbook3d/playbook3d-comfyui-nodes": [
|
||||
[
|
||||
"Beauty Pass Sequence",
|
||||
"Depth Pass Sequence",
|
||||
"Mask Pass Sequence",
|
||||
"Outline Pass Sequence",
|
||||
"Playbook Beauty",
|
||||
"Playbook Beauty Sequence",
|
||||
"Playbook Boolean",
|
||||
@@ -22649,6 +22965,24 @@
|
||||
"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": [
|
||||
[
|
||||
"ImageBatchToList_",
|
||||
@@ -23209,9 +23543,7 @@
|
||||
"https://github.com/smthemex/ComfyUI_EchoMimic": [
|
||||
[
|
||||
"Echo_LoadModel",
|
||||
"Echo_Sampler",
|
||||
"Echo_Upscaleloader",
|
||||
"Echo_VideoUpscale"
|
||||
"Echo_Sampler"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_EchoMimic"
|
||||
@@ -23683,16 +24015,6 @@
|
||||
"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": [
|
||||
[
|
||||
"FABRICPatchModel",
|
||||
@@ -24475,6 +24797,14 @@
|
||||
"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": [
|
||||
[
|
||||
"BackgroundSelect",
|
||||
|
||||
@@ -4,7 +4,6 @@ import os
|
||||
import traceback
|
||||
|
||||
import git
|
||||
import configparser
|
||||
import json
|
||||
import yaml
|
||||
import requests
|
||||
@@ -13,13 +12,13 @@ from git.remote import RemoteProgress
|
||||
|
||||
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
git_exe_path = os.environ.get('GIT_EXE_PATH')
|
||||
|
||||
if comfy_path is None:
|
||||
print("\n[bold yellow]WARN: The `COMFYUI_PATH` environment variable is not set. Assuming `custom_nodes/ComfyUI-Manager/../../` as the ComfyUI path.[/bold yellow]", file=sys.stderr)
|
||||
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__), '..', '..'))
|
||||
|
||||
|
||||
|
||||
def download_url(url, dest_folder, filename=None):
|
||||
# Ensure the destination folder exists
|
||||
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}")
|
||||
|
||||
|
||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
||||
nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json")
|
||||
working_directory = os.getcwd()
|
||||
|
||||
@@ -127,8 +125,17 @@ def gitcheck(path, do_fetch=False):
|
||||
|
||||
|
||||
def switch_to_default_branch(repo):
|
||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
||||
repo.git.checkout(default_branch)
|
||||
try:
|
||||
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):
|
||||
@@ -431,10 +438,8 @@ def restore_pip_snapshot(pips, options):
|
||||
|
||||
|
||||
def setup_environment():
|
||||
config = configparser.ConfigParser()
|
||||
config.read(config_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'])
|
||||
if git_exe_path is not None:
|
||||
git.Git().update_environment(GIT_PYTHON_GIT_EXECUTABLE=git_exe_path)
|
||||
|
||||
|
||||
setup_environment()
|
||||
|
||||
4715
github-stats.json
4715
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):
|
||||
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)
|
||||
if response.status_code == 200:
|
||||
@@ -129,3 +129,26 @@ def read_cnr_info(fullpath):
|
||||
return None
|
||||
except Exception:
|
||||
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 os
|
||||
import sys
|
||||
@@ -36,7 +41,7 @@ import manager_downloader
|
||||
from node_package import InstalledNodePackage
|
||||
|
||||
|
||||
version_code = [3, 3, 5]
|
||||
version_code = [3, 5]
|
||||
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
|
||||
|
||||
|
||||
def get_default_custom_nodes_path():
|
||||
global default_custom_nodes_path
|
||||
if default_custom_nodes_path is None:
|
||||
@@ -74,6 +80,16 @@ def get_comfyui_tag():
|
||||
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 = {}
|
||||
|
||||
|
||||
@@ -177,6 +193,10 @@ def update_user_directory(user_dir):
|
||||
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_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:
|
||||
import folder_paths
|
||||
@@ -263,6 +283,27 @@ def is_installed(name):
|
||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
||||
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()
|
||||
|
||||
|
||||
@@ -436,6 +477,7 @@ class UnifiedManager:
|
||||
cnr = self.get_cnr_by_repo(url)
|
||||
commit_hash = git_utils.get_commit_hash(fullpath)
|
||||
if cnr:
|
||||
cnr_utils.generate_cnr_id(fullpath, cnr['id'])
|
||||
return {'id': cnr['id'], 'cnr': cnr, 'ver': 'nightly', 'hash': commit_hash}
|
||||
else:
|
||||
url = os.path.basename(url)
|
||||
@@ -662,7 +704,7 @@ class UnifiedManager:
|
||||
res = {}
|
||||
|
||||
channel_url = normalize_channel(channel)
|
||||
if channel:
|
||||
if channel_url:
|
||||
if mode not in ['remote', 'local', 'cache']:
|
||||
print(f"[bold red]ERROR: Invalid mode is specified `--mode {mode}`[/bold red]", file=sys.stderr)
|
||||
return {}
|
||||
@@ -1237,6 +1279,8 @@ class UnifiedManager:
|
||||
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):
|
||||
orig_print(f"\x1b[2K\rUpdating: {node_id}", end='')
|
||||
|
||||
if version_spec is None:
|
||||
version_spec = self.resolve_unspecified_version(node_id, guess_mode='active')
|
||||
|
||||
@@ -1295,6 +1339,7 @@ class UnifiedManager:
|
||||
if version_spec == 'unknown':
|
||||
self.unknown_active_nodes[node_id] = to_path
|
||||
elif version_spec == 'nightly':
|
||||
cnr_utils.generate_cnr_id(to_path, node_id)
|
||||
self.active_nodes[node_id] = 'nightly', to_path
|
||||
|
||||
return res.with_target(version_spec)
|
||||
@@ -1347,6 +1392,63 @@ class 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():
|
||||
global channel_dict
|
||||
|
||||
@@ -1389,9 +1491,7 @@ class ManagerFuncs:
|
||||
print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
||||
return 0
|
||||
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
subprocess.check_call(cmd, cwd=cwd, env=new_env)
|
||||
subprocess.check_call(cmd, cwd=cwd, env=get_script_env())
|
||||
|
||||
return 0
|
||||
|
||||
@@ -1403,7 +1503,6 @@ def write_config():
|
||||
config = configparser.ConfigParser()
|
||||
config['default'] = {
|
||||
'preview_method': manager_funcs.get_current_preview_method(),
|
||||
'badge_mode': get_config()['badge_mode'],
|
||||
'git_exe': get_config()['git_exe'],
|
||||
'channel_url': get_config()['channel_url'],
|
||||
'share_option': get_config()['share_option'],
|
||||
@@ -1444,7 +1543,6 @@ def read_config():
|
||||
|
||||
return {
|
||||
'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 '',
|
||||
'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',
|
||||
@@ -1463,7 +1561,6 @@ def read_config():
|
||||
except Exception:
|
||||
return {
|
||||
'preview_method': manager_funcs.get_current_preview_method(),
|
||||
'badge_mode': 'none',
|
||||
'git_exe': '',
|
||||
'channel_url': DEFAULT_CHANNEL,
|
||||
'share_option': 'all',
|
||||
@@ -1490,8 +1587,17 @@ def get_config():
|
||||
|
||||
|
||||
def switch_to_default_branch(repo):
|
||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
||||
repo.git.checkout(default_branch)
|
||||
try:
|
||||
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):
|
||||
@@ -1542,9 +1648,8 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
||||
else:
|
||||
command = [sys.executable, git_script_path, "--check", path]
|
||||
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=get_default_custom_nodes_path())
|
||||
new_env = get_script_env()
|
||||
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=get_default_custom_nodes_path(), env=new_env)
|
||||
output, _ = process.communicate()
|
||||
output = output.decode('utf-8').strip()
|
||||
|
||||
@@ -1595,10 +1700,8 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
||||
|
||||
|
||||
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]
|
||||
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()
|
||||
|
||||
|
||||
@@ -1698,7 +1801,7 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
||||
|
||||
if do_update:
|
||||
if repo.is_dirty():
|
||||
print(f"STASH: '{path}' is dirty.")
|
||||
print(f"\nSTASH: '{path}' is dirty.")
|
||||
repo.git.stash()
|
||||
|
||||
if f'{remote_name}/{branch_name}' not in repo.refs:
|
||||
|
||||
@@ -108,7 +108,7 @@ class ManagerFuncsInComfyUI(core.ManagerFuncs):
|
||||
logging.error(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
||||
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, ""))
|
||||
stderr_thread = threading.Thread(target=handle_stream, args=(process.stderr, "[!]"))
|
||||
@@ -153,10 +153,6 @@ def set_preview_method(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):
|
||||
core.get_config()['default_ui'] = mode
|
||||
|
||||
@@ -541,17 +537,18 @@ def populate_markdown(x):
|
||||
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")
|
||||
async def installed_list(request):
|
||||
unified_manager = core.unified_manager
|
||||
mode = request.query.get('mode', 'default')
|
||||
|
||||
await unified_manager.reload('cache')
|
||||
await unified_manager.get_custom_nodes('default', 'cache')
|
||||
if mode == 'imported':
|
||||
res = startup_time_installed_node_packs
|
||||
else:
|
||||
res = core.get_installed_node_packs()
|
||||
|
||||
return web.json_response({
|
||||
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')
|
||||
return web.json_response(res, content_type='application/json')
|
||||
|
||||
|
||||
@routes.get("/customnode/getlist")
|
||||
@@ -820,7 +817,7 @@ async def get_cnr_versions(request):
|
||||
node_name = request.match_info.get("node_name", None)
|
||||
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.Response(status=400)
|
||||
@@ -1153,17 +1150,6 @@ async def preview_method(request):
|
||||
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")
|
||||
async def default_ui_mode(request):
|
||||
if "value" in request.rel_url.query:
|
||||
@@ -1301,9 +1287,13 @@ def restart(self):
|
||||
sys_argv.remove('--windows-standalone-build')
|
||||
|
||||
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:
|
||||
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")
|
||||
@@ -1416,7 +1406,6 @@ async def default_cache_update():
|
||||
# else:
|
||||
# logging.info("[ComfyUI-Manager] Migration check is skipped...")
|
||||
|
||||
|
||||
threading.Thread(target=lambda: asyncio.run(default_cache_update())).start()
|
||||
|
||||
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 json
|
||||
import threading
|
||||
@@ -10,7 +15,7 @@ import re
|
||||
cache_lock = threading.Lock()
|
||||
|
||||
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
|
||||
|
||||
@@ -103,24 +103,6 @@ docStyle.innerHTML = `
|
||||
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 {
|
||||
color: #5555FF;
|
||||
font-weight: bold;
|
||||
@@ -244,7 +226,6 @@ var update_comfyui_button = null;
|
||||
var switch_comfyui_button = null;
|
||||
var fetch_updates_button = null;
|
||||
var update_all_button = null;
|
||||
var badge_mode = "none";
|
||||
let share_option = 'all';
|
||||
|
||||
// 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() {
|
||||
api.fetchApi('/manager/share_option')
|
||||
.then(response => response.text())
|
||||
@@ -450,7 +423,6 @@ async function init_notice(notice) {
|
||||
})
|
||||
}
|
||||
|
||||
await init_badge_mode();
|
||||
await init_share_option();
|
||||
|
||||
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() {
|
||||
let prev_text = update_comfyui_button.innerText;
|
||||
update_comfyui_button.innerText = "Updating ComfyUI...";
|
||||
@@ -1069,32 +982,9 @@ class ManagerMenuDialog extends ComfyDialog {
|
||||
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
|
||||
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";
|
||||
api.fetchApi('/manager/channel_url_list')
|
||||
.then(response => response.json())
|
||||
@@ -1218,7 +1108,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
||||
this.datasrc_combo,
|
||||
channel_combo,
|
||||
preview_combo,
|
||||
badge_combo,
|
||||
default_ui_combo,
|
||||
share_combo,
|
||||
component_policy_combo,
|
||||
@@ -1663,32 +1552,6 @@ app.registerExtension({
|
||||
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) {
|
||||
const origGetExtraMenuOptions = node.prototype.getExtraMenuOptions;
|
||||
node.prototype.cm_menu_added = true;
|
||||
|
||||
@@ -1190,7 +1190,7 @@ export class CustomNodesManager {
|
||||
version_cnt++;
|
||||
}
|
||||
|
||||
if(rowItem.cnr_latest != rowItem.originalData.active_version) {
|
||||
if(rowItem.cnr_latest != rowItem.originalData.active_version && obj.length > 0) {
|
||||
versions.push('latest');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,16 +17,18 @@ import { api } from "../../scripts/api.js";
|
||||
class WorkflowMetadataExtension {
|
||||
constructor() {
|
||||
this.name = "Comfy.CustomNodesManager.WorkflowMetadata";
|
||||
this.installedNodeVersions = {};
|
||||
this.installedNodes = {};
|
||||
this.comfyCoreVersion = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the installed node versions
|
||||
* @returns {Promise<Record<string, string>>} The mapping from node name to version
|
||||
* version can either be a git commit hash or a semantic version such as "1.0.0"
|
||||
* Get the installed nodes info
|
||||
* @returns {Promise<Record<string, {ver: string, cnr_id: string, enabled: boolean}>>} The mapping from node name to its info.
|
||||
* 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");
|
||||
return await res.json();
|
||||
}
|
||||
@@ -48,8 +50,10 @@ class WorkflowMetadataExtension {
|
||||
|
||||
if (modules[0] === "custom_nodes") {
|
||||
const nodePackageName = modules[1];
|
||||
const nodeVersion = this.installedNodeVersions[nodePackageName];
|
||||
nodeVersions[nodePackageName] = nodeVersion;
|
||||
const nodeInfo =
|
||||
this.installedNodes[nodePackageName] ??
|
||||
this.installedNodes[nodePackageName.toLowerCase()];
|
||||
nodeVersions[nodePackageName] = nodeInfo.ver;
|
||||
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
||||
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
||||
} else {
|
||||
@@ -61,7 +65,7 @@ class WorkflowMetadataExtension {
|
||||
|
||||
async init() {
|
||||
const extension = this;
|
||||
this.installedNodeVersions = await this.getInstalledNodeVersions();
|
||||
this.installedNodes = await this.getInstalledNodes();
|
||||
this.comfyCoreVersion = (await api.getSystemStats()).system.comfyui_version;
|
||||
|
||||
// Attach metadata when app.graphToPrompt is called.
|
||||
|
||||
@@ -9,7 +9,87 @@
|
||||
"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]",
|
||||
@@ -50,16 +130,6 @@
|
||||
"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)"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"title": "Save2Icon",
|
||||
@@ -70,16 +140,6 @@
|
||||
"install_type": "git-clone",
|
||||
"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",
|
||||
"title": "ComfyUI-vts-nodes [WIP]",
|
||||
@@ -243,13 +303,13 @@
|
||||
},
|
||||
{
|
||||
"author": "Maxim-Dey",
|
||||
"title": "ComfyUI-MS_Tools",
|
||||
"title": "ComfyUI-MS_Tools [WIP]",
|
||||
"reference": "https://github.com/Maxim-Dey/ComfyUI-MaksiTools",
|
||||
"files": [
|
||||
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: MS Time Measure Node"
|
||||
"description": "NODES: MS Time Measure NodeMaksiTools"
|
||||
},
|
||||
{
|
||||
"author": "jammyfu",
|
||||
@@ -543,17 +603,6 @@
|
||||
"install_type": "git-clone",
|
||||
"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",
|
||||
"title": "ComfyUI-Movie-Tools [WIP]",
|
||||
|
||||
@@ -154,6 +154,14 @@
|
||||
"title_aux": "ComfyUI_Fooocus"
|
||||
}
|
||||
],
|
||||
"https://github.com/5x00/ComfyUI-LLM-Concat": [
|
||||
[
|
||||
"LLMConcate"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-LLM-Concat [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
||||
[
|
||||
"ManualSigma"
|
||||
@@ -513,6 +521,7 @@
|
||||
"VTS Clip Text Encode",
|
||||
"VTS Color Mask To Mask",
|
||||
"VTS Conditioning Set Batch Mask",
|
||||
"VTS Images Crop From Masks",
|
||||
"VTS Merge Delimited Text",
|
||||
"VTS Reduce Batch Size",
|
||||
"VTS To Text",
|
||||
@@ -563,8 +572,10 @@
|
||||
"DevToolsNodeWithOnlyOptionalInput",
|
||||
"DevToolsNodeWithOptionalInput",
|
||||
"DevToolsNodeWithOutputList",
|
||||
"DevToolsNodeWithSeedInput",
|
||||
"DevToolsNodeWithStringInput",
|
||||
"DevToolsNodeWithUnionInput",
|
||||
"DevToolsObjectPatchNode",
|
||||
"DevToolsSimpleSlider"
|
||||
],
|
||||
{
|
||||
@@ -653,7 +664,7 @@
|
||||
],
|
||||
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit": [
|
||||
[
|
||||
"GetBooruImageInfo",
|
||||
"GetBooruPost",
|
||||
"TagEncode"
|
||||
],
|
||||
{
|
||||
@@ -679,9 +690,27 @@
|
||||
"AD_TextListToString",
|
||||
"AD_TextSaver",
|
||||
"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]"
|
||||
}
|
||||
],
|
||||
@@ -743,6 +772,16 @@
|
||||
"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": [
|
||||
[
|
||||
"Push pose to Airtable"
|
||||
@@ -770,7 +809,7 @@
|
||||
],
|
||||
"https://github.com/Grey3016/Save2Icon": [
|
||||
[
|
||||
"Save2Icon"
|
||||
"ConvertToIconNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "Save2Icon"
|
||||
@@ -1076,10 +1115,14 @@
|
||||
],
|
||||
"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": [
|
||||
@@ -1231,6 +1274,7 @@
|
||||
],
|
||||
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
||||
[
|
||||
"AdvancedScript",
|
||||
"CheckpointLoaderSimpleShared //SeedV",
|
||||
"ControlNetLoaderAdvancedShared",
|
||||
"LoraLoader //SeedV",
|
||||
@@ -1243,6 +1287,7 @@
|
||||
"https://github.com/ShahFaisalWani/ComfyUI-Mojen-Nodeset": [
|
||||
[
|
||||
"MojenAnalyzeProcessor",
|
||||
"MojenAspectRatio",
|
||||
"MojenImageLoader",
|
||||
"MojenLogPercent",
|
||||
"MojenNSFWClassifier",
|
||||
@@ -2813,12 +2858,16 @@
|
||||
"ClickPopup",
|
||||
"ColorPicker",
|
||||
"DynamicImageCombiner",
|
||||
"DynamicMaskCombiner",
|
||||
"ImageLatentCreator",
|
||||
"ImageResolutionAdjuster",
|
||||
"ImageSizeCreator",
|
||||
"MaskPreview",
|
||||
"MultilineTextInput",
|
||||
"RemoveEmptyLinesAndLeadingSpaces",
|
||||
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
||||
"ShowTextPlus",
|
||||
"SimpleTextInput",
|
||||
"TextCombiner"
|
||||
],
|
||||
{
|
||||
@@ -3104,6 +3153,7 @@
|
||||
"HyVideoReSampler",
|
||||
"HyVideoSTG",
|
||||
"HyVideoSampler",
|
||||
"HyVideoTeaCache",
|
||||
"HyVideoTextEmbedsLoad",
|
||||
"HyVideoTextEmbedsSave",
|
||||
"HyVideoTextEncode",
|
||||
@@ -3736,6 +3786,22 @@
|
||||
"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": [
|
||||
[
|
||||
"ImageOverlayNode",
|
||||
@@ -3821,6 +3887,20 @@
|
||||
"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": [
|
||||
[
|
||||
"Any Python"
|
||||
@@ -3955,23 +4035,6 @@
|
||||
"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": [
|
||||
[
|
||||
"ApplyPulid",
|
||||
@@ -4336,6 +4399,14 @@
|
||||
"title_aux": "ComfyUI-exit [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/waynepimpzhang/comfyui-opencv-brightestspot": [
|
||||
[
|
||||
"FindBrightestSpot"
|
||||
],
|
||||
{
|
||||
"title_aux": "FindBrightestSpot [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/willblaschko/ComfyUI-Unload-Models": [
|
||||
[
|
||||
"DeleteAnyObject",
|
||||
@@ -4384,6 +4455,24 @@
|
||||
"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": [
|
||||
[
|
||||
"FetchTokenFromDropbox",
|
||||
@@ -4422,6 +4511,14 @@
|
||||
"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": [
|
||||
[
|
||||
"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",
|
||||
"title": "ComfyUI-SaveImageOSS [REMOVED]",
|
||||
|
||||
@@ -9,6 +9,301 @@
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"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",
|
||||
@@ -401,300 +696,6 @@
|
||||
],
|
||||
"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."
|
||||
},
|
||||
{
|
||||
"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."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -40,6 +40,8 @@
|
||||
"https://github.com/1038lab/ComfyUI-RMBG": [
|
||||
[
|
||||
"ClothesSegment",
|
||||
"FashionSegmentAccessories",
|
||||
"FashionSegmentClothing",
|
||||
"RMBG",
|
||||
"Segment"
|
||||
],
|
||||
@@ -299,7 +301,15 @@
|
||||
"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"
|
||||
],
|
||||
@@ -1226,6 +1236,27 @@
|
||||
"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": [
|
||||
[
|
||||
"Seed-Nodes: ImagePixelator",
|
||||
@@ -1349,6 +1380,15 @@
|
||||
"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": [
|
||||
[
|
||||
"ADJUST (JOV) \ud83d\udd78\ufe0f",
|
||||
@@ -2185,6 +2225,14 @@
|
||||
"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": [
|
||||
[
|
||||
"Resource Monitor"
|
||||
@@ -2211,11 +2259,14 @@
|
||||
"ClownInpaint",
|
||||
"ClownInpaintSimple",
|
||||
"ClownSampler",
|
||||
"ClownSamplerAdvanced",
|
||||
"ClownsharKSampler",
|
||||
"ClownsharKSamplerAutomation",
|
||||
"ClownsharKSamplerGuide",
|
||||
"ClownsharKSamplerGuides",
|
||||
"ClownsharKSamplerOptions",
|
||||
"ClownsharKSamplerOptions_SDE_Noise",
|
||||
"ClownsharkSamplerOptions_FrameWeights",
|
||||
"Conditioning Recast FP64",
|
||||
"ConditioningAdd",
|
||||
"ConditioningAverageScheduler",
|
||||
@@ -2310,6 +2361,7 @@
|
||||
"UltraSharkSampler",
|
||||
"UltraSharkSampler Tiled",
|
||||
"UltraSharkSamplerRBTest",
|
||||
"VAEEncodeAdvanced",
|
||||
"VGG19StyleTransfer",
|
||||
"Zampler_Test"
|
||||
],
|
||||
@@ -2600,10 +2652,14 @@
|
||||
],
|
||||
"https://github.com/DesertPixelAi/ComfyUI-Desert-Pixel-Nodes": [
|
||||
[
|
||||
"DP 10 String Switch",
|
||||
"DP 2 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 5 Inputs",
|
||||
"DP Art Style Generator",
|
||||
"DP Aspect Ratio Picker",
|
||||
"DP Big Letters",
|
||||
"DP Broken Token",
|
||||
@@ -2628,6 +2684,9 @@
|
||||
"DP Image Empty Latent Switch SDXL",
|
||||
"DP Image Slide Show",
|
||||
"DP Image Strip",
|
||||
"DP Image Switch 10",
|
||||
"DP Image Switch 3",
|
||||
"DP Image Switch 5",
|
||||
"DP Int 0-1000",
|
||||
"DP Int 0-1000 4 Step",
|
||||
"DP Int 0-1000 8 Step",
|
||||
@@ -2652,6 +2711,7 @@
|
||||
"DP Random Mode Switch",
|
||||
"DP Random Psychedelic Punk Generator",
|
||||
"DP Random Superhero Prompt Generator",
|
||||
"DP Random Vehicle Generator",
|
||||
"DP Save Preview Image",
|
||||
"DP Set New Model Folder Link",
|
||||
"DP String Text",
|
||||
@@ -2769,9 +2829,27 @@
|
||||
"AD_TextListToString",
|
||||
"AD_TextSaver",
|
||||
"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"
|
||||
}
|
||||
],
|
||||
@@ -3345,6 +3423,16 @@
|
||||
"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": [
|
||||
[
|
||||
"AIT_Unet_Loader",
|
||||
@@ -3756,7 +3844,8 @@
|
||||
"RH_ExecuteNode",
|
||||
"RH_ImageUploaderNode",
|
||||
"RH_NodeInfoListNode",
|
||||
"RH_SettingsNode"
|
||||
"RH_SettingsNode",
|
||||
"RH_Utils"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_RH_APICall"
|
||||
@@ -3926,6 +4015,7 @@
|
||||
"AgentMemoryProvider",
|
||||
"AgentNode",
|
||||
"BasicRecursionFilterNode",
|
||||
"DocumentChunkRecursionFilterNode",
|
||||
"DocumentProcessor",
|
||||
"LinuxMemoryDirectory",
|
||||
"QueryNode"
|
||||
@@ -3937,6 +4027,17 @@
|
||||
"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": [
|
||||
[
|
||||
"MI2V Flow Animator",
|
||||
@@ -4138,12 +4239,12 @@
|
||||
],
|
||||
"https://github.com/Isulion/ComfyUI_Isulion": [
|
||||
[
|
||||
"CustomTextNode",
|
||||
"DisplayImageFromURL",
|
||||
"IsuCollage_Node",
|
||||
"Isulion Civitai Image Display",
|
||||
"Isulion Civitai Model Explorer",
|
||||
"Isulion Civitai Trending",
|
||||
"Isulion Video Prompt Generator \ud83c\udfa5",
|
||||
"IsulionActionGenerator",
|
||||
"IsulionAlienWorldGenerator",
|
||||
"IsulionAnimalBehaviorGenerator",
|
||||
@@ -4172,6 +4273,7 @@
|
||||
"IsulionStyleMixer",
|
||||
"IsulionTechGenerator",
|
||||
"IsulionTimeOfDayGenerator",
|
||||
"IsulionVideoPromptGenerator",
|
||||
"IsulionWeatherGenerator",
|
||||
"\ud83d\udca4 IsulionShutdown"
|
||||
],
|
||||
@@ -4337,6 +4439,16 @@
|
||||
"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": [
|
||||
[
|
||||
"DiffusersCompelPromptEmbedding",
|
||||
@@ -4918,6 +5030,16 @@
|
||||
"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": [
|
||||
[
|
||||
"Client",
|
||||
@@ -4948,6 +5070,14 @@
|
||||
"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": [
|
||||
[
|
||||
"GridAnnotation",
|
||||
@@ -5495,6 +5625,14 @@
|
||||
"title_aux": "SimpleToolsNodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/Meettya/ComfyUI-OneForOne": [
|
||||
[
|
||||
"OFO Image Fit"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-OneForOne"
|
||||
}
|
||||
],
|
||||
"https://github.com/MetaGLM/ComfyUI-ZhipuAI-Platform": [
|
||||
[
|
||||
"VideoReportData",
|
||||
@@ -5782,24 +5920,39 @@
|
||||
"DJZ-LoadLatentV2",
|
||||
"DJZDatamosh",
|
||||
"DJZDatamoshV2",
|
||||
"DatasetWordcloud",
|
||||
"DinskyPlus",
|
||||
"DinskyPlusV2",
|
||||
"DjzDatamoshV3",
|
||||
"DjzDatamoshV4",
|
||||
"DjzDatamoshV5",
|
||||
"DjzDatamoshV6",
|
||||
"DjzDatamoshV7",
|
||||
"FractalGenerator",
|
||||
"FractalGeneratorV2",
|
||||
"FractalGeneratorV3",
|
||||
"ImageSizeAdjuster",
|
||||
"ImageSizeAdjusterV2",
|
||||
"ImageSizeAdjusterV3",
|
||||
"LoadTextDirectory",
|
||||
"LoadVideoDirectory",
|
||||
"ParametricMeshGen",
|
||||
"ParametricMeshGenV2",
|
||||
"ProjectFilePathNode",
|
||||
"PromptCleaner",
|
||||
"PromptInject",
|
||||
"PromptSwap",
|
||||
"SequentialNumberGenerator",
|
||||
"StringWeights",
|
||||
"TrianglesPlus",
|
||||
"TrianglesPlusV2",
|
||||
"ZenkaiPrompt",
|
||||
"ZenkaiPromptV2",
|
||||
"ZenkaiWildcard",
|
||||
"ZenkaiWildcardV2"
|
||||
],
|
||||
{
|
||||
"author": "DJZ-Nodes",
|
||||
"title_aux": "DJZ-Nodes"
|
||||
}
|
||||
],
|
||||
@@ -7682,6 +7835,7 @@
|
||||
"SDVN Image Info",
|
||||
"SDVN Image Layout",
|
||||
"SDVN Image Repeat",
|
||||
"SDVN Image Scraper",
|
||||
"SDVN Image Size",
|
||||
"SDVN Inpaint",
|
||||
"SDVN Join Parameter",
|
||||
@@ -7865,6 +8019,7 @@
|
||||
"Divide Image and Select Tile",
|
||||
"Divide and Conquer Algorithm",
|
||||
"Divide and Conquer Algorithm (No Upscale)",
|
||||
"Load Images into List",
|
||||
"Make Size"
|
||||
],
|
||||
{
|
||||
@@ -9160,7 +9315,9 @@
|
||||
"InstaCText",
|
||||
"InstaCTextML",
|
||||
"InstaPromptMultipleStyleSelector",
|
||||
"InstaPromptStyleSelector"
|
||||
"InstaPromptStyleSelector",
|
||||
"LoadVideo",
|
||||
"PreViewVideo"
|
||||
],
|
||||
{
|
||||
"title_aux": "InstaSD nodes for ComfyUI"
|
||||
@@ -9200,6 +9357,7 @@
|
||||
"https://github.com/Wicloz/ComfyUI-Simply-Nodes": [
|
||||
[
|
||||
"WF_ConditionalLoraLoader",
|
||||
"WF_FixupPixelArt",
|
||||
"WF_MultilineText",
|
||||
"WF_RandomStyle",
|
||||
"WF_ResolutionSDXL",
|
||||
@@ -10880,6 +11038,14 @@
|
||||
"title_aux": "ComfyUI_TextAssets"
|
||||
}
|
||||
],
|
||||
"https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux": [
|
||||
[
|
||||
"OneButtonPromptFlux"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_OneButtonPrompt_Flux"
|
||||
}
|
||||
],
|
||||
"https://github.com/bitaffinity/ComfyUI_HF_Inference": [
|
||||
[
|
||||
"Classification",
|
||||
@@ -11141,6 +11307,15 @@
|
||||
"title_aux": "Remembering utils"
|
||||
}
|
||||
],
|
||||
"https://github.com/bongsang/ComfyUI-Bongsang": [
|
||||
[
|
||||
"AnyInfo",
|
||||
"RgbChannel"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Bongsang"
|
||||
}
|
||||
],
|
||||
"https://github.com/boredofnames/ComfyUI-ntfy": [
|
||||
[
|
||||
"Ntfy",
|
||||
@@ -11395,6 +11570,15 @@
|
||||
"title_aux": "ComfyUI SimpleTools Suit"
|
||||
}
|
||||
],
|
||||
"https://github.com/cenzijing/ComfyUI-Markmap": [
|
||||
[
|
||||
"MarkmapNode",
|
||||
"ReadHtmlNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Markmap"
|
||||
}
|
||||
],
|
||||
"https://github.com/cerspense/ComfyUI_cspnodes": [
|
||||
[
|
||||
"DepthToNormalMap",
|
||||
@@ -12572,12 +12756,8 @@
|
||||
],
|
||||
"https://github.com/civen-cn/ComfyUI-Whisper-Translator": [
|
||||
[
|
||||
"Add Subtitles To Background",
|
||||
"Add Subtitles To Frames",
|
||||
"Add Subtitles To FramesX",
|
||||
"Apply Whisper",
|
||||
"Apply WhisperX",
|
||||
"Resize Cropped Subtitles"
|
||||
"Apply WhisperX"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI Whisper Translator"
|
||||
@@ -14002,19 +14182,26 @@
|
||||
],
|
||||
"https://github.com/drmbt/comfyui-dreambait-nodes": [
|
||||
[
|
||||
"AudioInfoPlus",
|
||||
"BoolPlusPlus",
|
||||
"DRMBT_AspectPadImageForOutpainting",
|
||||
"DRMBT_LoadMedia",
|
||||
"DRMBT_MultiMinMax",
|
||||
"DRMBT_String_Item_Menu",
|
||||
"DownloadAndLoadMiniCPMV",
|
||||
"DreambaitFolderOpener",
|
||||
"DynamicDictionary",
|
||||
"ImageFrameBlend",
|
||||
"ImageResizeFaceAware",
|
||||
"ListItemExtract",
|
||||
"ListItemSelector",
|
||||
"LoadAudioPlus",
|
||||
"MiniCPMVNode",
|
||||
"MusicGen",
|
||||
"NormalizeAudio",
|
||||
"NumberPlusPlus",
|
||||
"NumberRemap",
|
||||
"Qwen2AudioInstruct",
|
||||
"SwitchDuo",
|
||||
"TextLineSelect",
|
||||
"TextLinesToList",
|
||||
@@ -14386,6 +14573,14 @@
|
||||
"title_aux": "ComfyUI-Showrunner-Utils"
|
||||
}
|
||||
],
|
||||
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora": [
|
||||
[
|
||||
"HunyuanVideoLoraLoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-HunyuanVideoMultiLora"
|
||||
}
|
||||
],
|
||||
"https://github.com/fairy-root/ComfyUI-GLHF": [
|
||||
[
|
||||
"glhf_chat"
|
||||
@@ -14929,6 +15124,22 @@
|
||||
"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": [
|
||||
[
|
||||
"Pose_Inter"
|
||||
@@ -15407,6 +15618,7 @@
|
||||
"Griptape Util: Create Agent Modelfile",
|
||||
"Griptape Util: Create Model from Modelfile",
|
||||
"Griptape Util: Remove Ollama Model",
|
||||
"Griptape Util: Switch Node",
|
||||
"Griptape Vector Store Driver: Amazon OpenSearch",
|
||||
"Griptape Vector Store Driver: Azure MongoDB",
|
||||
"Griptape Vector Store Driver: Griptape Cloud",
|
||||
@@ -15644,6 +15856,7 @@
|
||||
"LLavaLoader",
|
||||
"LorapathLoader",
|
||||
"Lorebook",
|
||||
"Mcp_tool",
|
||||
"RSS_loader",
|
||||
"RSS_tool",
|
||||
"SpeedChange",
|
||||
@@ -15887,6 +16100,14 @@
|
||||
"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": [
|
||||
[
|
||||
"LoRADownloader",
|
||||
@@ -16263,6 +16484,72 @@
|
||||
"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": [
|
||||
[
|
||||
"IW_JsonPickItem",
|
||||
@@ -16778,12 +17065,14 @@
|
||||
[
|
||||
"ComfyOnlineSaveFile",
|
||||
"ComfyOnlineUploadAnything",
|
||||
"EmbeddingLoader",
|
||||
"LoadHunyuanLoraFromCivitAI",
|
||||
"LoadHunyuanLoraFromComfyOnline",
|
||||
"LoadHunyuanLoraFromHF",
|
||||
"LoadLoraFromCivitAI",
|
||||
"LoadLoraFromComfyOnline",
|
||||
"LoadLoraFromHF"
|
||||
"LoadLoraFromHF",
|
||||
"SaveAudioAsWav"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-model-dynamic-loader"
|
||||
@@ -17764,6 +18053,7 @@
|
||||
"HyVideoReSampler",
|
||||
"HyVideoSTG",
|
||||
"HyVideoSampler",
|
||||
"HyVideoTeaCache",
|
||||
"HyVideoTextEmbedsLoad",
|
||||
"HyVideoTextEmbedsSave",
|
||||
"HyVideoTextEncode",
|
||||
@@ -18508,6 +18798,15 @@
|
||||
"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": [
|
||||
[
|
||||
"DynamicPreprocess",
|
||||
@@ -18843,6 +19142,8 @@
|
||||
"https://github.com/lldacing/ComfyUI_BiRefNet_ll": [
|
||||
[
|
||||
"AutoDownloadBiRefNetModel",
|
||||
"BlurFusionForegroundEstimation",
|
||||
"GetMaskByBiRefNet",
|
||||
"LoadRembgByBiRefNetModel",
|
||||
"RembgByBiRefNet",
|
||||
"RembgByBiRefNetAdvanced"
|
||||
@@ -18957,6 +19258,7 @@
|
||||
[
|
||||
"FluxModCheckpointLoader",
|
||||
"FluxModCheckpointLoaderMini",
|
||||
"FluxModSamplerWrapper",
|
||||
"KSamplerMod",
|
||||
"SkipLayerForward"
|
||||
],
|
||||
@@ -20737,6 +21039,16 @@
|
||||
"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": [
|
||||
[
|
||||
"Image Brightness",
|
||||
@@ -21422,6 +21734,14 @@
|
||||
"title_aux": "sd-perturbed-attention"
|
||||
}
|
||||
],
|
||||
"https://github.com/pandaer119/ComfyUI_pandai": [
|
||||
[
|
||||
"pandai_dsk_node"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_pandai"
|
||||
}
|
||||
],
|
||||
"https://github.com/pants007/comfy-pants": [
|
||||
[
|
||||
"CLIPTextEncodeAIO",
|
||||
@@ -21575,10 +21895,6 @@
|
||||
],
|
||||
"https://github.com/playbook3d/playbook3d-comfyui-nodes": [
|
||||
[
|
||||
"Beauty Pass Sequence",
|
||||
"Depth Pass Sequence",
|
||||
"Mask Pass Sequence",
|
||||
"Outline Pass Sequence",
|
||||
"Playbook Beauty",
|
||||
"Playbook Beauty Sequence",
|
||||
"Playbook Boolean",
|
||||
@@ -22649,6 +22965,24 @@
|
||||
"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": [
|
||||
[
|
||||
"ImageBatchToList_",
|
||||
@@ -23209,9 +23543,7 @@
|
||||
"https://github.com/smthemex/ComfyUI_EchoMimic": [
|
||||
[
|
||||
"Echo_LoadModel",
|
||||
"Echo_Sampler",
|
||||
"Echo_Upscaleloader",
|
||||
"Echo_VideoUpscale"
|
||||
"Echo_Sampler"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_EchoMimic"
|
||||
@@ -23683,16 +24015,6 @@
|
||||
"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": [
|
||||
[
|
||||
"FABRICPatchModel",
|
||||
@@ -24475,6 +24797,14 @@
|
||||
"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": [
|
||||
[
|
||||
"BackgroundSelect",
|
||||
|
||||
@@ -260,6 +260,16 @@
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"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",
|
||||
"CLIPTextEncodeFlux",
|
||||
"CLIPTextEncodeHunyuanDiT",
|
||||
"CLIPTextEncodePixArtAlpha",
|
||||
"CLIPTextEncodeSD3",
|
||||
"CLIPTextEncodeSDXL",
|
||||
"CLIPTextEncodeSDXLRefiner",
|
||||
@@ -189,6 +190,7 @@
|
||||
"ConditioningSetAreaStrength",
|
||||
"ConditioningSetMask",
|
||||
"ConditioningSetTimestepRange",
|
||||
"ConditioningStableAudio",
|
||||
"ConditioningZeroOut",
|
||||
"ControlNetApply",
|
||||
"ControlNetApplyAdvanced",
|
||||
@@ -202,7 +204,9 @@
|
||||
"DisableNoise",
|
||||
"DualCFGGuider",
|
||||
"DualCLIPLoader",
|
||||
"EmptyHunyuanLatentVideo",
|
||||
"EmptyImage",
|
||||
"EmptyLTXVLatentVideo",
|
||||
"EmptyLatentAudio",
|
||||
"EmptyLatentImage",
|
||||
"EmptyMochiLatentVideo",
|
||||
@@ -245,6 +249,9 @@
|
||||
"KSamplerAdvanced",
|
||||
"KSamplerSelect",
|
||||
"KarrasScheduler",
|
||||
"LTXVConditioning",
|
||||
"LTXVImgToVideo",
|
||||
"LTXVScheduler",
|
||||
"LaplaceScheduler",
|
||||
"LatentAdd",
|
||||
"LatentApplyOperation",
|
||||
@@ -265,6 +272,8 @@
|
||||
"LatentSubtract",
|
||||
"LatentUpscale",
|
||||
"LatentUpscaleBy",
|
||||
"Load3D",
|
||||
"Load3DAnimation",
|
||||
"LoadAudio",
|
||||
"LoadImage",
|
||||
"LoadImageMask",
|
||||
@@ -272,11 +281,15 @@
|
||||
"LoraLoader",
|
||||
"LoraLoaderModelOnly",
|
||||
"LoraSave",
|
||||
"Mahiro",
|
||||
"MaskComposite",
|
||||
"MaskToImage",
|
||||
"ModelMergeAdd",
|
||||
"ModelMergeAuraflow",
|
||||
"ModelMergeBlocks",
|
||||
"ModelMergeFlux1",
|
||||
"ModelMergeLTXV",
|
||||
"ModelMergeMochiPreview",
|
||||
"ModelMergeSD1",
|
||||
"ModelMergeSD2",
|
||||
"ModelMergeSD35_Large",
|
||||
@@ -289,6 +302,7 @@
|
||||
"ModelSamplingContinuousV",
|
||||
"ModelSamplingDiscrete",
|
||||
"ModelSamplingFlux",
|
||||
"ModelSamplingLTXV",
|
||||
"ModelSamplingSD3",
|
||||
"ModelSamplingStableCascade",
|
||||
"ModelSave",
|
||||
@@ -301,6 +315,7 @@
|
||||
"PhotoMakerLoader",
|
||||
"PolyexponentialScheduler",
|
||||
"PorterDuffImageComposite",
|
||||
"Preview3D",
|
||||
"PreviewAudio",
|
||||
"PreviewImage",
|
||||
"RandomNoise",
|
||||
@@ -334,6 +349,7 @@
|
||||
"SelfAttentionGuidance",
|
||||
"SetLatentNoiseMask",
|
||||
"SetUnionControlNetType",
|
||||
"SkipLayerGuidanceDiT",
|
||||
"SkipLayerGuidanceSD3",
|
||||
"SolidMask",
|
||||
"SplitImageWithAlpha",
|
||||
@@ -462,6 +478,17 @@
|
||||
"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": [
|
||||
[
|
||||
"Example",
|
||||
|
||||
@@ -50,9 +50,8 @@ def check_file_logging():
|
||||
global enable_file_logging
|
||||
try:
|
||||
import configparser
|
||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
||||
config = configparser.ConfigParser()
|
||||
config.read(config_path)
|
||||
config.read(manager_config_path)
|
||||
default_conf = config['default']
|
||||
|
||||
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_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")
|
||||
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_global.pip_overrides = {}
|
||||
cm_global.pip_overrides = {'numpy': 'numpy<2', 'ultralytics': 'ultralytics==8.3.40'}
|
||||
if os.path.exists(manager_pip_overrides_path):
|
||||
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||
cm_global.pip_overrides = json.load(json_file)
|
||||
@@ -345,6 +344,9 @@ print("** Platform:", platform.system())
|
||||
print("** Python version:", sys.version)
|
||||
print("** Python executable:", sys.executable)
|
||||
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:
|
||||
print("** Log path:", os.path.abspath(f'{log_path_base}.log'))
|
||||
@@ -355,9 +357,8 @@ else:
|
||||
def read_downgrade_blacklist():
|
||||
try:
|
||||
import configparser
|
||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
||||
config = configparser.ConfigParser()
|
||||
config.read(config_path)
|
||||
config.read(manager_config_path)
|
||||
default_conf = config['default']
|
||||
|
||||
if 'downgrade_blacklist' in default_conf:
|
||||
@@ -376,13 +377,12 @@ def check_bypass_ssl():
|
||||
try:
|
||||
import configparser
|
||||
import ssl
|
||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
||||
config = configparser.ConfigParser()
|
||||
config.read(config_path)
|
||||
config.read(manager_config_path)
|
||||
default_conf = config['default']
|
||||
|
||||
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.
|
||||
except Exception:
|
||||
pass
|
||||
@@ -437,6 +437,14 @@ def is_installed(name):
|
||||
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 True # prevent downgrade
|
||||
|
||||
|
||||
@@ -640,9 +648,8 @@ manager_util.clear_pip_cache()
|
||||
def check_windows_event_loop_policy():
|
||||
try:
|
||||
import configparser
|
||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
||||
config = configparser.ConfigParser()
|
||||
config.read(config_path)
|
||||
config.read(manager_config_path)
|
||||
default_conf = config['default']
|
||||
|
||||
if 'windows_selector_event_loop_policy' in default_conf and default_conf['windows_selector_event_loop_policy'].lower() == 'true':
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "comfyui-manager"
|
||||
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||
version = "3.3.5"
|
||||
version = "3.5"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user