Compare commits
68 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b2e2fcf9d | ||
|
|
cc746e59a1 | ||
|
|
2cdb1c519d | ||
|
|
426074ded9 | ||
|
|
772a096615 | ||
|
|
e113e011cb | ||
|
|
22266484bd | ||
|
|
559c011420 | ||
|
|
411c0633a3 | ||
|
|
488f023bdf | ||
|
|
22878f4ef8 | ||
|
|
e732a39fea | ||
|
|
62b4bf7af4 | ||
|
|
47a525ddb4 | ||
|
|
f4360725e0 | ||
|
|
b86607cd41 | ||
|
|
bf57de85c3 | ||
|
|
2dd6118ff4 | ||
|
|
816a53a7b1 | ||
|
|
ced93b0525 | ||
|
|
524ff9a4a6 | ||
|
|
f15032f905 | ||
|
|
d7d31a19e5 | ||
|
|
df2a7ddca4 | ||
|
|
ba9c71ffa4 | ||
|
|
21b6c6569c | ||
|
|
92aba9565a | ||
|
|
6ea0aebb0b | ||
|
|
b5cdcb75b4 | ||
|
|
bd9aae40b8 | ||
|
|
33f931c0a4 | ||
|
|
ede8279c17 | ||
|
|
268b84a2b6 | ||
|
|
0a67145d80 | ||
|
|
2e55bc470c | ||
|
|
cf0d038978 | ||
|
|
92e7db1082 | ||
|
|
c45c47f935 | ||
|
|
341e27f9a3 | ||
|
|
ab167175c9 | ||
|
|
3c2933338f | ||
|
|
829784fa50 | ||
|
|
3c45f8dc91 | ||
|
|
f8ebf7c6ad | ||
|
|
510c364607 | ||
|
|
a3d6fcccb7 | ||
|
|
42c8082edd | ||
|
|
1a7edf7f0e | ||
|
|
4760deaf9c | ||
|
|
0f7b9d02a0 | ||
|
|
adc86c7945 | ||
|
|
12969eda07 | ||
|
|
e07952455f | ||
|
|
4494230854 | ||
|
|
e8dd21c0c3 | ||
|
|
36ef1b2fd6 | ||
|
|
c3d2bd8ed1 | ||
|
|
da2b4be539 | ||
|
|
b5e11f85d5 | ||
|
|
9e1b2f8912 | ||
|
|
1e5f4b0267 | ||
|
|
4fedd03074 | ||
|
|
f6feaeea85 | ||
|
|
c8743c0ab7 | ||
|
|
3d80ed95ca | ||
|
|
0a28bfa9c2 | ||
|
|
6d771f77e6 | ||
|
|
717ca1bb18 |
27
README.md
27
README.md
@@ -5,6 +5,7 @@
|
|||||||

|

|
||||||
|
|
||||||
## NOTICE
|
## NOTICE
|
||||||
|
* V3.16: Support for `uv` has been added. Set `use_uv` in `config.ini`.
|
||||||
* V3.10: `double-click feature` is removed
|
* V3.10: `double-click feature` is removed
|
||||||
* This feature has been moved to https://github.com/ltdrdata/comfyui-connection-helper
|
* This feature has been moved to https://github.com/ltdrdata/comfyui-connection-helper
|
||||||
* V3.3.2: Overhauled. Officially supports [https://comfyregistry.org/](https://comfyregistry.org/).
|
* V3.3.2: Overhauled. Officially supports [https://comfyregistry.org/](https://comfyregistry.org/).
|
||||||
@@ -246,6 +247,32 @@ The following settings are applied based on the section marked as `is_default`.
|
|||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
# Config
|
||||||
|
* You can modify the `config.ini` file to apply the settings for ComfyUI-Manager.
|
||||||
|
* The path to the `config.ini` used by ComfyUI-Manager is displayed in the startup log messages.
|
||||||
|
* See also: [https://github.com/ltdrdata/ComfyUI-Manager#paths]
|
||||||
|
* Configuration options:
|
||||||
|
```
|
||||||
|
[default]
|
||||||
|
git_exe = <Manually specify the path to the git executable. If left empty, the default git executable path will be used.>
|
||||||
|
use_uv = <Use uv instead of pip for dependency installation.>
|
||||||
|
default_cache_as_channel_url = <Determines whether to retrieve the DB designated as channel_url at startup>
|
||||||
|
bypass_ssl = <Set to True if SSL errors occur to disable SSL.>
|
||||||
|
file_logging = <Configure whether to create a log file used by ComfyUI-Manager.>
|
||||||
|
windows_selector_event_loop_policy = <If an event loop error occurs on Windows, set this to True.>
|
||||||
|
model_download_by_agent = <When downloading models, use an agent instead of torchvision_download_url.>
|
||||||
|
downgrade_blacklist = <Set a list of packages to prevent downgrades. List them separated by commas.>
|
||||||
|
security_level = <Set the security level => strong|normal|normal-|weak>
|
||||||
|
always_lazy_install = <Whether to perform dependency installation on restart even in environments other than Windows.>
|
||||||
|
network_mode = <Set the network mode => public|private|offline>
|
||||||
|
```
|
||||||
|
|
||||||
|
* network_mode:
|
||||||
|
- public: An environment that uses a typical public network.
|
||||||
|
- private: An environment that uses a closed network, where a private node DB is configured via `channel_url`. (Uses cache if available)
|
||||||
|
- offline: An environment that does not use any external connections when using an offline network. (Uses cache if available)
|
||||||
|
|
||||||
|
|
||||||
## Additional Feature
|
## Additional Feature
|
||||||
* Logging to file feature
|
* Logging to file feature
|
||||||
* This feature is enabled by default and can be disabled by setting `file_logging = False` in the `config.ini`.
|
* This feature is enabled by default and can be disabled by setting `file_logging = False` in the `config.ini`.
|
||||||
|
|||||||
@@ -893,6 +893,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: Face Swap, Film Interpolation, Latent Lerp, Int To Number, Bounding Box, Crop, Uncrop, ImageBlur, Denoise, ImageCompare, RGV to HSV, HSV to RGB, Color Correct, Modulo, Deglaze Image, Smart Step, ..."
|
"description": "NODES: Face Swap, Film Interpolation, Latent Lerp, Int To Number, Bounding Box, Crop, Uncrop, ImageBlur, Denoise, ImageCompare, RGV to HSV, HSV to RGB, Color Correct, Modulo, Deglaze Image, Smart Step, ..."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "melMass",
|
||||||
|
"title": "comfy-oiio",
|
||||||
|
"reference": "https://github.com/melMass/comfy_oiio",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/melMass/comfy_oiio"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "OpenImageIO plugin for ComfyUI"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "xXAdonesXx",
|
"author": "xXAdonesXx",
|
||||||
"title": "NodeGPT",
|
"title": "NodeGPT",
|
||||||
@@ -1936,6 +1946,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Heuristic modification of the Heun sampler using a custom function based on normalized distances. For ComfyUI."
|
"description": "Heuristic modification of the Heun sampler using a custom function based on normalized distances. For ComfyUI."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "Extraltodeus",
|
||||||
|
"title": "Negative-attention-for-ComfyUI-",
|
||||||
|
"reference": "https://github.com/Extraltodeus/Negative-attention-for-ComfyUI-",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Extraltodeus/Negative-attention-for-ComfyUI-"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Takes the difference in between the positive and negative conditioning at the attention.\nNOTE: Will not work with Flux"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "JPS",
|
"author": "JPS",
|
||||||
"title": "JPS Custom Nodes for ComfyUI",
|
"title": "JPS Custom Nodes for ComfyUI",
|
||||||
@@ -2528,17 +2548,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Manage models: browsing, download and delete."
|
"description": "Manage models: browsing, download and delete."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "hayden-fr",
|
|
||||||
"title": "ComfyUI-Image-Browsing",
|
|
||||||
"id": "image-browsing",
|
|
||||||
"reference": "https://github.com/hayden-fr/ComfyUI-Image-Browsing",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/hayden-fr/ComfyUI-Image-Browsing"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Image Browsing: browsing, download and delete."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "ali1234",
|
"author": "ali1234",
|
||||||
"title": "comfyui-job-iterator",
|
"title": "comfyui-job-iterator",
|
||||||
@@ -3231,6 +3240,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI diffusers wrapper nodes for [a/HunyuanVideo](https://github.com/Tencent/HunyuanVideo)"
|
"description": "ComfyUI diffusers wrapper nodes for [a/HunyuanVideo](https://github.com/Tencent/HunyuanVideo)"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "kijai",
|
||||||
|
"title": "ComfyUI-StableXWrapper",
|
||||||
|
"reference": "https://github.com/kijai/ComfyUI-StableXWrapper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/kijai/ComfyUI-StableXWrapper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI wrapper for [a/StableX normal](https://github.com/Stable-X/StableNormal)/[a/delight](https://github.com/Stable-X/StableDelight) models"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "hhhzzyang",
|
"author": "hhhzzyang",
|
||||||
"title": "Comfyui-Lama",
|
"title": "Comfyui-Lama",
|
||||||
@@ -4014,15 +4033,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "amorano",
|
"author": "amorano",
|
||||||
"title": "Jovimetrix Composition Nodes",
|
"title": "Jovimetrix",
|
||||||
"id": "jovimetrix",
|
"id": "jovimetrix",
|
||||||
"reference": "https://github.com/Amorano/Jovimetrix",
|
"reference": "https://github.com/Amorano/Jovimetrix",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/Amorano/Jovimetrix"
|
"https://github.com/Amorano/Jovimetrix"
|
||||||
],
|
],
|
||||||
"nodename_pattern": " \\(JOV\\)$",
|
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Webcam, MIDI, Spout and GLSL shader support. Animation via tick. Parameter manipulation with wave generator. Math operations, universal value converstion, shape mask generation, image channel ops, batch splitting/merging/randomizing, load image/video from URL, Dynamic bus routing, support for GIPHY, save output anywhere! flatten, crop, transform; check color blindness, make stereograms or stereoscopic images, and much more."
|
"description": "Webcam, MIDI, Spout, and GLSL support with animation via tick. Features wave-based parameter modulation, math operations, universal value conversion, shape masking, image channel ops, batch processing, dynamic bus routing, GIPHY and SPOUT integration. Load images/videos from URLs, save output anywhere, and apply transformations like flattening, cropping, and color adjustments. Includes tools for color blindness simulation, stereograms, and stereoscopic imaging—plus much more!"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "amorano",
|
"author": "amorano",
|
||||||
@@ -4057,6 +4075,17 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Image metrics nodes for ComfyUI"
|
"description": "Image metrics nodes for ComfyUI"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Jovi_MIDI",
|
||||||
|
"id": "jovi_midi",
|
||||||
|
"reference": "https://github.com/Amorano/Jovi_MIDI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Amorano/Jovi_MIDI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Read and Process data from MIDI devices inside of ComfyUI."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Umikaze-job",
|
"author": "Umikaze-job",
|
||||||
"title": "select_folder_path_easy",
|
"title": "select_folder_path_easy",
|
||||||
@@ -4488,6 +4517,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Unofficial implementation of [a/UltraEdit](https://github.com/HaozheZhao/UltraEdit) (Diffusers) for ComfyUI"
|
"description": "Unofficial implementation of [a/UltraEdit](https://github.com/HaozheZhao/UltraEdit) (Diffusers) for ComfyUI"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "ZHO-ZHO-ZHO",
|
||||||
|
"title": "ComfyUI-DeepSeek-JanusPro",
|
||||||
|
"reference": "https://github.com/ZHO-ZHO-ZHO/ComfyUI-DeepSeek-JanusPro",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ZHO-ZHO-ZHO/ComfyUI-DeepSeek-JanusPro"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI-DeepSeek-JanusPro"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "kenjiqq",
|
"author": "kenjiqq",
|
||||||
"title": "qq-nodes-comfyui",
|
"title": "qq-nodes-comfyui",
|
||||||
@@ -5056,7 +5095,7 @@
|
|||||||
"https://github.com/glibsonoran/Plush-for-ComfyUI"
|
"https://github.com/glibsonoran/Plush-for-ComfyUI"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes: Style Prompt, OAI Dall_e Image. Plush contains two OpenAI enabled nodes: Style Prompt: Takes your prompt and the art style you specify and generates a prompt from ChatGPT3 or 4 that Stable Diffusion can use to generate an image in that style. OAI Dall_e 3: Takes your prompt and parameters and produces a Dall_e3 image in ComfyUI."
|
"description": "A suite of nodes that includes: - Prompt enhancers/generators that employ remote AI services and local front-ends like: ChatGPT, Anthropic Claude, Groq, LM Studio, Oobabooga, etc. - An Image Generator that uses Dall_e 3. - An image metadata extractor that extracts seed, prompt, cfg, size, denoise, etc from existing AI generated images and photo metadata (from exif data) from jpeg photographs. A tagger that appends text (tags) to the beginning, end and/or middle of a text block. Image and text multiplexer utili"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "vienteck",
|
"author": "vienteck",
|
||||||
@@ -5077,7 +5116,7 @@
|
|||||||
"https://github.com/MNeMoNiCuZ/ComfyUI-mnemic-nodes"
|
"https://github.com/MNeMoNiCuZ/ComfyUI-mnemic-nodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Added new models to Groq LLM. Added a new node: Tiktoken Tokenizer Info."
|
"description": "Added Lora Loader - Tag node, originally by badjeff"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "AI2lab",
|
"author": "AI2lab",
|
||||||
@@ -5417,6 +5456,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Some patches for Flux|HunYuanVideo etc, support TeaCache, PuLID."
|
"description": "Some patches for Flux|HunYuanVideo etc, support TeaCache, PuLID."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "lldacing",
|
||||||
|
"title": "ComfyUI_BEN_ll",
|
||||||
|
"reference": "https://github.com/lldacing/ComfyUI_BEN_ll",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lldacing/ComfyUI_BEN_ll"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Background removal based on BEN. NODES:LoadRembgByBenModel, RembgByBen, GetMaskByBen, RembgByBenAdvanced, BlurFusionForegroundEstimation."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "CosmicLaca",
|
"author": "CosmicLaca",
|
||||||
"title": "Primere nodes for ComfyUI",
|
"title": "Primere nodes for ComfyUI",
|
||||||
@@ -6476,6 +6525,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Add nodes that generates danbooru tags by [a/Dart(Danbooru Tags Transformer)](https://huggingface.co/p1atdev/dart-v1-sft)."
|
"description": "Add nodes that generates danbooru tags by [a/Dart(Danbooru Tags Transformer)](https://huggingface.co/p1atdev/dart-v1-sft)."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "nkchocoai",
|
||||||
|
"title": "ComfyUI-DanbooruPromptQuiz",
|
||||||
|
"reference": "https://github.com/nkchocoai/ComfyUI-DanbooruPromptQuiz",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/nkchocoai/ComfyUI-DanbooruPromptQuiz"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This node is for playing the game of guessing prompts by looking at images generated from prompts output by TIPO, Tagger, etc.."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "JaredTherriault",
|
"author": "JaredTherriault",
|
||||||
"title": "ComfyUI-JNodes",
|
"title": "ComfyUI-JNodes",
|
||||||
@@ -7532,6 +7591,26 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A custom node for ComfyUI that integrates DeepSeek's powerful chat and instruction API, enabling seamless AI interactions within your ComfyUI workflows."
|
"description": "A custom node for ComfyUI that integrates DeepSeek's powerful chat and instruction API, enabling seamless AI interactions within your ComfyUI workflows."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "ShmuelRonen",
|
||||||
|
"title": "ComfyUI Janus Pro Vision",
|
||||||
|
"reference": "https://github.com/ShmuelRonen/ComfyUI-Janus_pro_vision",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ShmuelRonen/ComfyUI-Janus_pro_vision"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node extension that integrates the Janus-Pro-7B vision-language model from DeepSeek AI on your's local computer, enabling powerful image understanding and multi-turn conversation capabilities."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ShmuelRonen",
|
||||||
|
"title": "ComfyUI-JoyHallo_wrapper",
|
||||||
|
"reference": "https://github.com/ShmuelRonen/ComfyUI-JoyHallo_wrapper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ShmuelRonen/ComfyUI-JoyHallo_wrapper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node wrapper for JoyHallo - One-Shot Audio-Driven Talking Head Generation."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "redhottensors",
|
"author": "redhottensors",
|
||||||
"title": "ComfyUI-Prediction",
|
"title": "ComfyUI-Prediction",
|
||||||
@@ -7636,7 +7715,7 @@
|
|||||||
"https://github.com/1038lab/ComfyUI-WildPromptor"
|
"https://github.com/1038lab/ComfyUI-WildPromptor"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Create dynamic prompts with wildcard list."
|
"description": "WildPromptor simplifies prompt creation, organization, and customization in ComfyUI, turning chaotic workflows into an efficient, intuitive process."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "1038lab",
|
"author": "1038lab",
|
||||||
@@ -9352,7 +9431,7 @@
|
|||||||
"https://github.com/DrMWeigand/ComfyUI-StereoVision"
|
"https://github.com/DrMWeigand/ComfyUI-StereoVision"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "The StereoVision plugin for ComfyUI enables the creation of stereoscopic and autostereoscopic images and videos using depth maps. It supports both traditional stereoscopic image generation and autostereogram (Magic Eye) creation."
|
"description": "A ComfyUI node for producing stereoscopic and autostereogram (magic eye) images and videos."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "bobmagicii",
|
"author": "bobmagicii",
|
||||||
@@ -10375,6 +10454,36 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI_MangaNinjia is a ComfyUI node of MangaNinja which is a Line Art Colorization with Precise Reference Following method."
|
"description": "ComfyUI_MangaNinjia is a ComfyUI node of MangaNinja which is a Line Art Colorization with Precise Reference Following method."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "smthemex",
|
||||||
|
"title": "ComfyUI_Sonic",
|
||||||
|
"reference": "https://github.com/smthemex/ComfyUI_Sonic",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/smthemex/ComfyUI_Sonic"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Sonic is a method about ' Shifting Focus to Global Audio Perception in Portrait Animation',you can use it in comfyUI."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "smthemex",
|
||||||
|
"title": "ComfyUI_DiffuEraser",
|
||||||
|
"reference": "https://github.com/smthemex/ComfyUI_DiffuEraser",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/smthemex/ComfyUI_DiffuEraser"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "DiffuEraser is a diffusion model for video Inpainting, you can use it in ComfyUI"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "smthemex",
|
||||||
|
"title": "ComfyUI_CSD_MT",
|
||||||
|
"reference": "https://github.com/smthemex/ComfyUI_CSD_MT",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/smthemex/ComfyUI_CSD_MT"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "[a/CSD_MT](https://github.com/Snowfallingplum/CSD-MT) is a method about 'Content-Style Decoupling for Unsupervised Makeup Transfer without Generating Pseudo Ground Truth', you can use it in comfyUI."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "choey",
|
"author": "choey",
|
||||||
"title": "Comfy-Topaz",
|
"title": "Comfy-Topaz",
|
||||||
@@ -11012,6 +11121,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Custom node for using Prompt S/R in XY Plot\nAlso includes nodes for listing generic parameters like seed and cfg\nEasy to manipulate as elements are separated by line breaks\nDesigned for use with the XY Plot custom node qq-nodes-comfyui, but may work with other custom nodes as well"
|
"description": "Custom node for using Prompt S/R in XY Plot\nAlso includes nodes for listing generic parameters like seed and cfg\nEasy to manipulate as elements are separated by line breaks\nDesigned for use with the XY Plot custom node qq-nodes-comfyui, but may work with other custom nodes as well"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "da2el-ai",
|
||||||
|
"title": "D2-PromptSelector-comfyUI",
|
||||||
|
"reference": "https://github.com/da2el-ai/D2-PromptSelector-comfyUI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/da2el-ai/D2-PromptSelector-comfyUI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a version of [a/sd-d2-prompt-selector](https://github.com/da2el-ai/sd-d2-prompt-selector) reworked for ComfyUI. It's just a prototype that I've put together for now. The random syntax of sd-d2-prompt-selector cannot be used; instead, the DynamicPrompt syntax is used"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "nat-chan",
|
"author": "nat-chan",
|
||||||
"title": "ComfyUI-Transceiver📡",
|
"title": "ComfyUI-Transceiver📡",
|
||||||
@@ -12300,6 +12419,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A custom node for ComfyUI that calculates CLIP and LPIPS similarity scores between two images."
|
"description": "A custom node for ComfyUI that calculates CLIP and LPIPS similarity scores between two images."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "risunobushi",
|
||||||
|
"title": "ComfyUI_DisplacementMapTools",
|
||||||
|
"reference": "https://github.com/risunobushi/ComfyUI_DisplacementMapTools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/risunobushi/ComfyUI_DisplacementMapTools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Extract Displacement Map Node, Displace Logo"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "zohac",
|
"author": "zohac",
|
||||||
"title": "ComfyUI_ZC_DrawShape",
|
"title": "ComfyUI_ZC_DrawShape",
|
||||||
@@ -13379,6 +13508,16 @@
|
|||||||
"install_type": "copy",
|
"install_type": "copy",
|
||||||
"description": "NODES: SDXLMixSampler, LatentByRatio"
|
"description": "NODES: SDXLMixSampler, LatentByRatio"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "lrzjason",
|
||||||
|
"title": "Comfyui-ThinkRemover",
|
||||||
|
"reference": "https://github.com/lrzjason/Comfyui-ThinkRemover",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lrzjason/Comfyui-ThinkRemover"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Remove content inside 'think' tag from reasoning llm"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "amorano",
|
"author": "amorano",
|
||||||
"title": "Cozy Communication",
|
"title": "Cozy Communication",
|
||||||
@@ -13746,6 +13885,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "AspectSize and other nodes"
|
"description": "AspectSize and other nodes"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "DriftJohnson",
|
||||||
|
"title": "KokoroTTS Node",
|
||||||
|
"reference": "https://github.com/MushroomFleet/DJZ-KokoroTTS",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/MushroomFleet/DJZ-KokoroTTS"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This node provides advanced text-to-speech functionality powered by KokoroTTS. Follow the instructions below to install, configure, and use the node within your portable ComfyUI installation."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "var1ableX",
|
"author": "var1ableX",
|
||||||
"title": "ComfyUI_Accessories",
|
"title": "ComfyUI_Accessories",
|
||||||
@@ -14603,10 +14752,10 @@
|
|||||||
{
|
{
|
||||||
"author": "RyanOnTheInside",
|
"author": "RyanOnTheInside",
|
||||||
"title": "Nodes for use with real-time applications of ComfyUI",
|
"title": "Nodes for use with real-time applications of ComfyUI",
|
||||||
"id": "realtimenodes",
|
"id": "comfyui_realtimenodes",
|
||||||
"reference": "https://github.com/ryanontheinside/ComfyUI_RealTimeNodes",
|
"reference": "https://github.com/ryanontheinside/ComfyUI_RealtimeNodes",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/ryanontheinside/ComfyUI_RealTimeNodes"
|
"https://github.com/ryanontheinside/ComfyUI_RealtimeNodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "These nodes are for real-time applications of ComfyUI."
|
"description": "These nodes are for real-time applications of ComfyUI."
|
||||||
@@ -14857,7 +15006,7 @@
|
|||||||
"https://github.com/xlinx/ComfyUI-decadetw-auto-prompt-llm"
|
"https://github.com/xlinx/ComfyUI-decadetw-auto-prompt-llm"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Auto prompt by LLM and LLM-Vision. (Trigger more details hiding in model)"
|
"description": "NODES: Auto-LLM-Text-Vision, Auto-LLM-Text, Auto-LLM-Vision"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "xlinx",
|
"author": "xlinx",
|
||||||
@@ -15428,7 +15577,7 @@
|
|||||||
"https://github.com/SeanScripts/ComfyUI-PixtralLlamaMolmoVision"
|
"https://github.com/SeanScripts/ComfyUI-PixtralLlamaMolmoVision"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "For loading and running Pixtral, Llama 3.2 Vision, and Molmo models. Put models in the models/LLM folder.\n[w/Renamed from ComfyUI-PixtralLlamaVision. Please reinstall.]"
|
"description": "For loading and running Pixtral, Llama 3.2 Vision, and Molmo models. Put models in the models/LLM folder."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "ExterminanzHS",
|
"author": "ExterminanzHS",
|
||||||
@@ -15715,16 +15864,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Custom javascript extensions for better UX for ComfyUI. Double click on image to open. It's convenient for checking images."
|
"description": "Custom javascript extensions for better UX for ComfyUI. Double click on image to open. It's convenient for checking images."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "NyaamZ",
|
|
||||||
"title": "Get Booru Tag ExtendeD",
|
|
||||||
"reference": "https://github.com/NyaamZ/ComfyUI-GetBooruTag-ED",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/NyaamZ/ComfyUI-GetBooruTag-ED"
|
|
||||||
],
|
|
||||||
"description": "Get tag from Booru site.",
|
|
||||||
"install_type": "git-clone"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "chrissy0",
|
"author": "chrissy0",
|
||||||
"title": "chris-comfyui-nodes",
|
"title": "chris-comfyui-nodes",
|
||||||
@@ -17182,7 +17321,7 @@
|
|||||||
"https://github.com/LevelPixel/ComfyUI-LevelPixel"
|
"https://github.com/LevelPixel/ComfyUI-LevelPixel"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Various nodes of the Level Pixel company. Includes convenient advanced nodes for working with images from folders; counting files in a folder; cleaning memory; tag filters. Model Unloader, LLM Unloader (GGUF unloaders), Free memory, Tag Filters, Tag Category Filters, Tag Choice Parser, File counter, Image Loader From Path (with counters), Image Remove Background based on RemBG."
|
"description": "Various nodes of the Level Pixel company. Includes convenient advanced nodes for working with images from folders; counting files in a folder; cleaning memory; tag filters. Model Unloader, LLM Unloader (GGUF unloaders), Free memory, Tag Filters, Tag Category Filters, Tag Choice Parser, File counter, Image Loader From Path (with counters), Image Remove Background based on RemBG, Autotagger."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "morino-kumasan",
|
"author": "morino-kumasan",
|
||||||
@@ -17338,6 +17477,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Implements proper multitouch zooming and panning into ComfyUI to make it more usable on mobile devices."
|
"description": "Implements proper multitouch zooming and panning into ComfyUI to make it more usable on mobile devices."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "Lasse Lauwerys",
|
||||||
|
"title": "Touchpad and trackpad gesture support",
|
||||||
|
"reference": "https://github.com/Iemand005/ComfyUI-Touchpad-Gestures",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Iemand005/ComfyUI-Touchpad-Gestures"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Implements proper touchpad/trackpad zooming and panning into ComfyUI to make it more usable on laptops."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "phazei",
|
"author": "phazei",
|
||||||
"title": "Prompt Stash Saver Node for ComfyUI",
|
"title": "Prompt Stash Saver Node for ComfyUI",
|
||||||
@@ -17715,6 +17864,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "About DeepSeek Chat API\nGo here to register and get the api-key [a/https://platform.deepseek.com/](https://platform.deepseek.com/) Then enter api_key in config.json"
|
"description": "About DeepSeek Chat API\nGo here to register and get the api-key [a/https://platform.deepseek.com/](https://platform.deepseek.com/) Then enter api_key in config.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "yichengup",
|
||||||
|
"title": "ComfyUI-YCNodes",
|
||||||
|
"reference": "https://github.com/yichengup/ComfyUI-YCNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yichengup/ComfyUI-YCNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A collection of image processing extension nodes for ComfyUI."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Horizon Team",
|
"author": "Horizon Team",
|
||||||
"title": "ComfyUI_FluxMod",
|
"title": "ComfyUI_FluxMod",
|
||||||
@@ -17956,16 +18115,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes that implement functionality similar to the Dynamic Prompts extension for A1111."
|
"description": "Nodes that implement functionality similar to the Dynamic Prompts extension for A1111."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "Lasse Lauwerys",
|
|
||||||
"title": "Touchpad and trackpad gesture support",
|
|
||||||
"reference": "https://github.com/Iemand005/ComfyUI-Touchpad-Gestures",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Iemand005/ComfyUI-Touchpad-Gestures"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Implements proper touchpad zooming and panning into ComfyUI to make it more usable on laptops."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "SleeeepyZhou",
|
"author": "SleeeepyZhou",
|
||||||
"title": "CNtranslator",
|
"title": "CNtranslator",
|
||||||
@@ -19887,14 +20036,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "asutermo",
|
"author": "asutermo",
|
||||||
"title": "Try Off w/ Flux and CatVTON",
|
"title": "ComfyUI-Flux-TryOff",
|
||||||
"id": "tryoffflux",
|
"id": "tryoffflux",
|
||||||
"reference": "https://github.com/asutermo/ComfyUI-Flux-TryOff",
|
"reference": "https://github.com/asutermo/ComfyUI-Flux-TryOff",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/asutermo/ComfyUI-Flux-TryOff"
|
"https://github.com/asutermo/ComfyUI-Flux-TryOff"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This is a set of nodes to make it possible to extract garments/clothing from models to apply elsewhere."
|
"description": "Try Off for ComfyUI using Flux and CatVTON."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "bugltd",
|
"author": "bugltd",
|
||||||
@@ -19926,7 +20075,7 @@
|
|||||||
"https://github.com/DJ-Tribefull/Comfyui_FOCUS_nodes"
|
"https://github.com/DJ-Tribefull/Comfyui_FOCUS_nodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This is a small collection of nodes designed for efficiency and the reduction of screen clutter. I work primarily with a two-stage SDXL workflow, so some of the nodes are tailored to that, but many of the most useful nodes can be used in any context."
|
"description": "A collection of nodes designed for efficiency and the reduction of screen-clutter. Includes a Global Seed controller with boolean toggles, SDXL All-in-One conditioner, a custom SDXL control module, Wildcard processor, Style Injector, and more. [w/WARNING: Updating this node-pack wil overwrite any changes you've made to the included wildcards and styles. Please backup your folders before updating.]"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "KLL535",
|
"author": "KLL535",
|
||||||
@@ -19938,6 +20087,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Node to automate batch generation with randomize prompts from text files. It mimics Forge's functionality, allowing you to combine text elements and LoRA. The node supports writing LoRA in any order within a text file using formats like <lora:name:1.0> or <lora:name:unet=1.0:te=0.75>, without needing separate nodes. The node understands LoRA names in Forge's style, when the name is not the filename, but the internal name from the metadata."
|
"description": "Node to automate batch generation with randomize prompts from text files. It mimics Forge's functionality, allowing you to combine text elements and LoRA. The node supports writing LoRA in any order within a text file using formats like <lora:name:1.0> or <lora:name:unet=1.0:te=0.75>, without needing separate nodes. The node understands LoRA names in Forge's style, when the name is not the filename, but the internal name from the metadata."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "KLL535",
|
||||||
|
"title": "ComfyUI_PNGInfo_Sidebar",
|
||||||
|
"reference": "https://github.com/KLL535/ComfyUI_PNGInfo_Sidebar",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/KLL535/ComfyUI_PNGInfo_Sidebar"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Frontend extension that adds a sidebar for easy viewing of PNG file metadata."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "mango125",
|
"author": "mango125",
|
||||||
"title": "ComfyUI-Mango-Random",
|
"title": "ComfyUI-Mango-Random",
|
||||||
@@ -19999,17 +20158,7 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Implementation of architectural related graph algorithm in ComfyUI."
|
"description": "Implementation of architectural related graph algorithm in ComfyUI."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "lingha",
|
|
||||||
"title": "comfyui_kj",
|
|
||||||
"id": "comfyui_kj",
|
|
||||||
"reference": "https://github.com/XieChengYuan/comfyui_kj",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/XieChengYuan/comfyui_kj"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "comfyui_kj, A tool that can package workflows into projects and publish them to a WeChat Mini Program named Kaji, allowing charges to be collected from users."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "ziwang-com",
|
"author": "ziwang-com",
|
||||||
"title": "comfyui-deepseek-r1",
|
"title": "comfyui-deepseek-r1",
|
||||||
@@ -20144,13 +20293,24 @@
|
|||||||
{
|
{
|
||||||
"author": "ProGamerGov",
|
"author": "ProGamerGov",
|
||||||
"title": "PyTorch 360° Image Conversion Toolkit for ComfyUI",
|
"title": "PyTorch 360° Image Conversion Toolkit for ComfyUI",
|
||||||
"id": "pytorch360convert",
|
"id": "comfyui-pytorch360convert",
|
||||||
"reference": "https://github.com/ProGamerGov/ComfyUI_pytorch360convert",
|
"reference": "https://github.com/ProGamerGov/ComfyUI_pytorch360convert",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/ProGamerGov/ComfyUI_pytorch360convert"
|
"https://github.com/ProGamerGov/ComfyUI_pytorch360convert"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A collection of custom nodes for working and converting between 360 degree equirectangular images, cubemap, and perspective images. Panoramic 360 images are also sometimes known as 'VR photography', 'image sphere', and 360 pano."
|
"description": "A collection of custom nodes for working with and converting between 360 degree equirectangular images, cubemap, and perspective images. Panoramic 360 images are also sometimes known as VR photography (virtual reality), HDRI environments (ex: skyboxes), image spheres, spherical images, 360 pano, and 360 degree photos."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ProGamerGov",
|
||||||
|
"title": "Preview 360 Panorama for ComfyUI",
|
||||||
|
"id": "comfyui-preview360panorama",
|
||||||
|
"reference": "https://github.com/ProGamerGov/ComfyUI_preview360panorama",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ProGamerGov/ComfyUI_preview360panorama"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom ComfyUI node for interactive 360° panorama image previews. Panoramic 360 images are also sometimes known as VR photography (virtual reality), HDRI environments (ex: skyboxes), image spheres, spherical images, 360 pano, and 360 degree photos."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "burnsbert",
|
"author": "burnsbert",
|
||||||
@@ -20211,7 +20371,7 @@
|
|||||||
"https://github.com/willmiao/ComfyUI-Lora-Manager"
|
"https://github.com/willmiao/ComfyUI-Lora-Manager"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "LoRA Manager for ComfyUI - An extension for managing LoRA models with previews and metadata integration."
|
"description": "LoRA Manager for ComfyUI - Access it at http://localhost:8188/loras for managing LoRA models with previews and metadata integration."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "tigeryy2",
|
"author": "tigeryy2",
|
||||||
@@ -20273,6 +20433,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI-SendToDiscord is a custom node for ComfyUI that simplifies sending preview images to Discord via webhooks. It supports both single-image uploads and batch mode, making it an efficient tool for sharing your generated images directly with your Discord server."
|
"description": "ComfyUI-SendToDiscord is a custom node for ComfyUI that simplifies sending preview images to Discord via webhooks. It supports both single-image uploads and batch mode, making it an efficient tool for sharing your generated images directly with your Discord server."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "gmorks",
|
||||||
|
"title": "ComfyUI Animagine prompt",
|
||||||
|
"reference": "https://github.com/gmorks/ComfyUI-Animagine-Prompt",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gmorks/ComfyUI-Animagine-Prompt"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Comfy UI node to prompt build for [a/https://huggingface.co/cagliostrolab/animagine-xl-4.0](https://huggingface.co/cagliostrolab/animagine-xl-4.0) model"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "jinanlongen",
|
"author": "jinanlongen",
|
||||||
"title": "ComfyUI Prompt Expander Node",
|
"title": "ComfyUI Prompt Expander Node",
|
||||||
@@ -20293,6 +20463,388 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A ComfyUI node that integrates DINO-X API for object detection and segmentation. This node allows you to detect and segment objects in images using text prompts."
|
"description": "A ComfyUI node that integrates DINO-X API for object detection and segmentation. This node allows you to detect and segment objects in images using text prompts."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "checkbins",
|
||||||
|
"title": "checkbin-comfy",
|
||||||
|
"id": "checkbin",
|
||||||
|
"reference": "https://github.com/checkbins/checkbin-comfy",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/checkbins/checkbin-comfy"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "These nodes allow you to make Checkbin comparisons."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "GHOSTLXH",
|
||||||
|
"title": "ComfyUI-Counternodes",
|
||||||
|
"reference": "https://github.com/GHOSTLXH/ComfyUI-Counternodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/GHOSTLXH/ComfyUI-Counternodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This node group contains a series of ComfyUI nodes with built-in counters and specific output results based on the counter's output, aimed at implementing folder traversal functionality in the ComfyUI frontend. For specific examples, please refer to the sample workflow. Of course, you can also use your imagination to create other interesting things."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "agilly1989",
|
||||||
|
"title": "ComfyUI_agilly1989_motorway",
|
||||||
|
"reference": "https://github.com/agilly1989/ComfyUI_agilly1989_motorway",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/agilly1989/ComfyUI_agilly1989_motorway"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This my implemenation of a `pipe` in ComfyUI. Is it better or worse than others? No idea."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "AiartvnTeam",
|
||||||
|
"title": "A2V Multi Image Composite",
|
||||||
|
"id": "Aiartvn",
|
||||||
|
"reference": "https://github.com/aiartvn/A2V_Multi_Image_Composite",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/aiartvn/A2V_Multi_Image_Composite"
|
||||||
|
],
|
||||||
|
"description": "Node for compositing multiple images with interactive preview and layer management",
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"tags": ["image", "composite", "layer", "blend", "transform"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "zentrocdot",
|
||||||
|
"title": "ComfyUI_Circle_Detection",
|
||||||
|
"reference": "https://github.com/zentrocdot/ComfyUI_Circle_Detection",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/zentrocdot/ComfyUI_Circle_Detection"
|
||||||
|
],
|
||||||
|
"description": "Next to AI mathematical methods can be used for the detection of objects like a circle.",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "zentrocdot",
|
||||||
|
"title": "ComfyUI-RealESRGAN_Upscaler",
|
||||||
|
"reference": "https://github.com/zentrocdot/ComfyUI-RealESRGAN_Upscaler",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/zentrocdot/ComfyUI-RealESRGAN_Upscaler"
|
||||||
|
],
|
||||||
|
"description": "This node uses the RealESRGAN model from [a/xinntao](https://github.com/xinntao/Real-ESRGAN).",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "zentrocdot",
|
||||||
|
"title": "ComfyUI-Simple_Image_To_Prompt",
|
||||||
|
"reference": "https://github.com/zentrocdot/ComfyUI-Simple_Image_To_Prompt",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/zentrocdot/ComfyUI-Simple_Image_To_Prompt"
|
||||||
|
],
|
||||||
|
"description": "ComfyUI simple Image To Prompt node.",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hgabha",
|
||||||
|
"title": "WWAA-CustomNodes",
|
||||||
|
"reference": "https://github.com/hgabha/WWAA-CustomNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hgabha/WWAA-CustomNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom Nodes by the team at WeirdWonderfulAI.Art. Line Count, Join String, Dither Image, Image Batch Loader, Prompt Writer"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "slvslvslv",
|
||||||
|
"title": "ComfyUI Smart Helper Nodes",
|
||||||
|
"reference": "https://github.com/slvslvslv/ComfyUI-SmartHelperNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/slvslvslv/ComfyUI-SmartHelperNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Smart HunyuanVideo Lora Select, Smart HunyuanVideo Lora StackSmart Format String, Smart Format String (10 params)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Tr1dae",
|
||||||
|
"title": "ComfyUI-Dequality",
|
||||||
|
"reference": "https://github.com/Tr1dae/ComfyUI-Dequality",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Tr1dae/ComfyUI-Dequality"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple addition to add noise to an image. Found on reddit"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "greengerong",
|
||||||
|
"title": "Janus-Pro ComfyUI Plugin",
|
||||||
|
"reference": "https://github.com/greengerong/ComfyUI-JanusPro-PL",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/greengerong/ComfyUI-JanusPro-PL"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This plugin integrates the Janus-Pro multi-modal model into ComfyUI, enabling advanced image understanding and text-to-image generation capabilities. It supports both image analysis and creative image generation workflows."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "raindrop313",
|
||||||
|
"title": "ComfyUI_SD3_Flowedit",
|
||||||
|
"reference": "https://github.com/raindrop313/ComfyUI_SD3_Flowedit",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/raindrop313/ComfyUI_SD3_Flowedit"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI nodes that support SD3/SD3.5 in FlowEdit"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "satche",
|
||||||
|
"title": "Prompt Factory",
|
||||||
|
"reference": "https://github.com/satche/comfyui-prompt-factory",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/satche/comfyui-prompt-factory"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A modular system that adds randomness to prompt generation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hdfhssg",
|
||||||
|
"title": "ComfyUI_pxtool",
|
||||||
|
"reference": "https://github.com/hdfhssg/ComfyUI_pxtool",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hdfhssg/ComfyUI_pxtool"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a custom plugin node for ComfyUI that modifies and extends some features from existing projects. The main implementations include:\n* Reproducing some features of the [a/Stable-Diffusion-Webui-Civitai-Helper](https://github.com/zixaphir/Stable-Diffusion-Webui-Civitai-Helper) project within ComfyUI\n* Implementing a feature to randomly generate related prompt words by referencing the [a/noob-wiki dataset](https://huggingface.co/datasets/Laxhar/noob-wiki/tree/main)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "martin-rizzo",
|
||||||
|
"title": "ComfyUI-TinyBreaker",
|
||||||
|
"reference": "https://github.com/martin-rizzo/ComfyUI-TinyBreaker",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/martin-rizzo/ComfyUI-TinyBreaker"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI-TinyBreaker is a collection of custom nodes specifically designed to generate images using the TinyBreaker model. It's actively developed with ongoing improvements. Although still in progress, these nodes are functional and allow you to explore the potential of the model."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Arkanun",
|
||||||
|
"title": "ReadCSV_ComfyUI",
|
||||||
|
"reference": "https://github.com/Arkanun/ReadCSV_ComfyUI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Arkanun/ReadCSV_ComfyUI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: ReadCSVRowNode"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gorillaframeai",
|
||||||
|
"title": "GF_translate",
|
||||||
|
"reference": "https://github.com/gorillaframeai/GF_translate",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gorillaframeai/GF_translate"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "These custom nodes for ComfyUI provide advanced text translation capabilities using Google Translate. They are designed for seamless integration into the ComfyUI environment, offering users powerful tools for text and JSON file translation tasks."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "DragonDiffusionbyBoyo",
|
||||||
|
"title": "Boyonodes",
|
||||||
|
"reference": "https://github.com/DragonDiffusionbyBoyo/Boyonodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/DragonDiffusionbyBoyo/Boyonodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The Vae node is a sneaky little node perfect for deployment in Schools or work environments where you do not want the kiddywinkles creating NSFW content. Just rename the node to VAE decode and it looks like a normal node but hidden inside is an NSFW detector. Once hidden in the workflow there are no settings to undo the NSFW detection so cannot be worked around unless you remove the node. The node looks innocent once renamed so is virtually undetectable. I have placed an example workflow for you to see how to connect it. Simple stuff really, but once connected just rename."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "StarAsh042",
|
||||||
|
"title": "ComfyUI_RollingArtist",
|
||||||
|
"reference": "https://github.com/StarAsh042/ComfyUI_RollingArtist",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/StarAsh042/ComfyUI_RollingArtist"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "RollingArtist is a ComfyUI node designed to generate artist prompt texts with random weights, suitable for text-to-image generation models. The node reads an artist list from a CSV file and generates combined prompts based on the parameters."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "magekinnarus",
|
||||||
|
"title": "ComfyUI-V-Prediction-Node",
|
||||||
|
"reference": "https://github.com/magekinnarus/ComfyUI-V-Prediction-Node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/magekinnarus/ComfyUI-V-Prediction-Node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Node to set v-prediction sampling when using SDXL and other models that may not have the necessary metadata to identify it as a v-prediction model. This node is useful for quantized models since they lack the necessary metadata."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "CC-SUN6",
|
||||||
|
"title": "ccsun_node",
|
||||||
|
"reference": "https://github.com/CC-SUN6/ccsun_node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/CC-SUN6/ccsun_node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "About the comfyui image selector, image adjustment (panning, rotation, zoom), adjust image size to be a multiple of 8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "DiaoDaiaChan",
|
||||||
|
"title": "Comfyui SDAPI Request / NovelAI",
|
||||||
|
"id": "diaodaiachan",
|
||||||
|
"reference": "https://github.com/DiaoDaiaChan/ComfyUI_API_Request",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/DiaoDaiaChan/ComfyUI_API_Request"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A Novel AI / SD-WebUI request node, support nai3/nai4, use NovelAI model in Your Comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "dorpxam",
|
||||||
|
"title": "ComfyUI-LTXVideoLoRA",
|
||||||
|
"reference": "https://github.com/dorpxam/ComfyUI-LTXVideoLoRA",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/dorpxam/ComfyUI-LTXVideoLoRA"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A set of custom nodes enabling LoRA support for LTX Video"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "asdrabael",
|
||||||
|
"title": "Hunyuan-Multi-Lora-Loader",
|
||||||
|
"id": "Hunyuan Multi-Lora Loader",
|
||||||
|
"reference": "https://github.com/asdrabael/Hunyuan-Multi-Lora-Loader",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/asdrabael/Hunyuan-Multi-Lora-Loader"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Node for loading multiple Lora's [a/HunyuanVideo](https://github.com/Tencent/HunyuanVideo)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "lingha",
|
||||||
|
"title": "comfyui_kj",
|
||||||
|
"id": "comfyui_kj",
|
||||||
|
"reference": "https://github.com/lingha0h/comfyui_kj",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lingha0h/comfyui_kj"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "comfyui_kj, A tool that can package workflows into projects and publish them to a WeChat Mini Program named Kaji, allowing charges to be collected from users."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "vahlok-alunmid",
|
||||||
|
"title": "ComfyUI-ExtendIPAdapterClipVision",
|
||||||
|
"reference": "https://github.com/vahlok-alunmid/ComfyUI-ExtendIPAdapterClipVision",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/vahlok-alunmid/ComfyUI-ExtendIPAdapterClipVision"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This extension provides two nodes to use with my experimental [a/ip-adapter finetune](https://civitai.com/models/1233692?modelVersionId=1390253) for NoobAI-XL style transfer. [a/Here](https://github.com/vahlok-alunmid/reForge-preprocessor_bigG_448) is the counterpart extension for Reforge WebUI."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "guerreiro",
|
||||||
|
"title": "Comfyg Switch",
|
||||||
|
"reference": "https://github.com/guerreiro/comfyg-switch",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/guerreiro/comfyg-switch"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Comfyg Switch is a custom node that dynamically selects model configuration parameters based on the chosen checkpoint. It reads model-specific settings from a JSON file (model_configs.json)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "yanhuifair",
|
||||||
|
"title": "comfyui-janus",
|
||||||
|
"reference": "https://github.com/yanhuifair/comfyui-janus",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yanhuifair/comfyui-janus"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI nodes for Janus"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ShunL12324",
|
||||||
|
"title": "comfy-portal-endpoint",
|
||||||
|
"reference": "https://github.com/ShunL12324/comfy-portal-endpoint",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ShunL12324/comfy-portal-endpoint"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a ComfyUI extension that provides additional API endpoints functionality, primarily designed to support Comfy Portal - a modern iOS client application for ComfyUI."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "burnsbert",
|
||||||
|
"title": "EBU LMStudio LLM Integration",
|
||||||
|
"id": "ebu-lmstudio",
|
||||||
|
"reference": "https://github.com/burnsbert/ComfyUI-EBU-LMStudio",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/burnsbert/ComfyUI-EBU-LMStudio"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes for integrating LM Studio's LLM functionality into ComfyUI. Includes EBU LMStudio Load, EBU LMStudio UnloadAll, and EBU LMStudio Make Request."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "burnsbert",
|
||||||
|
"title": "EBU PromptHelper",
|
||||||
|
"id": "ebu-prompthelper",
|
||||||
|
"reference": "https://github.com/burnsbert/ComfyUI-EBU-PromptHelper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/burnsbert/ComfyUI-EBU-PromptHelper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes for enhancing and manipulating prompts in ComfyUI. Includes nodes for random color palette generation following different color theory methodologies, prompt text replacement and randomization, list sampling, loading files into strings, and season/weather/time-of-day generation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ShinChven",
|
||||||
|
"title": "ShinChven's Custom Nodes Package",
|
||||||
|
"reference": "https://github.com/ShinChven/sc-comfy-nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ShinChven/sc-comfy-nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This project contains custom nodes for ComfyUI, developed by ShinChven. The nodes in this package extend the functionality of ComfyUI by providing additional features and utilities."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "vkff5833",
|
||||||
|
"title": "ComfyUI-MobileClient",
|
||||||
|
"reference": "https://github.com/vkff5833/ComfyUI-MobileClient",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/vkff5833/ComfyUI-MobileClient"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Add a mobile-friendly web interface to ComfyUI."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mediocreatmybest",
|
||||||
|
"title": "ComfyUI-Transformers-Pipeline",
|
||||||
|
"reference": "https://github.com/mediocreatmybest/ComfyUI-Transformers-Pipeline",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/mediocreatmybest/ComfyUI-Transformers-Pipeline"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Some additional ComfyUI nodes allowing tasks via the Huggingface Transformers Pipeline."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "iris-Neko",
|
||||||
|
"title": "ComfyUI_ascii_art",
|
||||||
|
"reference": "https://github.com/iris-Neko/ComfyUI_ascii_art",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/iris-Neko/ComfyUI_ascii_art"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI node for [a/ASCII art controlnet](https://civitai.com/models/986392)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mie",
|
||||||
|
"title": "ComfyUI_MieNodes",
|
||||||
|
"reference": "https://github.com/MieMieeeee/ComfyUI-MieNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/MieMieeeee/ComfyUI-MieNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Offering a series of utility nodes designed to simplify workflows and enhance efficiency"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -20770,6 +21322,17 @@
|
|||||||
"install_type": "copy",
|
"install_type": "copy",
|
||||||
"description": "NODES: OverrideLoadedDiffusionDevice.\nI happen to have two graphics cards, and I want to load models into another graphics card in Comfyui, so I designed this small node."
|
"description": "NODES: OverrideLoadedDiffusionDevice.\nI happen to have two graphics cards, and I want to load models into another graphics card in Comfyui, so I designed this small node."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "Kayarte",
|
||||||
|
"title": "GeoNodes",
|
||||||
|
"reference": "https://github.com/Kayarte/GeoNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Kayarte/GeoNodes/raw/refs/heads/main/GISDetectionNode.py"
|
||||||
|
],
|
||||||
|
"install_type": "copy",
|
||||||
|
"description": "GIS Processing Nodes for ComfyUI"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
7094
github-stats.json
7094
github-stats.json
File diff suppressed because it is too large
Load Diff
@@ -4,6 +4,7 @@ description:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
import logging
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
import subprocess
|
||||||
@@ -41,7 +42,7 @@ import manager_downloader
|
|||||||
from node_package import InstalledNodePackage
|
from node_package import InstalledNodePackage
|
||||||
|
|
||||||
|
|
||||||
version_code = [3, 9, 5]
|
version_code = [3, 19]
|
||||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||||
|
|
||||||
|
|
||||||
@@ -173,7 +174,7 @@ git_script_path = os.path.join(manager_util.comfyui_manager_path, "git_helper.py
|
|||||||
manager_files_path = None
|
manager_files_path = None
|
||||||
manager_config_path = None
|
manager_config_path = None
|
||||||
manager_channel_list_path = None
|
manager_channel_list_path = None
|
||||||
manager_startup_script_path = None
|
manager_startup_script_path:str = None
|
||||||
manager_snapshot_path = None
|
manager_snapshot_path = None
|
||||||
manager_pip_overrides_path = None
|
manager_pip_overrides_path = None
|
||||||
manager_components_path = None
|
manager_components_path = None
|
||||||
@@ -324,6 +325,8 @@ def normalize_channel(channel):
|
|||||||
return None
|
return None
|
||||||
elif channel.startswith('https://'):
|
elif channel.startswith('https://'):
|
||||||
return channel
|
return channel
|
||||||
|
elif channel.startswith('http://') and get_config()['http_channel_enabled'] == True:
|
||||||
|
return channel
|
||||||
|
|
||||||
tmp_dict = get_channel_dict()
|
tmp_dict = get_channel_dict()
|
||||||
channel_url = tmp_dict.get(channel)
|
channel_url = tmp_dict.get(channel)
|
||||||
@@ -692,6 +695,9 @@ class UnifiedManager:
|
|||||||
self.unknown_active_nodes = {} # node_id -> repo url * fullpath
|
self.unknown_active_nodes = {} # node_id -> repo url * fullpath
|
||||||
self.active_nodes = {} # node_id -> node_version * fullpath
|
self.active_nodes = {} # node_id -> node_version * fullpath
|
||||||
|
|
||||||
|
if get_config()['network_mode'] != 'public':
|
||||||
|
dont_wait = True
|
||||||
|
|
||||||
# reload 'cnr_map' and 'repo_cnr_map'
|
# reload 'cnr_map' and 'repo_cnr_map'
|
||||||
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode=='cache', dont_wait=dont_wait)
|
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode=='cache', dont_wait=dont_wait)
|
||||||
|
|
||||||
@@ -730,14 +736,17 @@ class UnifiedManager:
|
|||||||
|
|
||||||
json_obj = await get_data_by_mode(mode, 'custom-node-list.json', channel_url=channel_url)
|
json_obj = await get_data_by_mode(mode, 'custom-node-list.json', channel_url=channel_url)
|
||||||
for x in json_obj['custom_nodes']:
|
for x in json_obj['custom_nodes']:
|
||||||
for y in x['files']:
|
try:
|
||||||
if 'github.com' in y and not (y.endswith('.py') or y.endswith('.js')):
|
for y in x['files']:
|
||||||
repo_name = y.split('/')[-1]
|
if 'github.com' in y and not (y.endswith('.py') or y.endswith('.js')):
|
||||||
res[repo_name] = (x, False)
|
repo_name = y.split('/')[-1]
|
||||||
|
res[repo_name] = (x, False)
|
||||||
|
|
||||||
if 'id' in x:
|
if 'id' in x:
|
||||||
if x['id'] not in res:
|
if x['id'] not in res:
|
||||||
res[x['id']] = (x, True)
|
res[x['id']] = (x, True)
|
||||||
|
except:
|
||||||
|
logging.error(f"[ComfyUI-Manager] broken item:{x}")
|
||||||
|
|
||||||
return res
|
return res
|
||||||
|
|
||||||
@@ -808,7 +817,7 @@ class UnifiedManager:
|
|||||||
package_name = remap_pip_package(line.strip())
|
package_name = remap_pip_package(line.strip())
|
||||||
if package_name and not package_name.startswith('#') and package_name not in self.processed_install:
|
if package_name and not package_name.startswith('#') and package_name not in self.processed_install:
|
||||||
self.processed_install.add(package_name)
|
self.processed_install.add(package_name)
|
||||||
install_cmd = [sys.executable, "-m", "pip", "install", package_name]
|
install_cmd = manager_util.make_pip_cmd(["install", package_name])
|
||||||
if package_name.strip() != "" and not package_name.startswith('#'):
|
if package_name.strip() != "" and not package_name.startswith('#'):
|
||||||
res = res and try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution)
|
res = res and try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution)
|
||||||
|
|
||||||
@@ -1542,20 +1551,23 @@ manager_funcs = ManagerFuncs()
|
|||||||
|
|
||||||
def write_config():
|
def write_config():
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
|
|
||||||
config['default'] = {
|
config['default'] = {
|
||||||
'preview_method': manager_funcs.get_current_preview_method(),
|
'preview_method': manager_funcs.get_current_preview_method(),
|
||||||
'git_exe': get_config()['git_exe'],
|
'git_exe': get_config()['git_exe'],
|
||||||
|
'use_uv': get_config()['use_uv'],
|
||||||
'channel_url': get_config()['channel_url'],
|
'channel_url': get_config()['channel_url'],
|
||||||
'share_option': get_config()['share_option'],
|
'share_option': get_config()['share_option'],
|
||||||
'bypass_ssl': get_config()['bypass_ssl'],
|
'bypass_ssl': get_config()['bypass_ssl'],
|
||||||
"file_logging": get_config()['file_logging'],
|
"file_logging": get_config()['file_logging'],
|
||||||
'default_ui': get_config()['default_ui'],
|
|
||||||
'component_policy': get_config()['component_policy'],
|
'component_policy': get_config()['component_policy'],
|
||||||
'windows_selector_event_loop_policy': get_config()['windows_selector_event_loop_policy'],
|
'windows_selector_event_loop_policy': get_config()['windows_selector_event_loop_policy'],
|
||||||
'model_download_by_agent': get_config()['model_download_by_agent'],
|
'model_download_by_agent': get_config()['model_download_by_agent'],
|
||||||
'downgrade_blacklist': get_config()['downgrade_blacklist'],
|
'downgrade_blacklist': get_config()['downgrade_blacklist'],
|
||||||
'security_level': get_config()['security_level'],
|
'security_level': get_config()['security_level'],
|
||||||
'skip_migration_check': get_config()['skip_migration_check'],
|
'skip_migration_check': get_config()['skip_migration_check'],
|
||||||
|
'always_lazy_install': get_config()['always_lazy_install'],
|
||||||
|
'network_mode': get_config()['network_mode']
|
||||||
}
|
}
|
||||||
|
|
||||||
directory = os.path.dirname(manager_config_path)
|
directory = os.path.dirname(manager_config_path)
|
||||||
@@ -1581,37 +1593,52 @@ def read_config():
|
|||||||
else:
|
else:
|
||||||
security_level = default_conf['security_level'] if 'security_level' in default_conf else 'normal'
|
security_level = default_conf['security_level'] if 'security_level' in default_conf else 'normal'
|
||||||
|
|
||||||
|
manager_util.use_uv = default_conf['use_uv'].lower() == 'true' if 'use_uv' in default_conf else False
|
||||||
|
|
||||||
|
def get_bool(key, default_value):
|
||||||
|
return default_conf[key].lower() == 'true' if key in default_conf else False
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'preview_method': default_conf['preview_method'] if 'preview_method' in default_conf else manager_funcs.get_current_preview_method(),
|
'http_channel_enabled': get_bool('http_channel_enabled', False),
|
||||||
'git_exe': default_conf['git_exe'] if 'git_exe' in default_conf else '',
|
'preview_method': default_conf.get('preview_method', manager_funcs.get_current_preview_method()),
|
||||||
'channel_url': default_conf['channel_url'] if 'channel_url' in default_conf else DEFAULT_CHANNEL,
|
'git_exe': default_conf.get('git_exe', ''),
|
||||||
'share_option': default_conf['share_option'] if 'share_option' in default_conf else 'all',
|
'use_uv': get_bool('use_uv', False),
|
||||||
'bypass_ssl': default_conf['bypass_ssl'].lower() == 'true' if 'bypass_ssl' in default_conf else False,
|
'channel_url': default_conf.get('channel_url', DEFAULT_CHANNEL),
|
||||||
'file_logging': default_conf['file_logging'].lower() == 'true' if 'file_logging' in default_conf else True,
|
'default_cache_as_channel_url': get_bool('default_cache_as_channel_url', False),
|
||||||
'default_ui': default_conf['default_ui'] if 'default_ui' in default_conf else 'none',
|
'share_option': default_conf.get('share_option', 'all'),
|
||||||
'component_policy': default_conf['component_policy'] if 'component_policy' in default_conf else 'workflow',
|
'bypass_ssl': get_bool('bypass_ssl', False),
|
||||||
'windows_selector_event_loop_policy': default_conf['windows_selector_event_loop_policy'].lower() == 'true' if 'windows_selector_event_loop_policy' in default_conf else False,
|
'file_logging': get_bool('file_logging', True),
|
||||||
'model_download_by_agent': default_conf['model_download_by_agent'].lower() == 'true' if 'model_download_by_agent' in default_conf else False,
|
'component_policy': default_conf.get('component_policy', 'workflow'),
|
||||||
'downgrade_blacklist': default_conf['downgrade_blacklist'] if 'downgrade_blacklist' in default_conf else '',
|
'windows_selector_event_loop_policy': get_bool('windows_selector_event_loop_policy', False),
|
||||||
'skip_migration_check': default_conf['skip_migration_check'].lower() == 'true' if 'skip_migration_check' in default_conf else False,
|
'model_download_by_agent': get_bool('model_download_by_agent', False),
|
||||||
'security_level': security_level
|
'downgrade_blacklist': default_conf.get('downgrade_blacklist', ''),
|
||||||
|
'skip_migration_check': get_bool('skip_migration_check', False),
|
||||||
|
'always_lazy_install': get_bool('always_lazy_install', False),
|
||||||
|
'network_mode': default_conf.get('network_mode', 'public'),
|
||||||
|
'security_level': security_level,
|
||||||
}
|
}
|
||||||
|
|
||||||
except Exception:
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
manager_util.use_uv = False
|
||||||
return {
|
return {
|
||||||
|
'http_channel_enabled': False,
|
||||||
'preview_method': manager_funcs.get_current_preview_method(),
|
'preview_method': manager_funcs.get_current_preview_method(),
|
||||||
'git_exe': '',
|
'git_exe': '',
|
||||||
|
'use_uv': False,
|
||||||
'channel_url': DEFAULT_CHANNEL,
|
'channel_url': DEFAULT_CHANNEL,
|
||||||
|
'default_cache_as_channel_url': False,
|
||||||
'share_option': 'all',
|
'share_option': 'all',
|
||||||
'bypass_ssl': False,
|
'bypass_ssl': False,
|
||||||
'file_logging': True,
|
'file_logging': True,
|
||||||
'default_ui': 'none',
|
|
||||||
'component_policy': 'workflow',
|
'component_policy': 'workflow',
|
||||||
'windows_selector_event_loop_policy': False,
|
'windows_selector_event_loop_policy': False,
|
||||||
'model_download_by_agent': False,
|
'model_download_by_agent': False,
|
||||||
'downgrade_blacklist': '',
|
'downgrade_blacklist': '',
|
||||||
'skip_migration_check': False,
|
'skip_migration_check': False,
|
||||||
'security_level': 'normal',
|
'always_lazy_install': False,
|
||||||
|
'network_mode': 'public', # public | private | offline
|
||||||
|
'security_level': 'normal', # strong | normal | normal- | weak
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -1620,6 +1647,8 @@ def get_config():
|
|||||||
|
|
||||||
if cached_config is None:
|
if cached_config is None:
|
||||||
cached_config = read_config()
|
cached_config = read_config()
|
||||||
|
if cached_config['http_channel_enabled']:
|
||||||
|
print("[ComfyUI-Manager] Warning: http channel enabled, make sure server in secure env")
|
||||||
|
|
||||||
return cached_config
|
return cached_config
|
||||||
|
|
||||||
@@ -1668,7 +1697,9 @@ def switch_to_default_branch(repo):
|
|||||||
|
|
||||||
|
|
||||||
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
||||||
if not instant_execution and ((len(install_cmd) > 0 and install_cmd[0].startswith('#')) or (platform.system() == "Windows" and comfy_ui_commit_datetime.date() >= comfy_ui_required_commit_datetime.date())):
|
if not instant_execution and (
|
||||||
|
(len(install_cmd) > 0 and install_cmd[0].startswith('#')) or platform.system() == "Windows" or get_config()['always_lazy_install']
|
||||||
|
):
|
||||||
if not os.path.exists(manager_startup_script_path):
|
if not os.path.exists(manager_startup_script_path):
|
||||||
os.makedirs(manager_startup_script_path)
|
os.makedirs(manager_startup_script_path)
|
||||||
|
|
||||||
@@ -1683,6 +1714,10 @@ def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
|||||||
if is_blacklisted(install_cmd[4]):
|
if is_blacklisted(install_cmd[4]):
|
||||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{install_cmd[4]}'")
|
print(f"[ComfyUI-Manager] skip black listed pip installation: '{install_cmd[4]}'")
|
||||||
return True
|
return True
|
||||||
|
elif len(install_cmd) == 6 and install_cmd[3:5] == ['pip', 'install']: # uv mode
|
||||||
|
if is_blacklisted(install_cmd[5]):
|
||||||
|
print(f"[ComfyUI-Manager] skip black listed pip installation: '{install_cmd[5]}'")
|
||||||
|
return True
|
||||||
|
|
||||||
print(f"\n## ComfyUI-Manager: EXECUTE => {install_cmd}")
|
print(f"\n## ComfyUI-Manager: EXECUTE => {install_cmd}")
|
||||||
code = manager_funcs.run_script(install_cmd, cwd=repo_path)
|
code = manager_funcs.run_script(install_cmd, cwd=repo_path)
|
||||||
@@ -1799,9 +1834,9 @@ def execute_install_script(url, repo_path, lazy_mode=False, instant_execution=Fa
|
|||||||
if package_name and not package_name.startswith('#'):
|
if package_name and not package_name.startswith('#'):
|
||||||
if '--index-url' in package_name:
|
if '--index-url' in package_name:
|
||||||
s = package_name.split('--index-url')
|
s = package_name.split('--index-url')
|
||||||
install_cmd = [sys.executable, "-m", "pip", "install", s[0].strip(), '--index-url', s[1].strip()]
|
install_cmd = manager_util.make_pip_cmd(["install", s[0].strip(), '--index-url', s[1].strip()])
|
||||||
else:
|
else:
|
||||||
install_cmd = [sys.executable, "-m", "pip", "install", package_name]
|
install_cmd = manager_util.make_pip_cmd(["install", package_name])
|
||||||
|
|
||||||
if package_name.strip() != "" and not package_name.startswith('#'):
|
if package_name.strip() != "" and not package_name.startswith('#'):
|
||||||
try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution)
|
try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution)
|
||||||
@@ -2061,9 +2096,10 @@ async def get_data_by_mode(mode, filename, channel_url=None):
|
|||||||
channel_url = get_channel_dict()[channel_url]
|
channel_url = get_channel_dict()[channel_url]
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
local_uri = os.path.join(manager_util.comfyui_manager_path, filename)
|
||||||
|
|
||||||
if mode == "local":
|
if mode == "local":
|
||||||
uri = os.path.join(manager_util.comfyui_manager_path, filename)
|
json_obj = await manager_util.get_data(local_uri)
|
||||||
json_obj = await manager_util.get_data(uri)
|
|
||||||
else:
|
else:
|
||||||
if channel_url is None:
|
if channel_url is None:
|
||||||
uri = get_config()['channel_url'] + '/' + filename
|
uri = get_config()['channel_url'] + '/' + filename
|
||||||
@@ -2073,19 +2109,25 @@ async def get_data_by_mode(mode, filename, channel_url=None):
|
|||||||
cache_uri = str(manager_util.simple_hash(uri))+'_'+filename
|
cache_uri = str(manager_util.simple_hash(uri))+'_'+filename
|
||||||
cache_uri = os.path.join(manager_util.cache_dir, cache_uri)
|
cache_uri = os.path.join(manager_util.cache_dir, cache_uri)
|
||||||
|
|
||||||
if mode == "cache":
|
if get_config()['network_mode'] == 'offline':
|
||||||
if manager_util.is_file_created_within_one_day(cache_uri):
|
# offline network mode
|
||||||
|
if os.path.exists(cache_uri):
|
||||||
|
json_obj = await manager_util.get_data(cache_uri)
|
||||||
|
else:
|
||||||
|
local_uri = os.path.join(manager_util.comfyui_manager_path, filename)
|
||||||
|
if os.path.exists(local_uri):
|
||||||
|
json_obj = await manager_util.get_data(local_uri)
|
||||||
|
else:
|
||||||
|
json_obj = {} # fallback
|
||||||
|
else:
|
||||||
|
# public network mode
|
||||||
|
if mode == "cache" and manager_util.is_file_created_within_one_day(cache_uri):
|
||||||
json_obj = await manager_util.get_data(cache_uri)
|
json_obj = await manager_util.get_data(cache_uri)
|
||||||
else:
|
else:
|
||||||
json_obj = await manager_util.get_data(uri)
|
json_obj = await manager_util.get_data(uri)
|
||||||
with manager_util.cache_lock:
|
with manager_util.cache_lock:
|
||||||
with open(cache_uri, "w", encoding='utf-8') as file:
|
with open(cache_uri, "w", encoding='utf-8') as file:
|
||||||
json.dump(json_obj, file, indent=4, sort_keys=True)
|
json.dump(json_obj, file, indent=4, sort_keys=True)
|
||||||
else:
|
|
||||||
json_obj = await manager_util.get_data(uri)
|
|
||||||
with manager_util.cache_lock:
|
|
||||||
with open(cache_uri, "w", encoding='utf-8') as file:
|
|
||||||
json.dump(json_obj, file, indent=4, sort_keys=True)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"[ComfyUI-Manager] Due to a network error, switching to local mode.\n=> {filename}\n=> {e}")
|
print(f"[ComfyUI-Manager] Due to a network error, switching to local mode.\n=> {filename}\n=> {e}")
|
||||||
uri = os.path.join(manager_util.comfyui_manager_path, filename)
|
uri = os.path.join(manager_util.comfyui_manager_path, filename)
|
||||||
@@ -2122,7 +2164,7 @@ def gitclone_fix(files, instant_execution=False, no_deps=False):
|
|||||||
|
|
||||||
|
|
||||||
def pip_install(packages):
|
def pip_install(packages):
|
||||||
install_cmd = ['#FORCE', sys.executable, "-m", "pip", "install", '-U'] + packages
|
install_cmd = ['#FORCE'] + manager_util.make_pip_cmd(["install", '-U']) + packages
|
||||||
try_install_script('pip install via manager', '..', install_cmd)
|
try_install_script('pip install via manager', '..', install_cmd)
|
||||||
|
|
||||||
|
|
||||||
@@ -2419,7 +2461,8 @@ def check_state_of_git_node_pack_single(item, do_fetch=False, do_update_check=Tr
|
|||||||
|
|
||||||
def get_installed_pip_packages():
|
def get_installed_pip_packages():
|
||||||
# extract pip package infos
|
# extract pip package infos
|
||||||
pips = subprocess.check_output([sys.executable, '-m', 'pip', 'freeze'], text=True).split('\n')
|
cmd = manager_util.make_pip_cmd(['freeze'])
|
||||||
|
pips = subprocess.check_output(cmd, text=True).split('\n')
|
||||||
|
|
||||||
res = {}
|
res = {}
|
||||||
for x in pips:
|
for x in pips:
|
||||||
@@ -2835,15 +2878,18 @@ async def get_unified_total_nodes(channel, mode, regsitry_cache_mode='cache'):
|
|||||||
|
|
||||||
def populate_github_stats(node_packs, json_obj_github):
|
def populate_github_stats(node_packs, json_obj_github):
|
||||||
for k, v in node_packs.items():
|
for k, v in node_packs.items():
|
||||||
url = v['reference']
|
try:
|
||||||
if url in json_obj_github:
|
url = v['reference']
|
||||||
v['stars'] = json_obj_github[url]['stars']
|
if url in json_obj_github:
|
||||||
v['last_update'] = json_obj_github[url]['last_update']
|
v['stars'] = json_obj_github[url]['stars']
|
||||||
v['trust'] = json_obj_github[url]['author_account_age_days'] > 600
|
v['last_update'] = json_obj_github[url]['last_update']
|
||||||
else:
|
v['trust'] = json_obj_github[url]['author_account_age_days'] > 600
|
||||||
v['stars'] = -1
|
else:
|
||||||
v['last_update'] = -1
|
v['stars'] = -1
|
||||||
v['trust'] = False
|
v['last_update'] = -1
|
||||||
|
v['trust'] = False
|
||||||
|
except:
|
||||||
|
logging.error(f"[ComfyUI-Manager] DB item is broken:\n{v}")
|
||||||
|
|
||||||
|
|
||||||
def populate_favorites(node_packs, json_obj_extras):
|
def populate_favorites(node_packs, json_obj_extras):
|
||||||
|
|||||||
@@ -3,6 +3,11 @@ from urllib.parse import urlparse
|
|||||||
import urllib
|
import urllib
|
||||||
import sys
|
import sys
|
||||||
import logging
|
import logging
|
||||||
|
import requests
|
||||||
|
from huggingface_hub import HfApi
|
||||||
|
from tqdm.auto import tqdm
|
||||||
|
|
||||||
|
|
||||||
aria2 = os.getenv('COMFYUI_MANAGER_ARIA2_SERVER')
|
aria2 = os.getenv('COMFYUI_MANAGER_ARIA2_SERVER')
|
||||||
HF_ENDPOINT = os.getenv('HF_ENDPOINT')
|
HF_ENDPOINT = os.getenv('HF_ENDPOINT')
|
||||||
|
|
||||||
@@ -117,3 +122,37 @@ def download_url_with_agent(url, save_path):
|
|||||||
|
|
||||||
print("Installation was successful.")
|
print("Installation was successful.")
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
# NOTE: snapshot_download doesn't provide file size tqdm.
|
||||||
|
def download_repo_in_bytes(repo_id, local_dir):
|
||||||
|
api = HfApi()
|
||||||
|
repo_info = api.repo_info(repo_id=repo_id, files_metadata=True)
|
||||||
|
|
||||||
|
os.makedirs(local_dir, exist_ok=True)
|
||||||
|
|
||||||
|
total_size = 0
|
||||||
|
for file_info in repo_info.siblings:
|
||||||
|
if file_info.size is not None:
|
||||||
|
total_size += file_info.size
|
||||||
|
|
||||||
|
pbar = tqdm(total=total_size, unit="B", unit_scale=True, desc="Downloading")
|
||||||
|
|
||||||
|
for file_info in repo_info.siblings:
|
||||||
|
out_path = os.path.join(local_dir, file_info.rfilename)
|
||||||
|
os.makedirs(os.path.dirname(out_path), exist_ok=True)
|
||||||
|
|
||||||
|
if file_info.size is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
download_url = f"https://huggingface.co/{repo_id}/resolve/main/{file_info.rfilename}"
|
||||||
|
|
||||||
|
with requests.get(download_url, stream=True) as r, open(out_path, "wb") as f:
|
||||||
|
r.raise_for_status()
|
||||||
|
for chunk in r.iter_content(chunk_size=65536):
|
||||||
|
if chunk:
|
||||||
|
f.write(chunk)
|
||||||
|
pbar.update(len(chunk))
|
||||||
|
|
||||||
|
pbar.close()
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -18,9 +18,14 @@ import manager_core as core
|
|||||||
import manager_util
|
import manager_util
|
||||||
import cm_global
|
import cm_global
|
||||||
import logging
|
import logging
|
||||||
|
import asyncio
|
||||||
|
import queue
|
||||||
|
|
||||||
|
import manager_downloader
|
||||||
|
|
||||||
|
|
||||||
logging.info(f"### Loading: ComfyUI-Manager ({core.version_str})")
|
logging.info(f"### Loading: ComfyUI-Manager ({core.version_str})")
|
||||||
|
logging.info("[ComfyUI-Manager] network_mode: " + core.get_config()['network_mode'])
|
||||||
|
|
||||||
comfy_ui_hash = "-"
|
comfy_ui_hash = "-"
|
||||||
comfyui_tag = None
|
comfyui_tag = None
|
||||||
@@ -28,10 +33,10 @@ comfyui_tag = None
|
|||||||
SECURITY_MESSAGE_MIDDLE_OR_BELOW = "ERROR: To use this action, a security_level of `middle or below` is required. Please contact the administrator.\nReference: https://github.com/ltdrdata/ComfyUI-Manager#security-policy"
|
SECURITY_MESSAGE_MIDDLE_OR_BELOW = "ERROR: To use this action, a security_level of `middle or below` is required. Please contact the administrator.\nReference: https://github.com/ltdrdata/ComfyUI-Manager#security-policy"
|
||||||
SECURITY_MESSAGE_NORMAL_MINUS = "ERROR: To use this feature, you must either set '--listen' to a local IP and set the security level to 'normal-' or lower, or set the security level to 'middle' or 'weak'. Please contact the administrator.\nReference: https://github.com/ltdrdata/ComfyUI-Manager#security-policy"
|
SECURITY_MESSAGE_NORMAL_MINUS = "ERROR: To use this feature, you must either set '--listen' to a local IP and set the security level to 'normal-' or lower, or set the security level to 'middle' or 'weak'. Please contact the administrator.\nReference: https://github.com/ltdrdata/ComfyUI-Manager#security-policy"
|
||||||
SECURITY_MESSAGE_GENERAL = "ERROR: This installation is not allowed in this security_level. Please contact the administrator.\nReference: https://github.com/ltdrdata/ComfyUI-Manager#security-policy"
|
SECURITY_MESSAGE_GENERAL = "ERROR: This installation is not allowed in this security_level. Please contact the administrator.\nReference: https://github.com/ltdrdata/ComfyUI-Manager#security-policy"
|
||||||
|
SECURITY_MESSAGE_NORMAL_MINUS_MODEL = "ERROR: Downloading models that are not in '.safetensors' format is only allowed for models registered in the 'default' channel at this security level. If you want to download this model, set the security level to 'normal-' or lower."
|
||||||
|
|
||||||
routes = PromptServer.instance.routes
|
routes = PromptServer.instance.routes
|
||||||
|
|
||||||
|
|
||||||
def handle_stream(stream, prefix):
|
def handle_stream(stream, prefix):
|
||||||
stream.reconfigure(encoding=locale.getpreferredencoding(), errors='replace')
|
stream.reconfigure(encoding=locale.getpreferredencoding(), errors='replace')
|
||||||
for msg in stream:
|
for msg in stream:
|
||||||
@@ -54,6 +59,27 @@ import latent_preview
|
|||||||
is_local_mode = args.listen.startswith('127.') or args.listen.startswith('local.')
|
is_local_mode = args.listen.startswith('127.') or args.listen.startswith('local.')
|
||||||
|
|
||||||
|
|
||||||
|
model_dir_name_map = {
|
||||||
|
"checkpoints": "checkpoints",
|
||||||
|
"checkpoint": "checkpoints",
|
||||||
|
"unclip": "checkpoints",
|
||||||
|
"text_encoders": "text_encoders",
|
||||||
|
"clip": "text_encoders",
|
||||||
|
"vae": "vae",
|
||||||
|
"lora": "loras",
|
||||||
|
"t2i-adapter": "controlnet",
|
||||||
|
"t2i-style": "controlnet",
|
||||||
|
"controlnet": "controlnet",
|
||||||
|
"clip_vision": "clip_vision",
|
||||||
|
"gligen": "gligen",
|
||||||
|
"upscale": "upscale_models",
|
||||||
|
"embedding": "embeddings",
|
||||||
|
"embeddings": "embeddings",
|
||||||
|
"unet": "diffusion_models",
|
||||||
|
"diffusion_model": "diffusion_models",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
def is_allowed_security_level(level):
|
def is_allowed_security_level(level):
|
||||||
if level == 'block':
|
if level == 'block':
|
||||||
return False
|
return False
|
||||||
@@ -74,7 +100,7 @@ async def get_risky_level(files, pip_packages):
|
|||||||
|
|
||||||
all_urls = set()
|
all_urls = set()
|
||||||
for x in json_data1['custom_nodes'] + json_data2['custom_nodes']:
|
for x in json_data1['custom_nodes'] + json_data2['custom_nodes']:
|
||||||
all_urls.update(x['files'])
|
all_urls.update(x.get('files', []))
|
||||||
|
|
||||||
for x in files:
|
for x in files:
|
||||||
if x not in all_urls:
|
if x not in all_urls:
|
||||||
@@ -82,8 +108,7 @@ async def get_risky_level(files, pip_packages):
|
|||||||
|
|
||||||
all_pip_packages = set()
|
all_pip_packages = set()
|
||||||
for x in json_data1['custom_nodes'] + json_data2['custom_nodes']:
|
for x in json_data1['custom_nodes'] + json_data2['custom_nodes']:
|
||||||
if "pip" in x:
|
all_pip_packages.update(x.get('pip', []))
|
||||||
all_pip_packages.update(x['pip'])
|
|
||||||
|
|
||||||
for p in pip_packages:
|
for p in pip_packages:
|
||||||
if p not in all_pip_packages:
|
if p not in all_pip_packages:
|
||||||
@@ -147,16 +172,12 @@ def set_preview_method(method):
|
|||||||
else:
|
else:
|
||||||
args.preview_method = latent_preview.LatentPreviewMethod.NoPreviews
|
args.preview_method = latent_preview.LatentPreviewMethod.NoPreviews
|
||||||
|
|
||||||
core.get_config()['preview_method'] = args.preview_method
|
core.get_config()['preview_method'] = method
|
||||||
|
|
||||||
|
|
||||||
set_preview_method(core.get_config()['preview_method'])
|
set_preview_method(core.get_config()['preview_method'])
|
||||||
|
|
||||||
|
|
||||||
def set_default_ui_mode(mode):
|
|
||||||
core.get_config()['default_ui'] = mode
|
|
||||||
|
|
||||||
|
|
||||||
def set_component_policy(mode):
|
def set_component_policy(mode):
|
||||||
core.get_config()['component_policy'] = mode
|
core.get_config()['component_policy'] = mode
|
||||||
|
|
||||||
@@ -274,43 +295,9 @@ def get_model_dir(data, show_log=False):
|
|||||||
else:
|
else:
|
||||||
base_model = os.path.join(models_base, data['save_path'])
|
base_model = os.path.join(models_base, data['save_path'])
|
||||||
else:
|
else:
|
||||||
model_type = data['type']
|
model_dir_name = model_dir_name_map.get(data['type'].lower())
|
||||||
if model_type == "checkpoints" or model_type == "checkpoint":
|
if model_dir_name is not None:
|
||||||
base_model = folder_paths.folder_names_and_paths["checkpoints"][0][0]
|
base_model = folder_paths.folder_names_and_paths[model_dir_name][0][0]
|
||||||
elif model_type == "unclip":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["checkpoints"][0][0]
|
|
||||||
elif model_type == "clip" or model_type == "text_encoders":
|
|
||||||
if folder_paths.folder_names_and_paths.get("text_encoders"):
|
|
||||||
base_model = folder_paths.folder_names_and_paths["text_encoders"][0][0]
|
|
||||||
else:
|
|
||||||
if show_log:
|
|
||||||
logging.info("[ComfyUI-Manager] Your ComfyUI is outdated version.")
|
|
||||||
base_model = folder_paths.folder_names_and_paths["clip"][0][0] # outdated version
|
|
||||||
elif model_type == "VAE":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["vae"][0][0]
|
|
||||||
elif model_type == "lora":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["loras"][0][0]
|
|
||||||
elif model_type == "T2I-Adapter":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["controlnet"][0][0]
|
|
||||||
elif model_type == "T2I-Style":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["controlnet"][0][0]
|
|
||||||
elif model_type == "controlnet":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["controlnet"][0][0]
|
|
||||||
elif model_type == "clip_vision":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["clip_vision"][0][0]
|
|
||||||
elif model_type == "gligen":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["gligen"][0][0]
|
|
||||||
elif model_type == "upscale":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["upscale_models"][0][0]
|
|
||||||
elif model_type == "embeddings":
|
|
||||||
base_model = folder_paths.folder_names_and_paths["embeddings"][0][0]
|
|
||||||
elif model_type == "unet" or model_type == "diffusion_model":
|
|
||||||
if folder_paths.folder_names_and_paths.get("diffusion_models"):
|
|
||||||
base_model = folder_paths.folder_names_and_paths["diffusion_models"][0][1]
|
|
||||||
else:
|
|
||||||
if show_log:
|
|
||||||
logging.info("[ComfyUI-Manager] Your ComfyUI is outdated version.")
|
|
||||||
base_model = folder_paths.folder_names_and_paths["unet"][0][0] # outdated version
|
|
||||||
else:
|
else:
|
||||||
base_model = os.path.join(models_base, "etc")
|
base_model = os.path.join(models_base, "etc")
|
||||||
|
|
||||||
@@ -322,7 +309,10 @@ def get_model_path(data, show_log=False):
|
|||||||
if base_model is None:
|
if base_model is None:
|
||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
return os.path.join(base_model, data['filename'])
|
if data['filename'] == '<huggingface>':
|
||||||
|
return os.path.join(base_model, os.path.basename(data['url']))
|
||||||
|
else:
|
||||||
|
return os.path.join(base_model, data['filename'])
|
||||||
|
|
||||||
|
|
||||||
def check_state_of_git_node_pack(node_packs, do_fetch=False, do_update_check=True, do_update=False):
|
def check_state_of_git_node_pack(node_packs, do_fetch=False, do_update_check=True, do_update=False):
|
||||||
@@ -381,6 +371,215 @@ def nickname_filter(json_obj):
|
|||||||
return json_obj
|
return json_obj
|
||||||
|
|
||||||
|
|
||||||
|
task_queue = queue.Queue()
|
||||||
|
nodepack_result = {}
|
||||||
|
model_result = {}
|
||||||
|
tasks_in_progress = set()
|
||||||
|
task_worker_lock = threading.Lock()
|
||||||
|
|
||||||
|
async def task_worker():
|
||||||
|
global task_queue
|
||||||
|
global nodepack_result
|
||||||
|
global model_result
|
||||||
|
global tasks_in_progress
|
||||||
|
|
||||||
|
async def do_install(item) -> str:
|
||||||
|
ui_id, node_spec_str, channel, mode, skip_post_install = item
|
||||||
|
|
||||||
|
try:
|
||||||
|
node_spec = core.unified_manager.resolve_node_spec(node_spec_str)
|
||||||
|
|
||||||
|
if node_spec is None:
|
||||||
|
logging.error(f"Cannot resolve install target: '{node_spec_str}'")
|
||||||
|
return f"Cannot resolve install target: '{node_spec_str}'"
|
||||||
|
|
||||||
|
node_name, version_spec, is_specified = node_spec
|
||||||
|
res = await core.unified_manager.install_by_id(node_name, version_spec, channel, mode, return_postinstall=skip_post_install)
|
||||||
|
# discard post install if skip_post_install mode
|
||||||
|
|
||||||
|
if res.action not in ['skip', 'enable', 'install-git', 'install-cnr', 'switch-cnr']:
|
||||||
|
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
||||||
|
return res.msg
|
||||||
|
|
||||||
|
elif not res.result:
|
||||||
|
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
||||||
|
return res.msg
|
||||||
|
|
||||||
|
return 'success'
|
||||||
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
return f"Installation failed:\n{node_spec_str}"
|
||||||
|
|
||||||
|
async def do_update(item) -> str:
|
||||||
|
ui_id, node_name, node_ver = item
|
||||||
|
|
||||||
|
try:
|
||||||
|
res = core.unified_manager.unified_update(node_name, node_ver)
|
||||||
|
|
||||||
|
manager_util.clear_pip_cache()
|
||||||
|
|
||||||
|
if res.result:
|
||||||
|
return 'success'
|
||||||
|
|
||||||
|
logging.error(f"\nERROR: An error occurred while updating '{node_name}'.")
|
||||||
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
return f"An error occurred while updating '{node_name}'."
|
||||||
|
|
||||||
|
async def do_fix(item) -> str:
|
||||||
|
ui_id, node_name, node_ver = item
|
||||||
|
|
||||||
|
try:
|
||||||
|
res = core.unified_manager.unified_fix(node_name, node_ver)
|
||||||
|
|
||||||
|
if res.result:
|
||||||
|
return 'success'
|
||||||
|
else:
|
||||||
|
logging.error(res.msg)
|
||||||
|
|
||||||
|
logging.error(f"\nERROR: An error occurred while fixing '{node_name}@{node_ver}'.")
|
||||||
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
return f"An error occurred while fixing '{node_name}@{node_ver}'."
|
||||||
|
|
||||||
|
async def do_uninstall(item) -> str:
|
||||||
|
ui_id, node_name, is_unknown = item
|
||||||
|
|
||||||
|
try:
|
||||||
|
res = core.unified_manager.unified_uninstall(node_name, is_unknown)
|
||||||
|
|
||||||
|
if res.result:
|
||||||
|
return 'success'
|
||||||
|
|
||||||
|
logging.error(f"\nERROR: An error occurred while uninstalling '{node_name}'.")
|
||||||
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
return f"An error occurred while uninstalling '{node_name}'."
|
||||||
|
|
||||||
|
async def do_disable(item) -> str:
|
||||||
|
ui_id, node_name, is_unknown = item
|
||||||
|
|
||||||
|
try:
|
||||||
|
res = core.unified_manager.unified_disable(node_name, is_unknown)
|
||||||
|
|
||||||
|
if res:
|
||||||
|
return 'success'
|
||||||
|
|
||||||
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
return f"Failed to disable: '{node_name}'"
|
||||||
|
|
||||||
|
async def do_install_model(item) -> str:
|
||||||
|
ui_id, json_data = item
|
||||||
|
|
||||||
|
model_path = get_model_path(json_data)
|
||||||
|
model_url = json_data['url']
|
||||||
|
|
||||||
|
res = False
|
||||||
|
|
||||||
|
try:
|
||||||
|
if model_path is not None:
|
||||||
|
logging.info(f"Install model '{json_data['name']}' from '{model_url}' into '{model_path}'")
|
||||||
|
|
||||||
|
if json_data['filename'] == '<huggingface>':
|
||||||
|
if os.path.exists(os.path.join(model_path, os.path.dirname(json_data['url']))):
|
||||||
|
logging.error(f"[ComfyUI-Manager] the model path already exists: {model_path}")
|
||||||
|
return f"The model path already exists: {model_path}"
|
||||||
|
|
||||||
|
logging.info(f"[ComfyUI-Manager] Downloading '{model_url}' into '{model_path}'")
|
||||||
|
manager_downloader.download_repo_in_bytes(repo_id=model_url, local_dir=model_path)
|
||||||
|
|
||||||
|
return 'success'
|
||||||
|
|
||||||
|
elif not core.get_config()['model_download_by_agent'] and (
|
||||||
|
model_url.startswith('https://github.com') or model_url.startswith('https://huggingface.co') or model_url.startswith('https://heibox.uni-heidelberg.de')):
|
||||||
|
model_dir = get_model_dir(json_data, True)
|
||||||
|
download_url(model_url, model_dir, filename=json_data['filename'])
|
||||||
|
if model_path.endswith('.zip'):
|
||||||
|
res = core.unzip(model_path)
|
||||||
|
else:
|
||||||
|
res = True
|
||||||
|
|
||||||
|
if res:
|
||||||
|
return 'success'
|
||||||
|
else:
|
||||||
|
res = download_url_with_agent(model_url, model_path)
|
||||||
|
if res and model_path.endswith('.zip'):
|
||||||
|
res = core.unzip(model_path)
|
||||||
|
else:
|
||||||
|
logging.error(f"[ComfyUI-Manager] Model installation error: invalid model type - {json_data['type']}")
|
||||||
|
|
||||||
|
if res:
|
||||||
|
return 'success'
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
logging.error(f"[ComfyUI-Manager] ERROR: {e}", file=sys.stderr)
|
||||||
|
|
||||||
|
return f"Model installation error: {model_url}"
|
||||||
|
|
||||||
|
stats = {}
|
||||||
|
|
||||||
|
while True:
|
||||||
|
done_count = len(nodepack_result) + len(model_result)
|
||||||
|
total_count = done_count + task_queue.qsize()
|
||||||
|
|
||||||
|
if task_queue.empty():
|
||||||
|
logging.info(f"\n[ComfyUI-Manager] Queued works are completed.\n{stats}")
|
||||||
|
|
||||||
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
|
PromptServer.instance.send_sync("cm-queue-status",
|
||||||
|
{'status': 'done',
|
||||||
|
'nodepack_result': nodepack_result, 'model_result': model_result,
|
||||||
|
'total_count': total_count, 'done_count': done_count})
|
||||||
|
nodepack_result = {}
|
||||||
|
task_queue = queue.Queue()
|
||||||
|
return # terminate worker thread
|
||||||
|
|
||||||
|
with task_worker_lock:
|
||||||
|
kind, item = task_queue.get()
|
||||||
|
tasks_in_progress.add((kind, item[0]))
|
||||||
|
|
||||||
|
try:
|
||||||
|
if kind == 'install':
|
||||||
|
msg = await do_install(item)
|
||||||
|
elif kind == 'install-model':
|
||||||
|
msg = await do_install_model(item)
|
||||||
|
elif kind == 'update':
|
||||||
|
msg = await do_update(item)
|
||||||
|
elif kind == 'fix':
|
||||||
|
msg = await do_fix(item)
|
||||||
|
elif kind == 'uninstall':
|
||||||
|
msg = await do_uninstall(item)
|
||||||
|
elif kind == 'disable':
|
||||||
|
msg = await do_disable(item)
|
||||||
|
else:
|
||||||
|
msg = "Unexpected kind: " + kind
|
||||||
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
msg = f"Exception: {(kind, item)}"
|
||||||
|
|
||||||
|
with task_worker_lock:
|
||||||
|
tasks_in_progress.remove((kind, item[0]))
|
||||||
|
|
||||||
|
ui_id = item[0]
|
||||||
|
if kind == 'install-model':
|
||||||
|
model_result[ui_id] = msg
|
||||||
|
ui_target = "model_manager"
|
||||||
|
else:
|
||||||
|
nodepack_result[ui_id] = msg
|
||||||
|
ui_target = "nodepack_manager"
|
||||||
|
|
||||||
|
stats[kind] = stats.get(kind, 0) + 1
|
||||||
|
|
||||||
|
PromptServer.instance.send_sync("cm-queue-status",
|
||||||
|
{'status': 'in_progress', 'target': item[0], 'ui_target': ui_target,
|
||||||
|
'total_count': total_count, 'done_count': done_count})
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/customnode/getmappings")
|
@routes.get("/customnode/getmappings")
|
||||||
async def fetch_customnode_mappings(request):
|
async def fetch_customnode_mappings(request):
|
||||||
"""
|
"""
|
||||||
@@ -605,24 +804,59 @@ async def fetch_customnode_alternatives(request):
|
|||||||
|
|
||||||
|
|
||||||
def check_model_installed(json_obj):
|
def check_model_installed(json_obj):
|
||||||
def process_model(item):
|
def is_exists(model_dir_name, filename, url):
|
||||||
model_path = get_model_path(item, False)
|
if filename == '<huggingface>':
|
||||||
item['installed'] = 'None'
|
filename = os.path.basename(url)
|
||||||
|
|
||||||
if model_path is not None:
|
dirs = folder_paths.get_folder_paths(model_dir_name)
|
||||||
if model_path.endswith('.zip'):
|
|
||||||
if os.path.exists(model_path[:-4]):
|
for x in dirs:
|
||||||
item['installed'] = 'True'
|
if os.path.exists(os.path.join(x, filename)):
|
||||||
else:
|
return True
|
||||||
item['installed'] = 'False'
|
|
||||||
elif os.path.exists(model_path):
|
return False
|
||||||
|
|
||||||
|
model_dir_names = ['checkpoints', 'loras', 'vae', 'text_encoders', 'diffusion_models', 'clip_vision', 'embeddings',
|
||||||
|
'diffusers', 'vae_approx', 'controlnet', 'gligen', 'upscale_models', 'hypernetworks',
|
||||||
|
'photomaker', 'classifiers']
|
||||||
|
|
||||||
|
total_models_files = set()
|
||||||
|
for x in model_dir_names:
|
||||||
|
for y in folder_paths.get_filename_list(x):
|
||||||
|
total_models_files.add(y)
|
||||||
|
|
||||||
|
def process_model_phase(item):
|
||||||
|
if 'diffusion' not in item['filename'] and 'pytorch' not in item['filename'] and 'model' not in item['filename']:
|
||||||
|
# non-general name case
|
||||||
|
if item['filename'] in total_models_files:
|
||||||
item['installed'] = 'True'
|
item['installed'] = 'True'
|
||||||
|
return
|
||||||
|
|
||||||
|
if item['save_path'] == 'default':
|
||||||
|
model_dir_name = model_dir_name_map.get(item['type'].lower())
|
||||||
|
if model_dir_name is not None:
|
||||||
|
item['installed'] = str(is_exists(model_dir_name, item['filename'], item['url']))
|
||||||
else:
|
else:
|
||||||
item['installed'] = 'False'
|
item['installed'] = 'False'
|
||||||
|
else:
|
||||||
|
model_dir_name = item['save_path'].split('/')[0]
|
||||||
|
if model_dir_name in folder_paths.folder_names_and_paths:
|
||||||
|
if is_exists(model_dir_name, item['filename'], item['url']):
|
||||||
|
item['installed'] = 'True'
|
||||||
|
|
||||||
|
if 'installed' not in item:
|
||||||
|
if item['filename'] == '<huggingface>':
|
||||||
|
filename = os.path.basename(item['url'])
|
||||||
|
else:
|
||||||
|
filename = item['filename']
|
||||||
|
|
||||||
|
fullpath = os.path.join(folder_paths.models_dir, item['save_path'], filename)
|
||||||
|
|
||||||
|
item['installed'] = 'True' if os.path.exists(fullpath) else 'False'
|
||||||
|
|
||||||
with concurrent.futures.ThreadPoolExecutor(8) as executor:
|
with concurrent.futures.ThreadPoolExecutor(8) as executor:
|
||||||
for item in json_obj['models']:
|
for item in json_obj['models']:
|
||||||
executor.submit(process_model, item)
|
executor.submit(process_model_phase, item)
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/externalmodel/getlist")
|
@routes.get("/externalmodel/getlist")
|
||||||
@@ -852,13 +1086,35 @@ async def import_fail_info(request):
|
|||||||
return web.Response(status=400)
|
return web.Response(status=400)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/reinstall")
|
@routes.post("/manager/queue/reinstall")
|
||||||
async def reinstall_custom_node(request):
|
async def reinstall_custom_node(request):
|
||||||
await uninstall_custom_node(request)
|
await uninstall_custom_node(request)
|
||||||
await install_custom_node(request)
|
await install_custom_node(request)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/install")
|
@routes.get("/manager/queue/reset")
|
||||||
|
async def reset_queue(request):
|
||||||
|
global task_queue
|
||||||
|
task_queue = queue.Queue()
|
||||||
|
return web.Response(status=200)
|
||||||
|
|
||||||
|
|
||||||
|
@routes.get("/manager/queue/status")
|
||||||
|
async def queue_count(request):
|
||||||
|
global task_queue
|
||||||
|
|
||||||
|
with task_worker_lock:
|
||||||
|
done_count = len(nodepack_result) + len(model_result)
|
||||||
|
in_progress_count = len(tasks_in_progress)
|
||||||
|
total_count = done_count + in_progress_count + task_queue.qsize()
|
||||||
|
is_processing = task_worker_thread is not None and task_worker_thread.is_alive()
|
||||||
|
|
||||||
|
return web.json_response({
|
||||||
|
'total_count': total_count, 'done_count': done_count, 'in_progress_count': in_progress_count,
|
||||||
|
'is_processing': is_processing})
|
||||||
|
|
||||||
|
|
||||||
|
@routes.post("/manager/queue/install")
|
||||||
async def install_custom_node(request):
|
async def install_custom_node(request):
|
||||||
if not is_allowed_security_level('middle'):
|
if not is_allowed_security_level('middle'):
|
||||||
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
||||||
@@ -901,26 +1157,33 @@ async def install_custom_node(request):
|
|||||||
logging.error(SECURITY_MESSAGE_GENERAL)
|
logging.error(SECURITY_MESSAGE_GENERAL)
|
||||||
return web.Response(status=404, text="A security error has occurred. Please check the terminal logs")
|
return web.Response(status=404, text="A security error has occurred. Please check the terminal logs")
|
||||||
|
|
||||||
node_spec = core.unified_manager.resolve_node_spec(node_spec_str)
|
install_item = json_data.get('ui_id'), node_spec_str, json_data['channel'], json_data['mode'], skip_post_install
|
||||||
|
task_queue.put(("install", install_item))
|
||||||
|
|
||||||
if node_spec is None:
|
return web.Response(status=200)
|
||||||
return web.Response(status=400, text=f"Cannot resolve install target: '{node_spec_str}'")
|
|
||||||
|
|
||||||
node_name, version_spec, is_specified = node_spec
|
|
||||||
res = await core.unified_manager.install_by_id(node_name, version_spec, json_data['channel'], json_data['mode'], return_postinstall=skip_post_install)
|
|
||||||
# discard post install if skip_post_install mode
|
|
||||||
|
|
||||||
if res.action not in ['skip', 'enable', 'install-git', 'install-cnr', 'switch-cnr']:
|
|
||||||
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
|
||||||
return web.Response(status=400, text=res.msg)
|
|
||||||
elif not res.result:
|
|
||||||
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
|
||||||
return web.Response(status=400, text=res.msg)
|
|
||||||
|
|
||||||
return web.Response(status=200, text="Installation success.")
|
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/fix")
|
task_worker_thread:threading.Thread = None
|
||||||
|
|
||||||
|
@routes.get("/manager/queue/start")
|
||||||
|
async def queue_start(request):
|
||||||
|
global nodepack_result
|
||||||
|
global model_result
|
||||||
|
global task_worker_thread
|
||||||
|
|
||||||
|
if task_worker_thread is not None and task_worker_thread.is_alive():
|
||||||
|
return web.Response(status=201) # already in-progress
|
||||||
|
|
||||||
|
nodepack_result = {}
|
||||||
|
model_result = {}
|
||||||
|
|
||||||
|
task_worker_thread = threading.Thread(target=lambda: asyncio.run(task_worker()))
|
||||||
|
task_worker_thread.start()
|
||||||
|
|
||||||
|
return web.Response(status=200)
|
||||||
|
|
||||||
|
|
||||||
|
@routes.post("/manager/queue/fix")
|
||||||
async def fix_custom_node(request):
|
async def fix_custom_node(request):
|
||||||
if not is_allowed_security_level('middle'):
|
if not is_allowed_security_level('middle'):
|
||||||
logging.error(SECURITY_MESSAGE_GENERAL)
|
logging.error(SECURITY_MESSAGE_GENERAL)
|
||||||
@@ -936,16 +1199,10 @@ async def fix_custom_node(request):
|
|||||||
# unknown
|
# unknown
|
||||||
node_name = os.path.basename(json_data['files'][0])
|
node_name = os.path.basename(json_data['files'][0])
|
||||||
|
|
||||||
res = core.unified_manager.unified_fix(node_name, node_ver)
|
update_item = json_data.get('ui_id'), node_name, json_data['version']
|
||||||
|
task_queue.put(("fix", update_item))
|
||||||
|
|
||||||
if res.result:
|
return web.Response(status=200)
|
||||||
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
|
||||||
return web.json_response({}, content_type='application/json')
|
|
||||||
else:
|
|
||||||
logging.error(res.msg)
|
|
||||||
|
|
||||||
logging.error(f"\nERROR: An error occurred while fixing '{node_name}@{node_ver}'.")
|
|
||||||
return web.Response(status=400, text=f"An error occurred while fixing '{node_name}@{node_ver}'.")
|
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/install/git_url")
|
@routes.post("/customnode/install/git_url")
|
||||||
@@ -980,7 +1237,7 @@ async def install_custom_node_pip(request):
|
|||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/uninstall")
|
@routes.post("/manager/queue/uninstall")
|
||||||
async def uninstall_custom_node(request):
|
async def uninstall_custom_node(request):
|
||||||
if not is_allowed_security_level('middle'):
|
if not is_allowed_security_level('middle'):
|
||||||
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
||||||
@@ -997,17 +1254,13 @@ async def uninstall_custom_node(request):
|
|||||||
is_unknown = True
|
is_unknown = True
|
||||||
node_name = os.path.basename(json_data['files'][0])
|
node_name = os.path.basename(json_data['files'][0])
|
||||||
|
|
||||||
res = core.unified_manager.unified_uninstall(node_name, is_unknown)
|
uninstall_item = json_data.get('ui_id'), node_name, is_unknown
|
||||||
|
task_queue.put(("uninstall", uninstall_item))
|
||||||
|
|
||||||
if res.result:
|
return web.Response(status=200)
|
||||||
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
|
||||||
return web.json_response({}, content_type='application/json')
|
|
||||||
|
|
||||||
logging.error(f"\nERROR: An error occurred while uninstalling '{node_name}'.")
|
|
||||||
return web.Response(status=400, text=f"An error occurred while uninstalling '{node_name}'.")
|
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/update")
|
@routes.post("/manager/queue/update")
|
||||||
async def update_custom_node(request):
|
async def update_custom_node(request):
|
||||||
if not is_allowed_security_level('middle'):
|
if not is_allowed_security_level('middle'):
|
||||||
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
||||||
@@ -1022,16 +1275,10 @@ async def update_custom_node(request):
|
|||||||
# unknown
|
# unknown
|
||||||
node_name = os.path.basename(json_data['files'][0])
|
node_name = os.path.basename(json_data['files'][0])
|
||||||
|
|
||||||
res = core.unified_manager.unified_update(node_name, json_data['version'])
|
update_item = json_data.get('ui_id'), node_name, json_data['version']
|
||||||
|
task_queue.put(("update", update_item))
|
||||||
|
|
||||||
manager_util.clear_pip_cache()
|
return web.Response(status=200)
|
||||||
|
|
||||||
if res.result:
|
|
||||||
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
|
||||||
return web.json_response({}, content_type='application/json')
|
|
||||||
|
|
||||||
logging.error(f"\nERROR: An error occurred while updating '{node_name}'.")
|
|
||||||
return web.Response(status=400, text=f"An error occurred while updating '{node_name}'.")
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/comfyui_manager/update_comfyui")
|
@routes.get("/comfyui_manager/update_comfyui")
|
||||||
@@ -1045,8 +1292,10 @@ async def update_comfyui(request):
|
|||||||
logging.error("ComfyUI update fail: The installed ComfyUI does not have a Git repository.")
|
logging.error("ComfyUI update fail: The installed ComfyUI does not have a Git repository.")
|
||||||
return web.Response(status=400)
|
return web.Response(status=400)
|
||||||
elif res == "updated":
|
elif res == "updated":
|
||||||
|
logging.info("ComfyUI is updated.")
|
||||||
return web.Response(status=201)
|
return web.Response(status=201)
|
||||||
else: # skipped
|
else: # skipped
|
||||||
|
logging.info("ComfyUI is up-to-date.")
|
||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error(f"ComfyUI update fail: {e}", file=sys.stderr)
|
logging.error(f"ComfyUI update fail: {e}", file=sys.stderr)
|
||||||
@@ -1078,7 +1327,7 @@ async def comfyui_switch_version(request):
|
|||||||
return web.Response(status=400)
|
return web.Response(status=400)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/customnode/disable")
|
@routes.post("/manager/queue/disable")
|
||||||
async def disable_node(request):
|
async def disable_node(request):
|
||||||
json_data = await request.json()
|
json_data = await request.json()
|
||||||
|
|
||||||
@@ -1091,12 +1340,10 @@ async def disable_node(request):
|
|||||||
is_unknown = True
|
is_unknown = True
|
||||||
node_name = os.path.basename(json_data['files'][0])
|
node_name = os.path.basename(json_data['files'][0])
|
||||||
|
|
||||||
res = core.unified_manager.unified_disable(node_name, is_unknown)
|
update_item = json_data.get('ui_id'), node_name, is_unknown
|
||||||
|
task_queue.put(("disable", update_item))
|
||||||
|
|
||||||
if res:
|
return web.Response(status=200)
|
||||||
return web.json_response({}, content_type='application/json')
|
|
||||||
|
|
||||||
return web.Response(status=400, text="Failed to disable")
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/migrate_unmanaged_nodes")
|
@routes.get("/manager/migrate_unmanaged_nodes")
|
||||||
@@ -1112,18 +1359,16 @@ async def need_to_migrate(request):
|
|||||||
return web.Response(text=str(core.need_to_migrate), status=200)
|
return web.Response(text=str(core.need_to_migrate), status=200)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/model/install")
|
@routes.post("/manager/queue/install_model")
|
||||||
async def install_model(request):
|
async def install_model(request):
|
||||||
json_data = await request.json()
|
json_data = await request.json()
|
||||||
|
|
||||||
model_path = get_model_path(json_data)
|
|
||||||
|
|
||||||
if not is_allowed_security_level('middle'):
|
if not is_allowed_security_level('middle'):
|
||||||
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
logging.error(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
|
||||||
return web.Response(status=403)
|
return web.Response(status=403, text="A security error has occurred. Please check the terminal logs")
|
||||||
|
|
||||||
if not json_data['filename'].endswith('.safetensors') and not is_allowed_security_level('high'):
|
if not json_data['filename'].endswith('.safetensors') and not is_allowed_security_level('high'):
|
||||||
models_json = await core.get_data_by_mode('cache', 'model-list.json')
|
models_json = await core.get_data_by_mode('cache', 'model-list.json', 'default')
|
||||||
|
|
||||||
is_belongs_to_whitelist = False
|
is_belongs_to_whitelist = False
|
||||||
for x in models_json['models']:
|
for x in models_json['models']:
|
||||||
@@ -1132,40 +1377,13 @@ async def install_model(request):
|
|||||||
break
|
break
|
||||||
|
|
||||||
if not is_belongs_to_whitelist:
|
if not is_belongs_to_whitelist:
|
||||||
logging.error(SECURITY_MESSAGE_NORMAL_MINUS)
|
logging.error(SECURITY_MESSAGE_NORMAL_MINUS_MODEL)
|
||||||
return web.Response(status=403)
|
return web.Response(status=403, text="A security error has occurred. Please check the terminal logs")
|
||||||
|
|
||||||
res = False
|
install_item = json_data.get('ui_id'), json_data
|
||||||
|
task_queue.put(("install-model", install_item))
|
||||||
|
|
||||||
try:
|
return web.Response(status=200)
|
||||||
if model_path is not None:
|
|
||||||
|
|
||||||
model_url = json_data['url']
|
|
||||||
logging.info(f"Install model '{json_data['name']}' from '{model_url}' into '{model_path}'")
|
|
||||||
if not core.get_config()['model_download_by_agent'] and (
|
|
||||||
model_url.startswith('https://github.com') or model_url.startswith('https://huggingface.co') or model_url.startswith('https://heibox.uni-heidelberg.de')):
|
|
||||||
model_dir = get_model_dir(json_data, True)
|
|
||||||
download_url(model_url, model_dir, filename=json_data['filename'])
|
|
||||||
if model_path.endswith('.zip'):
|
|
||||||
res = core.unzip(model_path)
|
|
||||||
else:
|
|
||||||
res = True
|
|
||||||
|
|
||||||
if res:
|
|
||||||
return web.json_response({}, content_type='application/json')
|
|
||||||
else:
|
|
||||||
res = download_url_with_agent(model_url, model_path)
|
|
||||||
if res and model_path.endswith('.zip'):
|
|
||||||
res = core.unzip(model_path)
|
|
||||||
else:
|
|
||||||
logging.error(f"Model installation error: invalid model type - {json_data['type']}")
|
|
||||||
|
|
||||||
if res:
|
|
||||||
return web.json_response({}, content_type='application/json')
|
|
||||||
except Exception as e:
|
|
||||||
logging.error(f"[ERROR] {e}", file=sys.stderr)
|
|
||||||
|
|
||||||
return web.Response(status=400)
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/preview_method")
|
@routes.get("/manager/preview_method")
|
||||||
@@ -1179,17 +1397,6 @@ async def preview_method(request):
|
|||||||
return web.Response(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:
|
|
||||||
set_default_ui_mode(request.rel_url.query['value'])
|
|
||||||
core.write_config()
|
|
||||||
else:
|
|
||||||
return web.Response(text=core.get_config()['default_ui'], status=200)
|
|
||||||
|
|
||||||
return web.Response(status=200)
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/component/policy")
|
@routes.get("/manager/component/policy")
|
||||||
async def component_policy(request):
|
async def component_policy(request):
|
||||||
if "value" in request.rel_url.query:
|
if "value" in request.rel_url.query:
|
||||||
@@ -1394,12 +1601,15 @@ def confirm_try_install(sender, custom_node_url, msg):
|
|||||||
|
|
||||||
cm_global.register_api('cm.try-install-custom-node', confirm_try_install)
|
cm_global.register_api('cm.try-install-custom-node', confirm_try_install)
|
||||||
|
|
||||||
import asyncio
|
|
||||||
|
|
||||||
|
|
||||||
async def default_cache_update():
|
async def default_cache_update():
|
||||||
|
channel_url = core.get_config()['channel_url']
|
||||||
async def get_cache(filename):
|
async def get_cache(filename):
|
||||||
uri = f"{core.DEFAULT_CHANNEL}/{filename}"
|
if core.get_config()['default_cache_as_channel_url']:
|
||||||
|
uri = f"{channel_url}/{filename}"
|
||||||
|
else:
|
||||||
|
uri = f"{core.DEFAULT_CHANNEL}/{filename}"
|
||||||
|
|
||||||
cache_uri = str(manager_util.simple_hash(uri)) + '_' + filename
|
cache_uri = str(manager_util.simple_hash(uri)) + '_' + filename
|
||||||
cache_uri = os.path.join(manager_util.cache_dir, cache_uri)
|
cache_uri = os.path.join(manager_util.cache_dir, cache_uri)
|
||||||
|
|
||||||
@@ -1410,17 +1620,23 @@ async def default_cache_update():
|
|||||||
json.dump(json_obj, file, indent=4, sort_keys=True)
|
json.dump(json_obj, file, indent=4, sort_keys=True)
|
||||||
logging.info(f"[ComfyUI-Manager] default cache updated: {uri}")
|
logging.info(f"[ComfyUI-Manager] default cache updated: {uri}")
|
||||||
|
|
||||||
a = get_cache("custom-node-list.json")
|
if core.get_config()['network_mode'] != 'offline':
|
||||||
b = get_cache("extension-node-map.json")
|
a = get_cache("custom-node-list.json")
|
||||||
c = get_cache("model-list.json")
|
b = get_cache("extension-node-map.json")
|
||||||
d = get_cache("alter-list.json")
|
c = get_cache("model-list.json")
|
||||||
e = get_cache("github-stats.json")
|
d = get_cache("alter-list.json")
|
||||||
|
e = get_cache("github-stats.json")
|
||||||
|
|
||||||
await asyncio.gather(a, b, c, d, e)
|
await asyncio.gather(a, b, c, d, e)
|
||||||
|
|
||||||
# load at least once
|
if core.get_config()['network_mode'] == 'private':
|
||||||
await core.unified_manager.reload('remote', dont_wait=False)
|
logging.info("[ComfyUI-Manager] The private comfyregistry is not yet supported in `network_mode=private`.")
|
||||||
await core.unified_manager.get_custom_nodes('default', 'remote')
|
else:
|
||||||
|
# load at least once
|
||||||
|
await core.unified_manager.reload('remote', dont_wait=False)
|
||||||
|
await core.unified_manager.get_custom_nodes(channel_url, 'remote')
|
||||||
|
|
||||||
|
logging.info("[ComfyUI-Manager] All startup tasks have been completed.")
|
||||||
|
|
||||||
# NOTE: hide migration button temporarily.
|
# NOTE: hide migration button temporarily.
|
||||||
# if not core.get_config()['skip_migration_check']:
|
# if not core.get_config()['skip_migration_check']:
|
||||||
|
|||||||
@@ -19,6 +19,14 @@ cache_lock = threading.Lock()
|
|||||||
comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
||||||
cache_dir = os.path.join(comfyui_manager_path, '.cache') # This path is also updated together in **manager_core.update_user_directory**.
|
cache_dir = os.path.join(comfyui_manager_path, '.cache') # This path is also updated together in **manager_core.update_user_directory**.
|
||||||
|
|
||||||
|
use_uv = False
|
||||||
|
|
||||||
|
def make_pip_cmd(cmd):
|
||||||
|
if use_uv:
|
||||||
|
return [sys.executable, '-m', 'uv', 'pip'] + cmd
|
||||||
|
else:
|
||||||
|
return [sys.executable, '-m', 'pip'] + cmd
|
||||||
|
|
||||||
|
|
||||||
# DON'T USE StrictVersion - cannot handle pre_release version
|
# DON'T USE StrictVersion - cannot handle pre_release version
|
||||||
# try:
|
# try:
|
||||||
@@ -122,7 +130,12 @@ async def get_data(uri, silent=False):
|
|||||||
with open(uri, "r", encoding="utf-8") as f:
|
with open(uri, "r", encoding="utf-8") as f:
|
||||||
json_text = f.read()
|
json_text = f.read()
|
||||||
|
|
||||||
json_obj = json.loads(json_text)
|
try:
|
||||||
|
json_obj = json.loads(json_text)
|
||||||
|
except Exception as e:
|
||||||
|
logging.error(f"[ComfyUI-Manager] An error occurred while fetching '{uri}': {e}")
|
||||||
|
|
||||||
|
return {}
|
||||||
|
|
||||||
if not silent:
|
if not silent:
|
||||||
print(" [DONE]")
|
print(" [DONE]")
|
||||||
@@ -209,7 +222,7 @@ def get_installed_packages(renew=False):
|
|||||||
|
|
||||||
if renew or pip_map is None:
|
if renew or pip_map is None:
|
||||||
try:
|
try:
|
||||||
result = subprocess.check_output([sys.executable, '-m', 'pip', 'list'], universal_newlines=True)
|
result = subprocess.check_output(make_pip_cmd(['list']), universal_newlines=True)
|
||||||
|
|
||||||
pip_map = {}
|
pip_map = {}
|
||||||
for line in result.split('\n'):
|
for line in result.split('\n'):
|
||||||
@@ -232,21 +245,22 @@ def clear_pip_cache():
|
|||||||
pip_map = None
|
pip_map = None
|
||||||
|
|
||||||
|
|
||||||
torch_torchvision_version_map = {
|
torch_torchvision_torchaudio_version_map = {
|
||||||
'2.5.1': '0.20.1',
|
'2.6.0': ('0.21.0', '2.6.0'),
|
||||||
'2.5.0': '0.20.0',
|
'2.5.1': ('0.20.0', '2.5.0'),
|
||||||
'2.4.1': '0.19.1',
|
'2.5.0': ('0.20.0', '2.5.0'),
|
||||||
'2.4.0': '0.19.0',
|
'2.4.1': ('0.19.1', '2.4.1'),
|
||||||
'2.3.1': '0.18.1',
|
'2.4.0': ('0.19.0', '2.4.0'),
|
||||||
'2.3.0': '0.18.0',
|
'2.3.1': ('0.18.1', '2.3.1'),
|
||||||
'2.2.2': '0.17.2',
|
'2.3.0': ('0.18.0', '2.3.0'),
|
||||||
'2.2.1': '0.17.1',
|
'2.2.2': ('0.17.2', '2.2.2'),
|
||||||
'2.2.0': '0.17.0',
|
'2.2.1': ('0.17.1', '2.2.1'),
|
||||||
'2.1.2': '0.16.2',
|
'2.2.0': ('0.17.0', '2.2.0'),
|
||||||
'2.1.1': '0.16.1',
|
'2.1.2': ('0.16.2', '2.1.2'),
|
||||||
'2.1.0': '0.16.0',
|
'2.1.1': ('0.16.1', '2.1.1'),
|
||||||
'2.0.1': '0.15.2',
|
'2.1.0': ('0.16.0', '2.1.0'),
|
||||||
'2.0.0': '0.15.1',
|
'2.0.1': ('0.15.2', '2.0.1'),
|
||||||
|
'2.0.0': ('0.15.1', '2.0.0'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -259,24 +273,23 @@ class PIPFixer:
|
|||||||
if len(spec) > 0:
|
if len(spec) > 0:
|
||||||
platform = spec[1]
|
platform = spec[1]
|
||||||
else:
|
else:
|
||||||
cmd = [sys.executable, '-m', 'pip', 'install', '--force', 'torch', 'torchvision', 'torchaudio']
|
cmd = make_pip_cmd(['install', '--force', 'torch', 'torchvision', 'torchaudio'])
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
logging.error(cmd)
|
logging.error(cmd)
|
||||||
return
|
return
|
||||||
|
|
||||||
torch_ver = StrictVersion(spec[0])
|
torch_ver = StrictVersion(spec[0])
|
||||||
torch_ver = f"{torch_ver.major}.{torch_ver.minor}.{torch_ver.patch}"
|
torch_ver = f"{torch_ver.major}.{torch_ver.minor}.{torch_ver.patch}"
|
||||||
torchvision_ver = torch_torchvision_version_map.get(torch_ver)
|
torch_torchvision_torchaudio_ver = torch_torchvision_torchaudio_version_map.get(torch_ver)
|
||||||
|
|
||||||
if torchvision_ver is None:
|
if torch_torchvision_torchaudio_ver is None:
|
||||||
cmd = [sys.executable, '-m', 'pip', 'install', '--pre',
|
cmd = make_pip_cmd(['install', '--pre', 'torch', 'torchvision', 'torchaudio',
|
||||||
'torch', 'torchvision', 'torchaudio',
|
'--index-url', f"https://download.pytorch.org/whl/nightly/{platform}"])
|
||||||
'--index-url', f"https://download.pytorch.org/whl/nightly/{platform}"]
|
|
||||||
logging.info("[ComfyUI-Manager] restore PyTorch to nightly version")
|
logging.info("[ComfyUI-Manager] restore PyTorch to nightly version")
|
||||||
else:
|
else:
|
||||||
cmd = [sys.executable, '-m', 'pip', 'install',
|
torchvision_ver, torchaudio_ver = torch_torchvision_torchaudio_ver
|
||||||
f'torch=={torch_ver}', f'torchvision=={torchvision_ver}', f"torchaudio=={torch_ver}",
|
cmd = make_pip_cmd(['install', f'torch=={torch_ver}', f'torchvision=={torchvision_ver}', f"torchaudio=={torchaudio_ver}",
|
||||||
'--index-url', f"https://download.pytorch.org/whl/{platform}"]
|
'--index-url', f"https://download.pytorch.org/whl/{platform}"])
|
||||||
logging.info(f"[ComfyUI-Manager] restore PyTorch to {torch_ver}+{platform}")
|
logging.info(f"[ComfyUI-Manager] restore PyTorch to {torch_ver}+{platform}")
|
||||||
|
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
@@ -287,7 +300,7 @@ class PIPFixer:
|
|||||||
# remove `comfy` python package
|
# remove `comfy` python package
|
||||||
try:
|
try:
|
||||||
if 'comfy' in new_pip_versions:
|
if 'comfy' in new_pip_versions:
|
||||||
cmd = [sys.executable, '-m', 'pip', 'uninstall', 'comfy']
|
cmd = make_pip_cmd(['uninstall', 'comfy'])
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
|
|
||||||
logging.warning("[ComfyUI-Manager] 'comfy' python package is uninstalled.\nWARN: The 'comfy' package is completely unrelated to ComfyUI and should never be installed as it causes conflicts with ComfyUI.")
|
logging.warning("[ComfyUI-Manager] 'comfy' python package is uninstalled.\nWARN: The 'comfy' package is completely unrelated to ComfyUI and should never be installed as it causes conflicts with ComfyUI.")
|
||||||
@@ -333,7 +346,7 @@ class PIPFixer:
|
|||||||
|
|
||||||
if len(targets) > 0:
|
if len(targets) > 0:
|
||||||
for x in targets:
|
for x in targets:
|
||||||
cmd = [sys.executable, '-m', 'pip', 'install', f"{x}=={versions[0].version_string}"]
|
cmd = make_pip_cmd(['install', f"{x}=={versions[0].version_string}"])
|
||||||
subprocess.check_output(cmd, universal_newlines=True)
|
subprocess.check_output(cmd, universal_newlines=True)
|
||||||
|
|
||||||
logging.info(f"[ComfyUI-Manager] 'opencv' dependencies were fixed: {targets}")
|
logging.info(f"[ComfyUI-Manager] 'opencv' dependencies were fixed: {targets}")
|
||||||
@@ -346,7 +359,8 @@ class PIPFixer:
|
|||||||
np = new_pip_versions.get('numpy')
|
np = new_pip_versions.get('numpy')
|
||||||
if np is not None:
|
if np is not None:
|
||||||
if StrictVersion(np) >= StrictVersion('2'):
|
if StrictVersion(np) >= StrictVersion('2'):
|
||||||
subprocess.check_output([sys.executable, '-m', 'pip', 'install', "numpy<2"], universal_newlines=True)
|
cmd = make_pip_cmd(['install', "numpy<2"])
|
||||||
|
subprocess.check_output(cmd , universal_newlines=True)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error("[ComfyUI-Manager] Failed to restore numpy")
|
logging.error("[ComfyUI-Manager] Failed to restore numpy")
|
||||||
logging.error(e)
|
logging.error(e)
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ import {
|
|||||||
import { ComponentBuilderDialog, getPureName, load_components, set_component_policy } from "./components-manager.js";
|
import { ComponentBuilderDialog, getPureName, load_components, set_component_policy } from "./components-manager.js";
|
||||||
import { CustomNodesManager } from "./custom-nodes-manager.js";
|
import { CustomNodesManager } from "./custom-nodes-manager.js";
|
||||||
import { ModelManager } from "./model-manager.js";
|
import { ModelManager } from "./model-manager.js";
|
||||||
import { set_double_click_policy } from "./node_fixer.js";
|
|
||||||
import { SnapshotManager } from "./snapshot.js";
|
import { SnapshotManager } from "./snapshot.js";
|
||||||
|
|
||||||
var docStyle = document.createElement('style');
|
var docStyle = document.createElement('style');
|
||||||
@@ -41,7 +40,7 @@ docStyle.innerHTML = `
|
|||||||
|
|
||||||
#cm-manager-dialog {
|
#cm-manager-dialog {
|
||||||
width: 1000px;
|
width: 1000px;
|
||||||
height: 520px;
|
height: 450px;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
@@ -138,7 +137,7 @@ docStyle.innerHTML = `
|
|||||||
|
|
||||||
.cm-notice-board {
|
.cm-notice-board {
|
||||||
width: 290px;
|
width: 290px;
|
||||||
height: 270px;
|
height: 210px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
color: var(--input-text);
|
color: var(--input-text);
|
||||||
border: 1px solid var(--descrip-text);
|
border: 1px solid var(--descrip-text);
|
||||||
@@ -812,11 +811,15 @@ const isOutputNode = (node) => {
|
|||||||
class ManagerMenuDialog extends ComfyDialog {
|
class ManagerMenuDialog extends ComfyDialog {
|
||||||
createControlsMid() {
|
createControlsMid() {
|
||||||
let self = this;
|
let self = this;
|
||||||
|
const isElectron = 'electronAPI' in window;
|
||||||
|
|
||||||
update_comfyui_button =
|
update_comfyui_button =
|
||||||
$el("button.cm-button", {
|
$el("button.cm-button", {
|
||||||
type: "button",
|
type: "button",
|
||||||
textContent: "Update ComfyUI",
|
textContent: "Update ComfyUI",
|
||||||
|
style: {
|
||||||
|
display: isElectron ? 'none' : 'block'
|
||||||
|
},
|
||||||
onclick:
|
onclick:
|
||||||
() => updateComfyUI()
|
() => updateComfyUI()
|
||||||
});
|
});
|
||||||
@@ -825,6 +828,9 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
$el("button.cm-button", {
|
$el("button.cm-button", {
|
||||||
type: "button",
|
type: "button",
|
||||||
textContent: "Switch ComfyUI",
|
textContent: "Switch ComfyUI",
|
||||||
|
style: {
|
||||||
|
display: isElectron ? 'none' : 'block'
|
||||||
|
},
|
||||||
onclick:
|
onclick:
|
||||||
() => switchComfyUI()
|
() => switchComfyUI()
|
||||||
});
|
});
|
||||||
@@ -902,19 +908,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
switch_comfyui_button,
|
switch_comfyui_button,
|
||||||
fetch_updates_button,
|
fetch_updates_button,
|
||||||
|
|
||||||
$el("br", {}, []),
|
|
||||||
$el("button.cm-button", {
|
|
||||||
type: "button",
|
|
||||||
textContent: "Alternatives of A1111",
|
|
||||||
onclick:
|
|
||||||
() => {
|
|
||||||
if(!CustomNodesManager.instance) {
|
|
||||||
CustomNodesManager.instance = new CustomNodesManager(app, self);
|
|
||||||
}
|
|
||||||
CustomNodesManager.instance.show(CustomNodesManager.ShowMode.ALTERNATIVES);
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
|
|
||||||
$el("br", {}, []),
|
$el("br", {}, []),
|
||||||
$el("button.cm-button-red", {
|
$el("button.cm-button-red", {
|
||||||
type: "button",
|
type: "button",
|
||||||
@@ -1009,21 +1002,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// default ui state
|
|
||||||
let default_ui_combo = document.createElement("select");
|
|
||||||
default_ui_combo.setAttribute("title", "Set the default state to be displayed in the main menu when the browser starts.");
|
|
||||||
default_ui_combo.className = "cm-menu-combo";
|
|
||||||
default_ui_combo.appendChild($el('option', { value: 'none', text: 'Default UI: None' }, []));
|
|
||||||
default_ui_combo.appendChild($el('option', { value: 'history', text: 'Default UI: History' }, []));
|
|
||||||
default_ui_combo.appendChild($el('option', { value: 'queue', text: 'Default UI: Queue' }, []));
|
|
||||||
api.fetchApi('/manager/default_ui')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(data => { default_ui_combo.value = data; });
|
|
||||||
|
|
||||||
default_ui_combo.addEventListener('change', function (event) {
|
|
||||||
api.fetchApi(`/manager/default_ui?value=${event.target.value}`);
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
// share
|
// share
|
||||||
let share_combo = document.createElement("select");
|
let share_combo = document.createElement("select");
|
||||||
@@ -1086,7 +1064,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
this.datasrc_combo,
|
this.datasrc_combo,
|
||||||
channel_combo,
|
channel_combo,
|
||||||
preview_combo,
|
preview_combo,
|
||||||
default_ui_combo,
|
|
||||||
share_combo,
|
share_combo,
|
||||||
component_policy_combo,
|
component_policy_combo,
|
||||||
$el("br", {}, []),
|
$el("br", {}, []),
|
||||||
@@ -1269,10 +1246,22 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
this.element = $el("div.comfy-modal", { id:'cm-manager-dialog', parent: document.body }, [ content ]);
|
this.element = $el("div.comfy-modal", { id:'cm-manager-dialog', parent: document.body }, [ content ]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get isVisible() {
|
||||||
|
return this.element?.style?.display !== "none";
|
||||||
|
}
|
||||||
|
|
||||||
show() {
|
show() {
|
||||||
this.element.style.display = "block";
|
this.element.style.display = "block";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
toggleVisibility() {
|
||||||
|
if (this.isVisible) {
|
||||||
|
this.close();
|
||||||
|
} else {
|
||||||
|
this.show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
handleWorkflowGalleryButtonClick(e) {
|
handleWorkflowGalleryButtonClick(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
@@ -1390,6 +1379,41 @@ app.registerExtension({
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
commands: [
|
||||||
|
{
|
||||||
|
id: "Comfy.Manager.Menu.ToggleVisibility",
|
||||||
|
label: "Toggle Manager Menu Visibility",
|
||||||
|
icon: "mdi mdi-puzzle",
|
||||||
|
function: () => {
|
||||||
|
if (!manager_instance) {
|
||||||
|
setManagerInstance(new ManagerMenuDialog());
|
||||||
|
manager_instance.show();
|
||||||
|
} else {
|
||||||
|
manager_instance.toggleVisibility();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "Comfy.Manager.CustomNodesManager.ToggleVisibility",
|
||||||
|
label: "Toggle Custom Nodes Manager Visibility",
|
||||||
|
icon: "pi pi-server",
|
||||||
|
function: () => {
|
||||||
|
if (CustomNodesManager.instance?.isVisible) {
|
||||||
|
CustomNodesManager.instance.close();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!manager_instance) {
|
||||||
|
setManagerInstance(new ManagerMenuDialog());
|
||||||
|
}
|
||||||
|
if (!CustomNodesManager.instance) {
|
||||||
|
CustomNodesManager.instance = new CustomNodesManager(app, self);
|
||||||
|
}
|
||||||
|
CustomNodesManager.instance.show(CustomNodesManager.ShowMode.NORMAL);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
$el("style", {
|
$el("style", {
|
||||||
textContent: style,
|
textContent: style,
|
||||||
@@ -1584,27 +1608,3 @@ app.registerExtension({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
async function set_default_ui()
|
|
||||||
{
|
|
||||||
let res = await api.fetchApi('/manager/default_ui');
|
|
||||||
if(res.status == 200) {
|
|
||||||
let mode = await res.text();
|
|
||||||
switch(mode) {
|
|
||||||
case 'history':
|
|
||||||
app.ui.queue.hide();
|
|
||||||
app.ui.history.show();
|
|
||||||
break;
|
|
||||||
case 'queue':
|
|
||||||
app.ui.queue.show();
|
|
||||||
app.ui.history.hide();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// do nothing
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
set_default_ui();
|
|
||||||
38
js/common.js
38
js/common.js
@@ -130,6 +130,20 @@ export function customAlert(message) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function infoToast(summary, message) {
|
||||||
|
try {
|
||||||
|
app.extensionManager.toast.add({
|
||||||
|
severity: 'info',
|
||||||
|
summary: summary,
|
||||||
|
detail: message,
|
||||||
|
life: 3000
|
||||||
|
})
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export async function customPrompt(title, message) {
|
export async function customPrompt(title, message) {
|
||||||
try {
|
try {
|
||||||
@@ -399,10 +413,22 @@ export const icons = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function sanitizeHTML(str) {
|
export function sanitizeHTML(str) {
|
||||||
return str
|
return str
|
||||||
.replace(/&/g, "&")
|
.replace(/&/g, "&")
|
||||||
.replace(/</g, "<")
|
.replace(/</g, "<")
|
||||||
.replace(/>/g, ">")
|
.replace(/>/g, ">")
|
||||||
.replace(/"/g, """)
|
.replace(/"/g, """)
|
||||||
.replace(/'/g, "'");
|
.replace(/'/g, "'");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function showTerminal() {
|
||||||
|
try {
|
||||||
|
const panel = app.extensionManager.bottomPanel;
|
||||||
|
const isTerminalVisible = panel.bottomPanelVisible && panel.activeBottomPanelTab.id === 'logs-terminal';
|
||||||
|
if (!isTerminalVisible)
|
||||||
|
panel.toggleBottomPanelTab('logs-terminal');
|
||||||
|
}
|
||||||
|
catch(exception) {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -4,7 +4,8 @@ import { api } from "../../scripts/api.js";
|
|||||||
|
|
||||||
import {
|
import {
|
||||||
manager_instance, rebootAPI, install_via_git_url,
|
manager_instance, rebootAPI, install_via_git_url,
|
||||||
fetchData, md5, icons, show_message, customConfirm, customAlert, customPrompt, sanitizeHTML
|
fetchData, md5, icons, show_message, customConfirm, customAlert, customPrompt,
|
||||||
|
sanitizeHTML, infoToast, showTerminal
|
||||||
} from "./common.js";
|
} from "./common.js";
|
||||||
|
|
||||||
// https://cenfun.github.io/turbogrid/api.html
|
// https://cenfun.github.io/turbogrid/api.html
|
||||||
@@ -55,6 +56,12 @@ const pageCss = `
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cn-manager .cn-manager-stop {
|
||||||
|
display: none;
|
||||||
|
background-color: #500000;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.cn-manager .cn-manager-back {
|
.cn-manager .cn-manager-back {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@@ -344,13 +351,14 @@ const pageHtml = `
|
|||||||
<div class="cn-manager-selection"></div>
|
<div class="cn-manager-selection"></div>
|
||||||
<div class="cn-manager-message"></div>
|
<div class="cn-manager-message"></div>
|
||||||
<div class="cn-manager-footer">
|
<div class="cn-manager-footer">
|
||||||
<button class="cn-manager-back">
|
<button class="cn-manager-back">
|
||||||
<svg class="arrow-icon" width="14" height="14" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg class="arrow-icon" width="14" height="14" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path d="M2 8H18M2 8L8 2M2 8L8 14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
<path d="M2 8H18M2 8L8 2M2 8L8 14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
</svg>
|
</svg>
|
||||||
Back
|
Back
|
||||||
</button>
|
</button>
|
||||||
<button class="cn-manager-restart">Restart</button>
|
<button class="cn-manager-restart">Restart</button>
|
||||||
|
<button class="cn-manager-stop">Stop</button>
|
||||||
<div class="cn-flex-auto"></div>
|
<div class="cn-flex-auto"></div>
|
||||||
<button class="cn-manager-check-update">Check Update</button>
|
<button class="cn-manager-check-update">Check Update</button>
|
||||||
<button class="cn-manager-check-missing">Check Missing</button>
|
<button class="cn-manager-check-missing">Check Missing</button>
|
||||||
@@ -391,6 +399,9 @@ export class CustomNodesManager {
|
|||||||
this.restartMap = {};
|
this.restartMap = {};
|
||||||
|
|
||||||
this.init();
|
this.init();
|
||||||
|
|
||||||
|
api.addEventListener("cm-queue-status", this.onQueueStatus);
|
||||||
|
api.addEventListener('reconnected', this.onReconnected);
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
@@ -753,10 +764,16 @@ export class CustomNodesManager {
|
|||||||
|
|
||||||
".cn-manager-restart": {
|
".cn-manager-restart": {
|
||||||
click: () => {
|
click: () => {
|
||||||
if(rebootAPI()) {
|
this.close();
|
||||||
this.close();
|
this.manager_dialog.close();
|
||||||
this.manager_dialog.close();
|
rebootAPI();
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
".cn-manager-stop": {
|
||||||
|
click: () => {
|
||||||
|
api.fetchApi('/manager/queue/reset');
|
||||||
|
infoToast('Cancel', 'Remaining tasks will stop after completing the current task.');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -1204,7 +1221,7 @@ export class CustomNodesManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
focusInstall(item, mode) {
|
focusInstall(item, mode) {
|
||||||
const cellNode = this.grid.getCellNode(item, "installed");
|
const cellNode = this.grid.getCellNode(item, "action");
|
||||||
if (cellNode) {
|
if (cellNode) {
|
||||||
const cellBtn = cellNode.querySelector(`button[mode="${mode}"]`);
|
const cellBtn = cellNode.querySelector(`button[mode="${mode}"]`);
|
||||||
if (cellBtn) {
|
if (cellBtn) {
|
||||||
@@ -1269,6 +1286,13 @@ export class CustomNodesManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async installNodes(list, btn, title, selected_version) {
|
async installNodes(list, btn, title, selected_version) {
|
||||||
|
let stats = await api.fetchApi('/manager/queue/status');
|
||||||
|
stats = await stats.json();
|
||||||
|
if(stats.is_processing) {
|
||||||
|
customAlert(`[ComfyUI-Manager] There are already tasks in progress. Please try again after it is completed. (${stats.done_count}/${stats.total_count})`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const { target, label, mode} = btn;
|
const { target, label, mode} = btn;
|
||||||
|
|
||||||
if(mode === "uninstall") {
|
if(mode === "uninstall") {
|
||||||
@@ -1294,8 +1318,15 @@ export class CustomNodesManager {
|
|||||||
|
|
||||||
let needRestart = false;
|
let needRestart = false;
|
||||||
let errorMsg = "";
|
let errorMsg = "";
|
||||||
|
|
||||||
|
await api.fetchApi('/manager/queue/reset');
|
||||||
|
|
||||||
|
let target_items = [];
|
||||||
|
|
||||||
for (const hash of list) {
|
for (const hash of list) {
|
||||||
const item = this.grid.getRowItemBy("hash", hash);
|
const item = this.grid.getRowItemBy("hash", hash);
|
||||||
|
target_items.push(item);
|
||||||
|
|
||||||
if (!item) {
|
if (!item) {
|
||||||
errorMsg = `Not found custom node: ${hash}`;
|
errorMsg = `Not found custom node: ${hash}`;
|
||||||
break;
|
break;
|
||||||
@@ -1315,6 +1346,7 @@ export class CustomNodesManager {
|
|||||||
data.selected_version = selected_version;
|
data.selected_version = selected_version;
|
||||||
data.channel = this.channel;
|
data.channel = this.channel;
|
||||||
data.mode = this.mode;
|
data.mode = this.mode;
|
||||||
|
data.ui_id = hash;
|
||||||
|
|
||||||
let install_mode = mode;
|
let install_mode = mode;
|
||||||
if(mode == 'switch') {
|
if(mode == 'switch') {
|
||||||
@@ -1332,50 +1364,120 @@ export class CustomNodesManager {
|
|||||||
api_mode = 'reinstall';
|
api_mode = 'reinstall';
|
||||||
}
|
}
|
||||||
|
|
||||||
const res = await api.fetchApi(`/customnode/${api_mode}`, {
|
const res = await api.fetchApi(`/manager/queue/${api_mode}`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: JSON.stringify(data)
|
body: JSON.stringify(data)
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.status != 200) {
|
if (res.status != 200) {
|
||||||
|
errorMsg = `'${item.title}': `;
|
||||||
|
|
||||||
errorMsg = `${item.title} ${mode} failed: `;
|
|
||||||
if(res.status == 403) {
|
if(res.status == 403) {
|
||||||
errorMsg += `This action is not allowed with this security level configuration.`;
|
errorMsg += `This action is not allowed with this security level configuration.\n`;
|
||||||
} else if(res.status == 404) {
|
} else if(res.status == 404) {
|
||||||
errorMsg += `With the current security level configuration, only custom nodes from the <B>"default channel"</B> can be installed.`;
|
errorMsg += `With the current security level configuration, only custom nodes from the <B>"default channel"</B> can be installed.\n`;
|
||||||
} else {
|
} else {
|
||||||
errorMsg += await res.text();
|
errorMsg += await res.text() + '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
needRestart = true;
|
|
||||||
|
|
||||||
this.grid.setRowSelected(item, false);
|
|
||||||
item.restart = true;
|
|
||||||
this.restartMap[item.hash] = true;
|
|
||||||
this.grid.updateCell(item, "action");
|
|
||||||
|
|
||||||
//console.log(res.data);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.install_context = {btn: btn, targets: target_items};
|
||||||
|
|
||||||
|
if(errorMsg) {
|
||||||
|
this.showError(errorMsg);
|
||||||
|
show_message("[Installation Errors]\n"+errorMsg);
|
||||||
|
|
||||||
|
// reset
|
||||||
|
for(let k in target_items) {
|
||||||
|
const item = target_items[k];
|
||||||
|
this.grid.updateCell(item, "action");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
await api.fetchApi('/manager/queue/start');
|
||||||
|
this.showStop();
|
||||||
|
showTerminal();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async onReconnected(event) {
|
||||||
|
let self = CustomNodesManager.instance;
|
||||||
|
|
||||||
|
if(self.need_restart) {
|
||||||
|
self.need_restart = false;
|
||||||
|
|
||||||
|
const confirmed = await customConfirm("To apply the changes to the node pack's installation status, you need to refresh the browser. Would you like to refresh?");
|
||||||
|
if (!confirmed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
window.location.reload(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async onQueueStatus(event) {
|
||||||
|
let self = CustomNodesManager.instance;
|
||||||
|
if(event.detail.status == 'in_progress' && event.detail.ui_target == 'nodepack_manager') {
|
||||||
|
const hash = event.detail.target;
|
||||||
|
|
||||||
|
const item = self.grid.getRowItemBy("hash", hash);
|
||||||
|
|
||||||
|
item.restart = true;
|
||||||
|
self.restartMap[item.hash] = true;
|
||||||
|
self.grid.updateCell(item, "action");
|
||||||
|
self.grid.setRowSelected(item, false);
|
||||||
|
}
|
||||||
|
else if(event.detail.status == 'done') {
|
||||||
|
self.hideStop();
|
||||||
|
self.onQueueCompleted(event.detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async onQueueCompleted(info) {
|
||||||
|
let result = info.nodepack_result;
|
||||||
|
|
||||||
|
if(result.length == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let self = CustomNodesManager.instance;
|
||||||
|
|
||||||
|
if(!self.install_context) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { target, label, mode } = self.install_context.btn;
|
||||||
target.classList.remove("cn-btn-loading");
|
target.classList.remove("cn-btn-loading");
|
||||||
|
|
||||||
|
let errorMsg = "";
|
||||||
|
|
||||||
|
for(let hash in result){
|
||||||
|
let v = result[hash];
|
||||||
|
|
||||||
|
if(v != 'success')
|
||||||
|
errorMsg += v+'\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
for(let k in self.install_context.targets) {
|
||||||
|
let item = self.install_context.targets[k];
|
||||||
|
self.grid.updateCell(item, "action");
|
||||||
|
}
|
||||||
|
|
||||||
if (errorMsg) {
|
if (errorMsg) {
|
||||||
this.showError(errorMsg);
|
self.showError(errorMsg);
|
||||||
show_message("Installation Error:\n"+errorMsg);
|
show_message("Installation Error:\n"+errorMsg);
|
||||||
} else {
|
} else {
|
||||||
this.showStatus(`${label} ${list.length} custom node(s) successfully`);
|
self.showStatus(`${label} ${result.length} custom node(s) successfully`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (needRestart) {
|
self.showRestart();
|
||||||
this.showRestart();
|
self.showMessage(`To apply the installed/updated/disabled/enabled custom node, please restart ComfyUI. And refresh browser.`, "red");
|
||||||
this.showMessage(`To apply the installed/updated/disabled/enabled custom node, please restart ComfyUI. And refresh browser.`, "red")
|
|
||||||
}
|
|
||||||
|
|
||||||
|
infoToast(`[ComfyUI-Manager] All node pack tasks in the queue have been completed.\n${info.done_count}/${info.total_count}`);
|
||||||
|
self.install_context = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ===========================================================================================
|
// ===========================================================================================
|
||||||
@@ -1756,9 +1858,9 @@ export class CustomNodesManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setDisabled(disabled) {
|
setDisabled(disabled) {
|
||||||
|
|
||||||
const $close = this.element.querySelector(".cn-manager-close");
|
const $close = this.element.querySelector(".cn-manager-close");
|
||||||
const $restart = this.element.querySelector(".cn-manager-restart");
|
const $restart = this.element.querySelector(".cn-manager-restart");
|
||||||
|
const $stop = this.element.querySelector(".cn-manager-stop");
|
||||||
|
|
||||||
const list = [
|
const list = [
|
||||||
".cn-manager-header input",
|
".cn-manager-header input",
|
||||||
@@ -1770,7 +1872,7 @@ export class CustomNodesManager {
|
|||||||
})
|
})
|
||||||
.flat()
|
.flat()
|
||||||
.filter(it => {
|
.filter(it => {
|
||||||
return it !== $close && it !== $restart;
|
return it !== $close && it !== $restart && it !== $stop;
|
||||||
});
|
});
|
||||||
|
|
||||||
list.forEach($elem => {
|
list.forEach($elem => {
|
||||||
@@ -1789,6 +1891,15 @@ export class CustomNodesManager {
|
|||||||
|
|
||||||
showRestart() {
|
showRestart() {
|
||||||
this.element.querySelector(".cn-manager-restart").style.display = "block";
|
this.element.querySelector(".cn-manager-restart").style.display = "block";
|
||||||
|
this.need_restart = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
showStop() {
|
||||||
|
this.element.querySelector(".cn-manager-stop").style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
|
hideStop() {
|
||||||
|
this.element.querySelector(".cn-manager-stop").style.display = "none";
|
||||||
}
|
}
|
||||||
|
|
||||||
setFilter(filterValue) {
|
setFilter(filterValue) {
|
||||||
@@ -1818,4 +1929,8 @@ export class CustomNodesManager {
|
|||||||
close() {
|
close() {
|
||||||
this.element.style.display = "none";
|
this.element.style.display = "none";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get isVisible() {
|
||||||
|
return this.element?.style?.display !== "none";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
|
import { app } from "../../scripts/app.js";
|
||||||
import { $el } from "../../scripts/ui.js";
|
import { $el } from "../../scripts/ui.js";
|
||||||
import {
|
import {
|
||||||
manager_instance, rebootAPI,
|
manager_instance, rebootAPI,
|
||||||
fetchData, md5, icons
|
fetchData, md5, icons, show_message, customAlert, infoToast, showTerminal
|
||||||
} from "./common.js";
|
} from "./common.js";
|
||||||
|
import { api } from "../../scripts/api.js";
|
||||||
|
|
||||||
// https://cenfun.github.io/turbogrid/api.html
|
// https://cenfun.github.io/turbogrid/api.html
|
||||||
import TG from "./turbogrid.esm.js";
|
import TG from "./turbogrid.esm.js";
|
||||||
@@ -46,6 +48,18 @@ const pageCss = `
|
|||||||
background-color: var(--comfy-input-bg);
|
background-color: var(--comfy-input-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cmm-manager .cmm-manager-refresh {
|
||||||
|
display: none;
|
||||||
|
background-color: #000080;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cmm-manager .cmm-manager-stop {
|
||||||
|
display: none;
|
||||||
|
background-color: #500000;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.cmm-manager-header {
|
.cmm-manager-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -235,7 +249,14 @@ const pageHtml = `
|
|||||||
<div class="cmm-manager-selection"></div>
|
<div class="cmm-manager-selection"></div>
|
||||||
<div class="cmm-manager-message"></div>
|
<div class="cmm-manager-message"></div>
|
||||||
<div class="cmm-manager-footer">
|
<div class="cmm-manager-footer">
|
||||||
<button class="cmm-manager-back">Back</button>
|
<button class="cmm-manager-back">
|
||||||
|
<svg class="arrow-icon" width="14" height="14" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M2 8H18M2 8L8 2M2 8L8 14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
Back
|
||||||
|
</button>
|
||||||
|
<button class="cmm-manager-refresh">Refresh</button>
|
||||||
|
<button class="cmm-manager-stop">Stop</button>
|
||||||
<div class="cmm-flex-auto"></div>
|
<div class="cmm-flex-auto"></div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
@@ -254,6 +275,8 @@ export class ModelManager {
|
|||||||
this.keywords = '';
|
this.keywords = '';
|
||||||
|
|
||||||
this.init();
|
this.init();
|
||||||
|
|
||||||
|
api.addEventListener("cm-queue-status", this.onQueueStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
@@ -365,12 +388,25 @@ export class ModelManager {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
".cmm-manager-refresh": {
|
||||||
|
click: () => {
|
||||||
|
app.refreshComboInNodes();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
".cmm-manager-stop": {
|
||||||
|
click: () => {
|
||||||
|
api.fetchApi('/manager/queue/reset');
|
||||||
|
infoToast('Cancel', 'Remaining tasks will stop after completing the current task.');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
".cmm-manager-back": {
|
".cmm-manager-back": {
|
||||||
click: (e) => {
|
click: (e) => {
|
||||||
this.close()
|
this.close()
|
||||||
manager_instance.show();
|
manager_instance.show();
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
Object.keys(eventsMap).forEach(selector => {
|
Object.keys(eventsMap).forEach(selector => {
|
||||||
const target = this.element.querySelector(selector);
|
const target = this.element.querySelector(selector);
|
||||||
@@ -595,17 +631,27 @@ export class ModelManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async installModels(list, btn) {
|
async installModels(list, btn) {
|
||||||
|
let stats = await api.fetchApi('/manager/queue/status');
|
||||||
|
|
||||||
|
stats = await stats.json();
|
||||||
|
if(stats.is_processing) {
|
||||||
|
customAlert(`[ComfyUI-Manager] There are already tasks in progress. Please try again after it is completed. (${stats.done_count}/${stats.total_count})`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
btn.classList.add("cmm-btn-loading");
|
btn.classList.add("cmm-btn-loading");
|
||||||
this.showLoading();
|
|
||||||
this.showError("");
|
this.showError("");
|
||||||
|
|
||||||
let needRestart = false;
|
let needRefresh = false;
|
||||||
let errorMsg = "";
|
let errorMsg = "";
|
||||||
|
|
||||||
for (const item of list) {
|
await api.fetchApi('/manager/queue/reset');
|
||||||
|
|
||||||
|
let target_items = [];
|
||||||
|
|
||||||
|
for (const item of list) {
|
||||||
this.grid.scrollRowIntoView(item);
|
this.grid.scrollRowIntoView(item);
|
||||||
|
target_items.push(item);
|
||||||
|
|
||||||
if (!this.focusInstall(item)) {
|
if (!this.focusInstall(item)) {
|
||||||
this.grid.onNextUpdated(() => {
|
this.grid.onNextUpdated(() => {
|
||||||
@@ -616,48 +662,112 @@ export class ModelManager {
|
|||||||
this.showStatus(`Install ${item.name} ...`);
|
this.showStatus(`Install ${item.name} ...`);
|
||||||
|
|
||||||
const data = item.originalData;
|
const data = item.originalData;
|
||||||
const res = await fetchData('/model/install', {
|
data.ui_id = item.hash;
|
||||||
|
|
||||||
|
const res = await api.fetchApi(`/manager/queue/install_model`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
|
||||||
body: JSON.stringify(data)
|
body: JSON.stringify(data)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (res.status != 200) {
|
||||||
|
errorMsg = `'${item.name}': `;
|
||||||
|
|
||||||
if (res.error) {
|
if(res.status == 403) {
|
||||||
errorMsg = `Install failed: ${item.name} ${res.error.message}`;
|
errorMsg += `This action is not allowed with this security level configuration.\n`;
|
||||||
break;;
|
} else {
|
||||||
|
errorMsg += await res.text() + '\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
needRestart = true;
|
this.install_context = {btn: btn, targets: target_items};
|
||||||
|
|
||||||
this.grid.setRowSelected(item, false);
|
if(errorMsg) {
|
||||||
|
this.showError(errorMsg);
|
||||||
|
show_message("[Installation Errors]\n"+errorMsg);
|
||||||
|
|
||||||
|
// reset
|
||||||
|
for(let k in target_items) {
|
||||||
|
const item = target_items[k];
|
||||||
|
this.grid.updateCell(item, "installed");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
await api.fetchApi('/manager/queue/start');
|
||||||
|
this.showStop();
|
||||||
|
showTerminal();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async onQueueStatus(event) {
|
||||||
|
let self = ModelManager.instance;
|
||||||
|
|
||||||
|
if(event.detail.status == 'in_progress' && event.detail.ui_target == 'model_manager') {
|
||||||
|
const hash = event.detail.target;
|
||||||
|
|
||||||
|
const item = self.grid.getRowItemBy("hash", hash);
|
||||||
|
|
||||||
item.refresh = true;
|
item.refresh = true;
|
||||||
|
self.grid.setRowSelected(item, false);
|
||||||
item.selectable = false;
|
item.selectable = false;
|
||||||
this.grid.updateCell(item, "installed");
|
// self.grid.updateCell(item, "tg-column-select");
|
||||||
this.grid.updateCell(item, "tg-column-select");
|
self.grid.updateRow(item);
|
||||||
|
}
|
||||||
|
else if(event.detail.status == 'done') {
|
||||||
|
self.hideStop();
|
||||||
|
self.onQueueCompleted(event.detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.showStatus(`Install ${item.name} successfully`);
|
async onQueueCompleted(info) {
|
||||||
|
let result = info.model_result;
|
||||||
|
|
||||||
|
if(result.length == 0) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.hideLoading();
|
let self = ModelManager.instance;
|
||||||
|
|
||||||
|
if(!self.install_context) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let btn = self.install_context.btn;
|
||||||
|
|
||||||
|
self.hideLoading();
|
||||||
btn.classList.remove("cmm-btn-loading");
|
btn.classList.remove("cmm-btn-loading");
|
||||||
|
|
||||||
|
let errorMsg = "";
|
||||||
|
|
||||||
|
for(let hash in result){
|
||||||
|
let v = result[hash];
|
||||||
|
|
||||||
|
if(v != 'success')
|
||||||
|
errorMsg += v + '\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
for(let k in self.install_context.targets) {
|
||||||
|
let item = self.install_context.targets[k];
|
||||||
|
self.grid.updateCell(item, "installed");
|
||||||
|
}
|
||||||
|
|
||||||
if (errorMsg) {
|
if (errorMsg) {
|
||||||
this.showError(errorMsg);
|
self.showError(errorMsg);
|
||||||
|
show_message("Installation Error:\n"+errorMsg);
|
||||||
} else {
|
} else {
|
||||||
this.showStatus(`Install ${list.length} models successfully`);
|
self.showStatus(`Install ${result.length} models successfully`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (needRestart) {
|
self.showRefresh();
|
||||||
this.showMessage(`To apply the installed model, please click the 'Refresh' button on the main menu.`, "red")
|
self.showMessage(`To apply the installed model, please click the 'Refresh' button.`, "red")
|
||||||
}
|
|
||||||
|
|
||||||
|
infoToast('Tasks done', `[ComfyUI-Manager] All model downloading tasks in the queue have been completed.\n${info.done_count}/${info.total_count}`);
|
||||||
|
self.install_context = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
getModelList(models) {
|
getModelList(models) {
|
||||||
|
|
||||||
const typeMap = new Map();
|
const typeMap = new Map();
|
||||||
const baseMap = new Map();
|
const baseMap = new Map();
|
||||||
|
|
||||||
@@ -826,7 +936,7 @@ export class ModelManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
showLoading() {
|
showLoading() {
|
||||||
this.setDisabled(true);
|
// this.setDisabled(true);
|
||||||
if (this.grid) {
|
if (this.grid) {
|
||||||
this.grid.showLoading();
|
this.grid.showLoading();
|
||||||
this.grid.showMask({
|
this.grid.showMask({
|
||||||
@@ -836,7 +946,7 @@ export class ModelManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
hideLoading() {
|
hideLoading() {
|
||||||
this.setDisabled(false);
|
// this.setDisabled(false);
|
||||||
if (this.grid) {
|
if (this.grid) {
|
||||||
this.grid.hideLoading();
|
this.grid.hideLoading();
|
||||||
this.grid.hideMask();
|
this.grid.hideMask();
|
||||||
@@ -844,8 +954,9 @@ export class ModelManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setDisabled(disabled) {
|
setDisabled(disabled) {
|
||||||
|
|
||||||
const $close = this.element.querySelector(".cmm-manager-close");
|
const $close = this.element.querySelector(".cmm-manager-close");
|
||||||
|
const $refresh = this.element.querySelector(".cmm-manager-refresh");
|
||||||
|
const $stop = this.element.querySelector(".cmm-manager-stop");
|
||||||
|
|
||||||
const list = [
|
const list = [
|
||||||
".cmm-manager-header input",
|
".cmm-manager-header input",
|
||||||
@@ -857,7 +968,7 @@ export class ModelManager {
|
|||||||
})
|
})
|
||||||
.flat()
|
.flat()
|
||||||
.filter(it => {
|
.filter(it => {
|
||||||
return it !== $close;
|
return it !== $close && it !== $refresh && it !== $stop;
|
||||||
});
|
});
|
||||||
|
|
||||||
list.forEach($elem => {
|
list.forEach($elem => {
|
||||||
@@ -874,6 +985,18 @@ export class ModelManager {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
showRefresh() {
|
||||||
|
this.element.querySelector(".cmm-manager-refresh").style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
|
showStop() {
|
||||||
|
this.element.querySelector(".cmm-manager-stop").style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
|
hideStop() {
|
||||||
|
this.element.querySelector(".cmm-manager-stop").style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
setKeywords(keywords = "") {
|
setKeywords(keywords = "") {
|
||||||
this.keywords = keywords;
|
this.keywords = keywords;
|
||||||
this.element.querySelector(".cmm-manager-keywords").value = keywords;
|
this.element.querySelector(".cmm-manager-keywords").value = keywords;
|
||||||
|
|||||||
@@ -1,16 +1,6 @@
|
|||||||
import { app } from "../../scripts/app.js";
|
import { app } from "../../scripts/app.js";
|
||||||
import { api } from "../../scripts/api.js";
|
import { api } from "../../scripts/api.js";
|
||||||
|
|
||||||
let double_click_policy = "copy-all";
|
|
||||||
|
|
||||||
api.fetchApi('/manager/dbl_click/policy')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(data => set_double_click_policy(data));
|
|
||||||
|
|
||||||
export function set_double_click_policy(mode) {
|
|
||||||
double_click_policy = mode;
|
|
||||||
}
|
|
||||||
|
|
||||||
function addMenuHandler(nodeType, cb) {
|
function addMenuHandler(nodeType, cb) {
|
||||||
const getOpts = nodeType.prototype.getExtraMenuOptions;
|
const getOpts = nodeType.prototype.getExtraMenuOptions;
|
||||||
nodeType.prototype.getExtraMenuOptions = function () {
|
nodeType.prototype.getExtraMenuOptions = function () {
|
||||||
@@ -153,62 +143,6 @@ function node_info_copy(src, dest, connect_both, copy_shape) {
|
|||||||
|
|
||||||
app.registerExtension({
|
app.registerExtension({
|
||||||
name: "Comfy.Manager.NodeFixer",
|
name: "Comfy.Manager.NodeFixer",
|
||||||
|
|
||||||
async nodeCreated(node, app) {
|
|
||||||
let orig_dblClick = node.onDblClick;
|
|
||||||
node.onDblClick = function (e, pos, self) {
|
|
||||||
orig_dblClick?.apply?.(this, arguments);
|
|
||||||
|
|
||||||
if((!node.inputs && !node.outputs) || pos[1] > 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
switch(double_click_policy) {
|
|
||||||
case "copy-all":
|
|
||||||
case "copy-full":
|
|
||||||
case "copy-input":
|
|
||||||
{
|
|
||||||
if(node.inputs?.some(x => x.link != null) || node.outputs?.some(x => x.links != null && x.links.length > 0) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
let src_node = lookup_nearest_nodes(node);
|
|
||||||
if(src_node)
|
|
||||||
{
|
|
||||||
let both_connection = double_click_policy != "copy-input";
|
|
||||||
let copy_shape = double_click_policy == "copy-full";
|
|
||||||
node_info_copy(src_node, node, both_connection, copy_shape);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "possible-input":
|
|
||||||
{
|
|
||||||
let nearest_inputs = lookup_nearest_inputs(node);
|
|
||||||
if(nearest_inputs)
|
|
||||||
connect_inputs(nearest_inputs, node);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "dual":
|
|
||||||
{
|
|
||||||
if(pos[0] < node.size[0]/2) {
|
|
||||||
// left: possible-input
|
|
||||||
let nearest_inputs = lookup_nearest_inputs(node);
|
|
||||||
if(nearest_inputs)
|
|
||||||
connect_inputs(nearest_inputs, node);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// right: copy-all
|
|
||||||
if(node.inputs?.some(x => x.link != null) || node.outputs?.some(x => x.links != null && x.links.length > 0) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
let src_node = lookup_nearest_nodes(node);
|
|
||||||
if(src_node)
|
|
||||||
node_info_copy(src_node, node, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
beforeRegisterNodeDef(nodeType, nodeData, app) {
|
beforeRegisterNodeDef(nodeType, nodeData, app) {
|
||||||
addMenuHandler(nodeType, function (_, options) {
|
addMenuHandler(nodeType, function (_, options) {
|
||||||
options.push({
|
options.push({
|
||||||
|
|||||||
288
model-list.json
288
model-list.json
@@ -209,28 +209,6 @@
|
|||||||
"url": "https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler/resolve/main/x4-upscaler-ema.safetensors",
|
"url": "https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler/resolve/main/x4-upscaler-ema.safetensors",
|
||||||
"size": "3.53GB"
|
"size": "3.53GB"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Inswapper-fp16 (face swap)",
|
|
||||||
"type": "insightface",
|
|
||||||
"base": "inswapper",
|
|
||||||
"save_path": "insightface",
|
|
||||||
"description": "Checkpoint of the insightface swapper model\n(used by ComfyUI-FaceSwap, comfyui-reactor-node, CharacterFaceSwap,\nComfyUI roop and comfy_mtb)",
|
|
||||||
"reference": "https://github.com/facefusion/facefusion-assets",
|
|
||||||
"filename": "inswapper_128_fp16.onnx",
|
|
||||||
"url": "https://github.com/facefusion/facefusion-assets/releases/download/models/inswapper_128_fp16.onnx",
|
|
||||||
"size": "277.7MB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Inswapper (face swap)",
|
|
||||||
"type": "insightface",
|
|
||||||
"base": "inswapper",
|
|
||||||
"save_path": "insightface",
|
|
||||||
"description": "Checkpoint of the insightface swapper model\n(used by ComfyUI-FaceSwap, comfyui-reactor-node, CharacterFaceSwap,\nComfyUI roop and comfy_mtb)",
|
|
||||||
"reference": "https://github.com/facefusion/facefusion-assets",
|
|
||||||
"filename": "inswapper_128.onnx",
|
|
||||||
"url": "https://github.com/facefusion/facefusion-assets/releases/download/models/inswapper_128.onnx",
|
|
||||||
"size": "555.3MB"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Deepbump",
|
"name": "Deepbump",
|
||||||
"type": "deepbump",
|
"type": "deepbump",
|
||||||
@@ -310,7 +288,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "negative_hand Negative Embedding",
|
"name": "negative_hand Negative Embedding",
|
||||||
"type": "embeddings",
|
"type": "embedding",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "embeddings/SD1.5",
|
"save_path": "embeddings/SD1.5",
|
||||||
"description": "If you use this embedding with negatives, you can solve the issue of damaging your hands.",
|
"description": "If you use this embedding with negatives, you can solve the issue of damaging your hands.",
|
||||||
@@ -321,7 +299,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "bad_prompt Negative Embedding",
|
"name": "bad_prompt Negative Embedding",
|
||||||
"type": "embeddings",
|
"type": "embedding",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "embeddings/SD1.5",
|
"save_path": "embeddings/SD1.5",
|
||||||
"description": "The idea behind this embedding was to somehow train the negative prompt as an embedding, thus unifying the basis of the negative prompt into one word or embedding.",
|
"description": "The idea behind this embedding was to somehow train the negative prompt as an embedding, thus unifying the basis of the negative prompt into one word or embedding.",
|
||||||
@@ -332,7 +310,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deep Negative V1.75",
|
"name": "Deep Negative V1.75",
|
||||||
"type": "embeddings",
|
"type": "embedding",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "embeddings/SD1.5",
|
"save_path": "embeddings/SD1.5",
|
||||||
"description": "These embedding learn what disgusting compositions and color patterns are, including faulty human anatomy, offensive color schemes, upside-down spatial structures, and more. Placing it in the negative can go a long way to avoiding these things.",
|
"description": "These embedding learn what disgusting compositions and color patterns are, including faulty human anatomy, offensive color schemes, upside-down spatial structures, and more. Placing it in the negative can go a long way to avoiding these things.",
|
||||||
@@ -343,7 +321,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "EasyNegative",
|
"name": "EasyNegative",
|
||||||
"type": "embeddings",
|
"type": "embedding",
|
||||||
"base": "SD1.5",
|
"base": "SD1.5",
|
||||||
"save_path": "embeddings/SD1.5",
|
"save_path": "embeddings/SD1.5",
|
||||||
"description": "This embedding should be used in your NEGATIVE prompt. Adjust the strength as desired (seems to scale well without any distortions), the strength required may vary based on positive and negative prompts.",
|
"description": "This embedding should be used in your NEGATIVE prompt. Adjust the strength as desired (seems to scale well without any distortions), the strength required may vary based on positive and negative prompts.",
|
||||||
@@ -488,7 +466,7 @@
|
|||||||
"name": "stabilityai/Stable Cascade: text_encoder (CLIP)",
|
"name": "stabilityai/Stable Cascade: text_encoder (CLIP)",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "Stable Cascade",
|
"base": "Stable Cascade",
|
||||||
"save_path": "clip/Stable-Cascade",
|
"save_path": "text_encoders/Stable-Cascade",
|
||||||
"description": "Stable Cascade: text_encoder",
|
"description": "Stable Cascade: text_encoder",
|
||||||
"reference": "https://huggingface.co/stabilityai/stable-cascade",
|
"reference": "https://huggingface.co/stabilityai/stable-cascade",
|
||||||
"filename": "model.safetensors",
|
"filename": "model.safetensors",
|
||||||
@@ -937,7 +915,7 @@
|
|||||||
"name": "google-t5/t5-base",
|
"name": "google-t5/t5-base",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5-base",
|
"base": "t5-base",
|
||||||
"save_path": "clip/t5-base",
|
"save_path": "text_encoders/t5-base",
|
||||||
"description": "T5 Base: Text-To-Text Transfer Transformer. This model can be loaded via CLIPLoader for Stable Audio workflow.",
|
"description": "T5 Base: Text-To-Text Transfer Transformer. This model can be loaded via CLIPLoader for Stable Audio workflow.",
|
||||||
"reference": "https://huggingface.co/google-t5/t5-base",
|
"reference": "https://huggingface.co/google-t5/t5-base",
|
||||||
"filename": "model.safetensors",
|
"filename": "model.safetensors",
|
||||||
@@ -948,7 +926,7 @@
|
|||||||
"name": "google-t5/t5-v1_1-xxl_encoderonly-fp16",
|
"name": "google-t5/t5-v1_1-xxl_encoderonly-fp16",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1",
|
"description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1",
|
||||||
"reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly",
|
"reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly",
|
||||||
"filename": "google_t5-v1_1-xxl_encoderonly-fp16.safetensors",
|
"filename": "google_t5-v1_1-xxl_encoderonly-fp16.safetensors",
|
||||||
@@ -959,7 +937,7 @@
|
|||||||
"name": "google-t5/t5-v1_1-xxl_encoderonly-fp8_e4m3fn",
|
"name": "google-t5/t5-v1_1-xxl_encoderonly-fp8_e4m3fn",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1",
|
"description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1",
|
||||||
"reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly",
|
"reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly",
|
||||||
"filename": "google_t5-v1_1-xxl_encoderonly-fp8_e4m3fn.safetensors",
|
"filename": "google_t5-v1_1-xxl_encoderonly-fp8_e4m3fn.safetensors",
|
||||||
@@ -972,7 +950,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_L.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_L.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q3_K_L quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q3_K_L quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q3_K_L.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q3_K_L.gguf",
|
||||||
@@ -983,7 +961,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_M.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_M.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q3_K_M quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q3_K_M quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q3_K_M.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q3_K_M.gguf",
|
||||||
@@ -994,7 +972,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_S.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q3_K_S.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q3_K_S quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q3_K_S quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q3_K_S.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q3_K_S.gguf",
|
||||||
@@ -1005,7 +983,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q4_K_M quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q4_K_M quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
||||||
@@ -1016,7 +994,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q4_K_S.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q4_K_S.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q4_K_S quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q4_K_S quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q4_K_S.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q4_K_S.gguf",
|
||||||
@@ -1027,7 +1005,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q5_K_M.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q5_K_M.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q5_K_M quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q5_K_M quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q5_K_M.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q5_K_M.gguf",
|
||||||
@@ -1038,7 +1016,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q5_K_S.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q5_K_S.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q5_K_S quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q5_K_S quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q5_K_S.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q5_K_S.gguf",
|
||||||
@@ -1049,7 +1027,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q6_K.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q6_K.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q6_K quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q6_K quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q6_K.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q6_K.gguf",
|
||||||
@@ -1060,7 +1038,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-Q8_0.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-Q8_0.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (Q8_0 quantized)",
|
"description": "t5xxl Text Encoder GGUF model. (Q8_0 quantized)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-Q8_0.gguf",
|
"filename": "t5-v1_1-xxl-encoder-Q8_0.gguf",
|
||||||
@@ -1071,7 +1049,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-f16.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-f16.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (float 16)",
|
"description": "t5xxl Text Encoder GGUF model. (float 16)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-f16.gguf",
|
"filename": "t5-v1_1-xxl-encoder-f16.gguf",
|
||||||
@@ -1082,7 +1060,7 @@
|
|||||||
"name": "city96/t5-v1_1-xxl-encoder-f32.gguf",
|
"name": "city96/t5-v1_1-xxl-encoder-f32.gguf",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "t5",
|
"base": "t5",
|
||||||
"save_path": "clip/t5",
|
"save_path": "text_encoders/t5",
|
||||||
"description": "t5xxl Text Encoder GGUF model. (float 32)",
|
"description": "t5xxl Text Encoder GGUF model. (float 32)",
|
||||||
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
"reference": "https://huggingface.co/city96/t5-v1_1-xxl-encoder-gguf",
|
||||||
"filename": "t5-v1_1-xxl-encoder-f32.gguf",
|
"filename": "t5-v1_1-xxl-encoder-f32.gguf",
|
||||||
@@ -1721,17 +1699,6 @@
|
|||||||
"url": "https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-sketch-rank256.safetensors",
|
"url": "https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-sketch-rank256.safetensors",
|
||||||
"size": "774.5MB"
|
"size": "774.5MB"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "kohya-ss/ControlNet-LLLite: SDXL Canny Anime",
|
|
||||||
"type": "controlnet",
|
|
||||||
"base": "SDXL",
|
|
||||||
"save_path": "custom_nodes/ControlNet-LLLite-ComfyUI/models",
|
|
||||||
"description": "An extremely compactly designed controlnet model (a.k.a. ControlNet-LLLite). Note: The model structure is highly experimental and may be subject to change in the future.",
|
|
||||||
"reference": "https://huggingface.co/kohya-ss/controlnet-lllite",
|
|
||||||
"filename": "controllllite_v01032064e_sdxl_canny_anime.safetensors",
|
|
||||||
"url": "https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_canny_anime.safetensors",
|
|
||||||
"size": "46.2MB"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "SDXL-controlnet: OpenPose (v2)",
|
"name": "SDXL-controlnet: OpenPose (v2)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
@@ -2814,39 +2781,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "pfg-novel-n10.pt",
|
|
||||||
"type": "PFG",
|
|
||||||
"base": "SD1.5",
|
|
||||||
"save_path": "custom_nodes/pfg-ComfyUI/models",
|
|
||||||
"description": "Pressing 'install' directly downloads the model from the pfg-ComfyUI/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
|
||||||
"reference": "https://huggingface.co/furusu/PFG",
|
|
||||||
"filename": "pfg-novel-n10.pt",
|
|
||||||
"url": "https://huggingface.co/furusu/PFG/resolve/main/pfg-novel-n10.pt",
|
|
||||||
"size": "23.6MB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pfg-wd14-n10.pt",
|
|
||||||
"type": "PFG",
|
|
||||||
"base": "SD1.5",
|
|
||||||
"save_path": "custom_nodes/pfg-ComfyUI/models",
|
|
||||||
"description": "Pressing 'install' directly downloads the model from the pfg-ComfyUI/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
|
||||||
"reference": "https://huggingface.co/furusu/PFG",
|
|
||||||
"filename": "pfg-wd14-n10.pt",
|
|
||||||
"url": "https://huggingface.co/furusu/PFG/resolve/main/pfg-wd14-n10.pt",
|
|
||||||
"size": "31.5MB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pfg-wd15beta2-n10.pt",
|
|
||||||
"type": "PFG",
|
|
||||||
"base": "SD1.5",
|
|
||||||
"save_path": "custom_nodes/pfg-ComfyUI/models",
|
|
||||||
"description": "Pressing 'install' directly downloads the model from the pfg-ComfyUI/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
|
||||||
"reference": "https://huggingface.co/furusu/PFG",
|
|
||||||
"filename": "pfg-wd15beta2-n10.pt",
|
|
||||||
"url": "https://huggingface.co/furusu/PFG/resolve/main/pfg-wd15beta2-n10.pt",
|
|
||||||
"size": "31.5MB"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "GFPGANv1.4.pth",
|
"name": "GFPGANv1.4.pth",
|
||||||
"type": "GFPGAN",
|
"type": "GFPGAN",
|
||||||
@@ -3012,50 +2946,6 @@
|
|||||||
"url": "https://huggingface.co/InstantX/InstantID/resolve/main/ControlNetModel/diffusion_pytorch_model.safetensors",
|
"url": "https://huggingface.co/InstantX/InstantID/resolve/main/ControlNetModel/diffusion_pytorch_model.safetensors",
|
||||||
"size": "2.50GB"
|
"size": "2.50GB"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "efficient_sam_s_cpu.jit [ComfyUI-YoloWorld-EfficientSAM]",
|
|
||||||
"type": "efficient_sam",
|
|
||||||
"base": "efficient_sam",
|
|
||||||
"save_path": "custom_nodes/ComfyUI-YoloWorld-EfficientSAM",
|
|
||||||
"description": "Install efficient_sam_s_cpu.jit into ComfyUI-YoloWorld-EfficientSAM",
|
|
||||||
"reference": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/tree/main",
|
|
||||||
"filename": "efficient_sam_s_cpu.jit",
|
|
||||||
"url": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/resolve/main/efficient_sam_s_cpu.jit",
|
|
||||||
"size": "106.0MB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "efficient_sam_s_gpu.jit [ComfyUI-YoloWorld-EfficientSAM]",
|
|
||||||
"type": "efficient_sam",
|
|
||||||
"base": "efficient_sam",
|
|
||||||
"save_path": "custom_nodes/ComfyUI-YoloWorld-EfficientSAM",
|
|
||||||
"description": "Install efficient_sam_s_gpu.jit into ComfyUI-YoloWorld-EfficientSAM",
|
|
||||||
"reference": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/tree/main",
|
|
||||||
"filename": "efficient_sam_s_gpu.jit",
|
|
||||||
"url": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/resolve/main/efficient_sam_s_gpu.jit",
|
|
||||||
"size": "106.0MB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shape_predictor_68_face_landmarks.dat [Face Analysis]",
|
|
||||||
"type": "Shape Predictor",
|
|
||||||
"base": "DLIB",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_FaceAnalysis/dlib",
|
|
||||||
"description": "To use the Face Analysis for ComfyUI custom node, installation of this model is needed.",
|
|
||||||
"reference": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/tree/main",
|
|
||||||
"filename": "shape_predictor_68_face_landmarks.dat",
|
|
||||||
"url": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/resolve/main/shape_predictor_68_face_landmarks.dat",
|
|
||||||
"size": "99.7MB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dlib_face_recognition_resnet_model_v1.dat [Face Analysis]",
|
|
||||||
"type": "Face Recognition",
|
|
||||||
"base": "DLIB",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_FaceAnalysis/dlib",
|
|
||||||
"description": "To use the Face Analysis for ComfyUI custom node, installation of this model is needed.",
|
|
||||||
"reference": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/tree/main",
|
|
||||||
"filename": "dlib_face_recognition_resnet_model_v1.dat",
|
|
||||||
"url": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/resolve/main/dlib_face_recognition_resnet_model_v1.dat",
|
|
||||||
"size": "22.5MB"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "InstanceDiffusion/fusers",
|
"name": "InstanceDiffusion/fusers",
|
||||||
"type": "InstanceDiffusion",
|
"type": "InstanceDiffusion",
|
||||||
@@ -3430,50 +3320,6 @@
|
|||||||
"url": "https://huggingface.co/lllyasviel/ic-light/resolve/main/iclight_sd15_fcon.safetensors",
|
"url": "https://huggingface.co/lllyasviel/ic-light/resolve/main/iclight_sd15_fcon.safetensors",
|
||||||
"size": "1.72GB"
|
"size": "1.72GB"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "ID-Animator/animator.ckpt",
|
|
||||||
"type": "ID-Animator",
|
|
||||||
"base": "SD1.5",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_ID_Animator/models",
|
|
||||||
"description": "ID-Animator checkpoint",
|
|
||||||
"reference": "https://huggingface.co/spaces/ID-Animator/ID-Animator",
|
|
||||||
"filename": "animator.ckpt",
|
|
||||||
"url": "https://huggingface.co/spaces/ID-Animator/ID-Animator/resolve/main/animator.ckpt",
|
|
||||||
"size": "247.3MB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ID-Animator/mm_sd_v15_v2.ckpt",
|
|
||||||
"type": "ID-Animator",
|
|
||||||
"base": "SD1.5",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_ID_Animator/models/animatediff_models",
|
|
||||||
"description": "AnimateDiff checkpoint for ID-Animator",
|
|
||||||
"reference": "https://huggingface.co/spaces/ID-Animator/ID-Animator",
|
|
||||||
"filename": "mm_sd_v15_v2.ckpt",
|
|
||||||
"url": "https://huggingface.co/spaces/ID-Animator/ID-Animator/resolve/main/mm_sd_v15_v2.ckpt",
|
|
||||||
"size": "1.82GB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ID-Animator/image_encoder",
|
|
||||||
"type": "ID-Animator",
|
|
||||||
"base": "SD1.5",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_ID_Animator/models/image_encoder",
|
|
||||||
"description": "CLIP Image encoder for ID-Animator",
|
|
||||||
"reference": "https://huggingface.co/spaces/ID-Animator/ID-Animator",
|
|
||||||
"filename": "model.safetensors",
|
|
||||||
"url": "https://huggingface.co/spaces/ID-Animator/ID-Animator/resolve/main/image_encoder/model.safetensors",
|
|
||||||
"size": "2.53GB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "TencentARC/CustomNet",
|
|
||||||
"type": "CustomNet",
|
|
||||||
"base": "CustomNet",
|
|
||||||
"save_path": "custom_nodes/ComfyUI_CustomNet/pretrain",
|
|
||||||
"description": "CustomNet pretrained model for ComfyUI_CustomNet",
|
|
||||||
"reference": "https://huggingface.co/TencentARC/CustomNet/tree/main",
|
|
||||||
"filename": "customnet_v1.pt",
|
|
||||||
"url": "https://huggingface.co/TencentARC/CustomNet/resolve/main/customnet_v1.pt",
|
|
||||||
"size": "5.71GB"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic v2 (fp16)",
|
"name": "TTPlanet/TTPLanet_SDXL_Controlnet_Tile_Realistic v2 (fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
@@ -3562,17 +3408,6 @@
|
|||||||
"url": "https://huggingface.co/ViperYX/RGT/resolve/main/RGT_S/RGT_S_x4.pth",
|
"url": "https://huggingface.co/ViperYX/RGT/resolve/main/RGT_S/RGT_S_x4.pth",
|
||||||
"size": "136.0MB"
|
"size": "136.0MB"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Doubiiu/ToonCrafter model checkpoint",
|
|
||||||
"type": "checkpoint",
|
|
||||||
"base": "ToonCrafter",
|
|
||||||
"save_path": "custom_nodes/ComfyUI-ToonCrafter/ToonCrafter/checkpoints/tooncrafter_512_interp_v1",
|
|
||||||
"description": "ToonCrafter checkpoint model for ComfyUI-ToonCrafter",
|
|
||||||
"reference": "https://huggingface.co/Doubiiu/ToonCrafter/tree/main",
|
|
||||||
"filename": "model.ckpt",
|
|
||||||
"url": "https://huggingface.co/Doubiiu/ToonCrafter/resolve/main/model.ckpt",
|
|
||||||
"size": "10.5GB"
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "InstantX/FLUX.1-dev Controlnet (Union)",
|
"name": "InstantX/FLUX.1-dev Controlnet (Union)",
|
||||||
@@ -4465,23 +4300,11 @@
|
|||||||
"size": "12.7GB"
|
"size": "12.7GB"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
"name": "BAAI/SegGPT",
|
|
||||||
"type": "SegGPT",
|
|
||||||
"base": "SegGPT",
|
|
||||||
"save_path": "custom_nodes/comfyui-SegGPT",
|
|
||||||
"description": "SegGPT",
|
|
||||||
"reference": "https://huggingface.co/BAAI/SegGPT",
|
|
||||||
"filename": "seggpt_vit_large.pth",
|
|
||||||
"url": "https://huggingface.co/BAAI/SegGPT/resolve/main/seggpt_vit_large.pth",
|
|
||||||
"size": "1.48GB"
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "clip",
|
"base": "clip",
|
||||||
"save_path": "clip/long_clip",
|
"save_path": "text_encoders/long_clip",
|
||||||
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
||||||
"reference": "https://huggingface.co/zer0int",
|
"reference": "https://huggingface.co/zer0int",
|
||||||
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors",
|
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors",
|
||||||
@@ -4492,7 +4315,7 @@
|
|||||||
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "clip",
|
"base": "clip",
|
||||||
"save_path": "clip/long_clip",
|
"save_path": "text_encoders/long_clip",
|
||||||
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
||||||
"reference": "https://huggingface.co/zer0int",
|
"reference": "https://huggingface.co/zer0int",
|
||||||
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-TE-only-HF.safetensors",
|
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-TE-only-HF.safetensors",
|
||||||
@@ -4793,6 +4616,75 @@
|
|||||||
"filename": "ip_adapter.safetensors",
|
"filename": "ip_adapter.safetensors",
|
||||||
"url": "https://huggingface.co/XLabs-AI/flux-ip-adapter/resolve/main/ip_adapter.safetensors",
|
"url": "https://huggingface.co/XLabs-AI/flux-ip-adapter/resolve/main/ip_adapter.safetensors",
|
||||||
"size": "982MB"
|
"size": "982MB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "efficient_sam_s_cpu.jit [ComfyUI-YoloWorld-EfficientSAM]",
|
||||||
|
"type": "efficient_sam",
|
||||||
|
"base": "efficient_sam",
|
||||||
|
"save_path": "yolo_world",
|
||||||
|
"description": "Install efficient_sam_s_cpu.jit into ComfyUI-YoloWorld-EfficientSAM",
|
||||||
|
"reference": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/tree/main",
|
||||||
|
"filename": "efficient_sam_s_cpu.jit",
|
||||||
|
"url": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/resolve/main/efficient_sam_s_cpu.jit",
|
||||||
|
"size": "106.0MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "efficient_sam_s_gpu.jit [ComfyUI-YoloWorld-EfficientSAM]",
|
||||||
|
"type": "efficient_sam",
|
||||||
|
"base": "efficient_sam",
|
||||||
|
"save_path": "yolo_world",
|
||||||
|
"description": "Install efficient_sam_s_gpu.jit into ComfyUI-YoloWorld-EfficientSAM",
|
||||||
|
"reference": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/tree/main",
|
||||||
|
"filename": "efficient_sam_s_gpu.jit",
|
||||||
|
"url": "https://huggingface.co/camenduru/YoloWorld-EfficientSAM/resolve/main/efficient_sam_s_gpu.jit",
|
||||||
|
"size": "106.0MB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "TencentARC/CustomNet V1",
|
||||||
|
"type": "CustomNet",
|
||||||
|
"base": "CustomNet",
|
||||||
|
"save_path": "checkpoints/customnet",
|
||||||
|
"description": "CustomNet pretrained model for ComfyUI_CustomNet",
|
||||||
|
"reference": "https://huggingface.co/TencentARC/CustomNet/tree/main",
|
||||||
|
"filename": "customnet_v1.pt",
|
||||||
|
"url": "https://huggingface.co/TencentARC/CustomNet/resolve/main/customnet_v1.pt",
|
||||||
|
"size": "5.71GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "TencentARC/CustomNet Inpaint V1",
|
||||||
|
"type": "CustomNet",
|
||||||
|
"base": "CustomNet",
|
||||||
|
"save_path": "checkpoints/customnet",
|
||||||
|
"description": "CustomNet Inpaint pretrained model for ComfyUI_CustomNet",
|
||||||
|
"reference": "https://huggingface.co/TencentARC/CustomNet/tree/main",
|
||||||
|
"filename": "customnet_inpaint_v1.pt",
|
||||||
|
"url": "https://huggingface.co/TencentARC/CustomNet/resolve/main/customnet_inpaint_v1.pt",
|
||||||
|
"size": "5.71GB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "deepseek-ai/Janus-Pro-1B",
|
||||||
|
"type": "Janus-Pro",
|
||||||
|
"base": "Janus-Pro",
|
||||||
|
"save_path": "Janus-Pro",
|
||||||
|
"description": "[SNAPSHOT] Janus-Pro-1B model.[w/You cannot download this item on ComfyUI-Manager versions below V3.18]",
|
||||||
|
"reference": "https://huggingface.co/deepseek-ai/Janus-Pro-1B",
|
||||||
|
"filename": "<huggingface>",
|
||||||
|
"url": "deepseek-ai/Janus-Pro-1B",
|
||||||
|
"size": "7.8GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "deepseek-ai/Janus-Pro-7B",
|
||||||
|
"type": "Janus-Pro",
|
||||||
|
"base": "Janus-Pro",
|
||||||
|
"save_path": "Janus-Pro",
|
||||||
|
"description": "[SNAPSHOT] Janus-Pro-7B model.[w/You cannot download this item on ComfyUI-Manager versions below V3.18]",
|
||||||
|
"reference": "https://huggingface.co/deepseek-ai/Janus-Pro-7B",
|
||||||
|
"filename": "<huggingface>",
|
||||||
|
"url": "deepseek-ai/Janus-Pro-7B",
|
||||||
|
"size": "14.85GB"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,268 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "rishipandey125",
|
||||||
|
"title": "ComfyUI-FramePacking [WIP]",
|
||||||
|
"reference": "https://github.com/rishipandey125/ComfyUI-FramePacking",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/rishipandey125/ComfyUI-FramePacking"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Add Grid Boundaries, Pack Frames, Unpack Frames, Resize Frame"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Northerner1",
|
||||||
|
"title": "ComfyUI_North_Noise [WIP]",
|
||||||
|
"reference": "https://github.com/Northerner1/ComfyUI_North_Noise",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Northerner1/ComfyUI_North_Noise"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Unsampler"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "kimara-ai",
|
||||||
|
"title": "ComfyUI-Kimara-AI-Image-From-URL [WIP]",
|
||||||
|
"reference": "https://github.com/kimara-ai/ComfyUI-Kimara-AI-Image-From-URL",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/kimara-ai/ComfyUI-Kimara-AI-Image-From-URL"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Load image from URL and downscale to desired megapixels. Set megapixels to 0 for no downscaling."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "tc8M4lF3s88",
|
||||||
|
"title": "comfy-tif-support",
|
||||||
|
"reference": "https://github.com/M4lF3s/comfy-tif-support",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/M4lF3s/comfy-tif-support"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Load TIFF"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "greengerong",
|
||||||
|
"title": "ComfyUI-Lumina-Video [WIP]",
|
||||||
|
"reference": "https://github.com/greengerong/ComfyUI-Lumina-Video",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/greengerong/ComfyUI-Lumina-Video"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a video generation plugin implementation for ComfyUI based on the Lumina Video model."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "tc888",
|
||||||
|
"title": "ComfyUI_Save_Flux_Image",
|
||||||
|
"reference": "https://github.com/tc888/ComfyUI_Save_Flux_Image",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/tc888/ComfyUI_Save_Flux_Image"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Customized version of comfyui-image-save tailored for saving Flux images"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "var1ableX",
|
||||||
|
"title": "ComfyUI_Accessories",
|
||||||
|
"reference": "https://github.com/var1ableX/ComfyUI_Accessories",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/var1ableX/ComfyUI_Accessories"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Get Mask Dimensions, Get Random Dimensions, Is Mask Empty/Image, Any Cast, Make List From Text"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "xinyiSS",
|
||||||
|
"title": "CombineMasksNode",
|
||||||
|
"reference": "https://github.com/xinyiSS/CombineMasksNode",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/xinyiSS/CombineMasksNode"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Combine Masks Node"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "osuiso-depot",
|
||||||
|
"title": "comfyui-keshigom_custom",
|
||||||
|
"reference": "https://github.com/osuiso-depot/comfyui-keshigom_custom",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/osuiso-depot/comfyui-keshigom_custom"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: RegexpChopper, FLIP-W/H Selector, FLIP-W/H SelectorConst, TextFind, ckpt_Loader_Simple, True-or-False, myStringNode"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "LucipherDev",
|
||||||
|
"title": "ComfyUI-Sentinel [WIP]",
|
||||||
|
"reference": "https://github.com/LucipherDev/ComfyUI-Sentinel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-Sentinel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Extension for Advanced Security. Implements login, multi-user registration, IP filtering, and user-specific input/output directories.[w/WARN:While ComfyUI Sentinel enhances security for ComfyUI, it does not guarantee absolute protection. Security is about risk mitigation, not elimination. Users are responsible for implementing their own security measures.]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "threadedblue",
|
||||||
|
"title": "MLXnodes [WIP]",
|
||||||
|
"reference": "https://github.com/threadedblue/MLXnodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/threadedblue/MLXnodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A port of MLX Examples to ComfyUI custom_nodes. These are intended to run on a macOS M1.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jschoormans",
|
||||||
|
"title": "Comfy-InterestingPixels [WIP]",
|
||||||
|
"reference": "https://github.com/jschoormans/Comfy-InterestingPixels",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jschoormans/Comfy-InterestingPixels"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Shareable Image Slider, Random Palette\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jschoormans",
|
||||||
|
"title": "ComfyUI-TexturePacker [WIP]",
|
||||||
|
"reference": "https://github.com/kijai/ComfyUI-TexturePacker",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jschoormans/Comfy-InterestingPixels"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI node to use PyTexturePacker\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "lum3on",
|
||||||
|
"title": "comfyui_LLM_Polymath [WIP]",
|
||||||
|
"reference": "https://github.com/lum3on/comfyui_LLM_Polymath",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/lum3on/comfyui_LLM_Polymath"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "An advanced chat node, that integrates large language models to automate data processes and enhance prompt responses through real-time web search and image handling. It supports both OpenAI's GPT-like models and a local Ollama API. Custom node finder and smart assistant tools provide tailored workflow recommendations for efficient integration. Additionally, the node dynamically augments prompts and offers flexible output compression options.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "MickeyJ",
|
||||||
|
"title": "ComfyUI_mickster_nodes [WIP]",
|
||||||
|
"reference": "https://github.com/MickeyJ/ComfyUI_mickster_nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/MickeyJ/ComfyUI_mickster_nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A collection of custom nodes for ComfyUI, focusing on image handling and LoRA training."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "thedivergentai",
|
||||||
|
"title": "Divergent Nodes [WIP]",
|
||||||
|
"reference": "https://github.com/thedivergentai/divergent_nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/thedivergentai/divergent_nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node for counting CLIP tokens in text input."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gold24park",
|
||||||
|
"title": "loki-comfyui-node",
|
||||||
|
"reference": "https://github.com/gold24park/loki-comfyui-node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gold24park/loki-comfyui-node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Get Image Luminance, Get Dominant Color, Overlay Text"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hayden-fr",
|
||||||
|
"title": "ComfyUI-Image-Browsing [USAFE]",
|
||||||
|
"id": "image-browsing",
|
||||||
|
"reference": "https://github.com/hayden-fr/ComfyUI-Image-Browsing",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hayden-fr/ComfyUI-Image-Browsing"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Image Browsing: browsing, download and delete."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "molbal",
|
||||||
|
"title": "comfy-url-fetcher [WIP]",
|
||||||
|
"reference": "https://github.com/molbal/comfy-url-fetcher",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/molbal/comfy-url-fetcher"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Fetches URLs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "myAiLemon",
|
||||||
|
"title": "MagicAutomaticPicture [WIP]",
|
||||||
|
"reference": "https://github.com/myAiLemon/MagicAutomaticPicture",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/myAiLemon/MagicAutomaticPicture"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A comfyui node package that can generate pictures and automatically save positive prompts and eliminate unwanted prompts"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "neverbiasu",
|
||||||
|
"title": "ComfyUI_Output_as_Input",
|
||||||
|
"reference": "https://github.com/a-und-b/ComfyUI_Output_as_Input",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/a-und-b/ComfyUI_Output_as_Input"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a simple custom ComfyUI node that allows you to easily use recent output images as input in your workflows. It does not allow image uploads on purpose and does not require any additional dependencies.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "neverbiasu",
|
||||||
|
"title": "ComfyUI-DeepSeek",
|
||||||
|
"reference": "https://github.com/neverbiasu/ComfyUI-DeepSeek",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/neverbiasu/ComfyUI-DeepSeek"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: DeepSeek Caller"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Krish-701",
|
||||||
|
"title": "RK_Comfyui",
|
||||||
|
"reference": "https://github.com/Krish-701/RK_Comfyui",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Krish-701/RK_Comfyui"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: RK Excel File State Looper, RK Accumulate Text, RK Advanced Script Finder, RK CSV File State Looper, RK Read Excel Row, RK Sequential Image Viewer, RK Concatenate Text, RK Write Text, RK Save Image, RK Seed Loop"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mikebilly",
|
||||||
|
"title": "transparent-background-comfyui",
|
||||||
|
"reference": "https://github.com/mikebilly/Transparent-background-comfyUI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/mikebilly/Transparent-background-comfyUI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Transparentbackground RemBg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "UD1sto",
|
||||||
|
"title": "plugin-utils-nodes",
|
||||||
|
"reference": "https://github.com/UD1sto/plugin-utils-nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/UD1sto/plugin-utils-nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Compare Images (SimHash), Image Selector, Temporal Consistency, Update Image Reference, Frame Blend."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Kayarte",
|
||||||
|
"title": "Time Series Nodes for ComfyUI [Experimental]",
|
||||||
|
"reference": "https://github.com/Kayarte/Time-Series-Nodes-for-ComfyUI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Kayarte/Time-Series-Nodes-for-ComfyUI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Basic nodes for time series analysis in ComfyUI. Currently in early development."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "HuangYuChuh",
|
"author": "HuangYuChuh",
|
||||||
"title": "ComfyUI-DeepSeek_Toolkit [WIP]",
|
"title": "ComfyUI-DeepSeek_Toolkit [WIP]",
|
||||||
@@ -89,7 +351,7 @@
|
|||||||
"https://github.com/7BEII/Comfyui_PDuse"
|
"https://github.com/7BEII/Comfyui_PDuse"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES:PD_groupfontsize unnify, PD_grownumber-JSON, PD_add or delete words, PD_Image Crop Location, PD_Image centerCrop, PD_GetImageSize\nNOTE: The files in the repo are not organized."
|
"description": "NODES: PD_json_group_fontsize, PD_Incremental_JSON, PD_removeword, PD_Image Crop Location, PD_ImageConcanate, PD_FileName_refixer\nNOTE: The files in the repo are not organized."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "RLW-Chars",
|
"author": "RLW-Chars",
|
||||||
@@ -149,7 +411,7 @@
|
|||||||
"https://github.com/yanhuifair/comfyui-deepseek"
|
"https://github.com/yanhuifair/comfyui-deepseek"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Implement deepseek API call [a/https://api-docs.deepseek.com/](Implement deepseek API call https://api-docs.deepseek.com/)\nNOTE: The files in the repo are not organized."
|
"description": "nodes for deepseek api\nNOTE: The files in the repo are not organized."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "807502278",
|
"author": "807502278",
|
||||||
@@ -171,16 +433,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: Face Crop, [w/A pack of custom nodes used in my projects. Not intended to be used by other persons as the usage is not documented. But if something interests you in this repository, go for it !]"
|
"description": "NODES: Face Crop, [w/A pack of custom nodes used in my projects. Not intended to be used by other persons as the usage is not documented. But if something interests you in this repository, go for it !]"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "zmwv823",
|
|
||||||
"title": "ComfyUI-VideoDiffusion",
|
|
||||||
"reference": "https://github.com/zmwv823/ComfyUI-VideoDiffusion",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/zmwv823/ComfyUI-VideoDiffusion"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "[a/LatentSync](https://github.com/bytedance/LatentSync) and [a/Sonic](https://github.com/jixiaozhong/Sonic). [w/Just for study purpose. It's not for directly use, u should know how to fix issues.]"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "KihongK",
|
"author": "KihongK",
|
||||||
"title": "ComfyUI-RoysNodes [WIP]",
|
"title": "ComfyUI-RoysNodes [WIP]",
|
||||||
@@ -529,7 +781,7 @@
|
|||||||
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit"
|
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "for now: just custom node(s) to fetch tags from a given danbooru (soon e621 too) post link\ncurrently only supports danbooru-style urls + api response formats\nthis repo is a rewrite of: [a/https://github.com/yffyhk/comfyui_auto_danbooru](https://github.com/yffyhk/comfyui_auto_danbooru)"
|
"description": "WIP. Nodes: Fetch e621/danbooru image and/or tags etc from a given URL; Get the Wiki entry for a tag through a button press."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "Grey3016",
|
"author": "Grey3016",
|
||||||
@@ -791,7 +1043,7 @@
|
|||||||
"https://github.com/jonnydolake/ComfyUI-AIR-Nodes"
|
"https://github.com/jonnydolake/ComfyUI-AIR-Nodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: String List To Prompt Schedule, Force Minimum Batch Size, Target Location (Crop), Target Location (Paste)"
|
"description": "NODES: String List To Prompt Schedule, Force Minimum Batch Size, Target Location (Crop), Target Location (Paste), Image Composite Chained, Match Image Count To Mask Count, Random Character Prompts, Parallax Test, Easy Parallax, Parallax GPU Test"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "watarika",
|
"author": "watarika",
|
||||||
@@ -1328,16 +1580,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES:Mask Size Calculator (MagicAI), Universal Mask Converter (MagicAI), Python Execution (MagicAI), Extract JSON From Text Node(MagicAI)\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
"description": "NODES:Mask Size Calculator (MagicAI), Universal Mask Converter (MagicAI), Python Execution (MagicAI), Extract JSON From Text Node(MagicAI)\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "T8star1984",
|
|
||||||
"title": "comfyui-purgevram",
|
|
||||||
"reference": "https://github.com/T8star1984/comfyui-purgevram",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/T8star1984/comfyui-purgevram"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "NODES:PurgeVRAM.\nCan be added after any node to clean up vram and memory"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Laser-one",
|
"author": "Laser-one",
|
||||||
"title": "ComfyUI-align-pose",
|
"title": "ComfyUI-align-pose",
|
||||||
@@ -1546,7 +1788,7 @@
|
|||||||
"https://github.com/rouxianmantou/comfyui-rxmt-nodes"
|
"https://github.com/rouxianmantou/comfyui-rxmt-nodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES:Check Value Type"
|
"description": "NODES:Check Value Type, Why Prompt Text"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "SirVeggie",
|
"author": "SirVeggie",
|
||||||
@@ -1930,16 +2172,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI-OpenAINode is a user-friendly node that serves as an interface to the OpenAI Models.[w/Repo name conflict with Electrofried/ComfyUI-OpenAINode]"
|
"description": "ComfyUI-OpenAINode is a user-friendly node that serves as an interface to the OpenAI Models.[w/Repo name conflict with Electrofried/ComfyUI-OpenAINode]"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "hgabha",
|
|
||||||
"title": "WWAA-CustomNodes",
|
|
||||||
"reference": "https://github.com/hgabha/WWAA-CustomNodes",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/hgabha/WWAA-CustomNodes"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Custom Nodes for ComfyUI made by the team at [a/WeirdWonderfulAI.Art](https://weirdwonderfulai.art/). Line Count, Join String, Dither Image, Image Batch Loader"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "IgPoly",
|
"author": "IgPoly",
|
||||||
"title": "ComfyUI-igTools",
|
"title": "ComfyUI-igTools",
|
||||||
|
|||||||
@@ -164,13 +164,12 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/7BEII/Comfyui_PDuse": [
|
"https://github.com/7BEII/Comfyui_PDuse": [
|
||||||
[
|
[
|
||||||
"BatchChangeNodeColor",
|
|
||||||
"BatchJsonIncremental",
|
"BatchJsonIncremental",
|
||||||
"PD_GetImageSize",
|
"FileName_refixer",
|
||||||
|
"PD_ImageConcanate",
|
||||||
"PD_Image_Crop_Location",
|
"PD_Image_Crop_Location",
|
||||||
"PD_Image_centerCrop",
|
|
||||||
"PD_RemoveColorWords",
|
"PD_RemoveColorWords",
|
||||||
"PD_node"
|
"json_group_fontsize"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui-promptbymood [WIP]"
|
"title_aux": "comfyui-promptbymood [WIP]"
|
||||||
@@ -179,8 +178,12 @@
|
|||||||
"https://github.com/807502278/ComfyUI_TensorRT_Merge": [
|
"https://github.com/807502278/ComfyUI_TensorRT_Merge": [
|
||||||
[
|
[
|
||||||
"BiRefNet2_tensort",
|
"BiRefNet2_tensort",
|
||||||
|
"DepthAnything_Tensorrt",
|
||||||
|
"Dwpose_Tensorrt",
|
||||||
"building_tensorrt_engine",
|
"building_tensorrt_engine",
|
||||||
"load_BiRefNet2_General"
|
"load_BiRefNet2_General",
|
||||||
|
"load_DepthAnything_Tensorrt",
|
||||||
|
"load_Dwpos_Tensorrt"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI_TensorRT_Merge [WIP]"
|
"title_aux": "ComfyUI_TensorRT_Merge [WIP]"
|
||||||
@@ -620,6 +623,7 @@
|
|||||||
"DevToolsErrorRaiseNodeWithMessage",
|
"DevToolsErrorRaiseNodeWithMessage",
|
||||||
"DevToolsExperimentalNode",
|
"DevToolsExperimentalNode",
|
||||||
"DevToolsLongComboDropdown",
|
"DevToolsLongComboDropdown",
|
||||||
|
"DevToolsNodeWithBooleanInput",
|
||||||
"DevToolsNodeWithForceInput",
|
"DevToolsNodeWithForceInput",
|
||||||
"DevToolsNodeWithOnlyOptionalInput",
|
"DevToolsNodeWithOnlyOptionalInput",
|
||||||
"DevToolsNodeWithOptionalInput",
|
"DevToolsNodeWithOptionalInput",
|
||||||
@@ -628,6 +632,11 @@
|
|||||||
"DevToolsNodeWithStringInput",
|
"DevToolsNodeWithStringInput",
|
||||||
"DevToolsNodeWithUnionInput",
|
"DevToolsNodeWithUnionInput",
|
||||||
"DevToolsObjectPatchNode",
|
"DevToolsObjectPatchNode",
|
||||||
|
"DevToolsRemoteWidgetNode",
|
||||||
|
"DevToolsRemoteWidgetNodeWithControlAfterRefresh",
|
||||||
|
"DevToolsRemoteWidgetNodeWithParams",
|
||||||
|
"DevToolsRemoteWidgetNodeWithRefresh",
|
||||||
|
"DevToolsRemoteWidgetNodeWithRefreshButton",
|
||||||
"DevToolsSimpleSlider"
|
"DevToolsSimpleSlider"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -923,7 +932,10 @@
|
|||||||
[
|
[
|
||||||
"DeepSeekImageGeneration",
|
"DeepSeekImageGeneration",
|
||||||
"DeepSeekImageUnderstanding",
|
"DeepSeekImageUnderstanding",
|
||||||
"DeepSeekModelLoader"
|
"DeepSeekModelLoader",
|
||||||
|
"ImagePreprocessor",
|
||||||
|
"LLM_Loader",
|
||||||
|
"OpenAICompatibleLoader"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-DeepSeek_Toolkit [WIP]"
|
"title_aux": "ComfyUI-DeepSeek_Toolkit [WIP]"
|
||||||
@@ -931,7 +943,9 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/IfnotFr/ComfyUI-Ifnot-Pack": [
|
"https://github.com/IfnotFr/ComfyUI-Ifnot-Pack": [
|
||||||
[
|
[
|
||||||
"Face Crop"
|
"Face Crop",
|
||||||
|
"Face Crop Mouth",
|
||||||
|
"Get Beard Mask"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-Ifnot-Pack"
|
"title_aux": "ComfyUI-Ifnot-Pack"
|
||||||
@@ -980,6 +994,7 @@
|
|||||||
"CombineVideos",
|
"CombineVideos",
|
||||||
"ImAppendFreeChatAction",
|
"ImAppendFreeChatAction",
|
||||||
"ImAppendImageActionNode",
|
"ImAppendImageActionNode",
|
||||||
|
"ImAppendNodeHub",
|
||||||
"ImAppendQuickbackNode",
|
"ImAppendQuickbackNode",
|
||||||
"ImAppendQuickbackVideoNode",
|
"ImAppendQuickbackVideoNode",
|
||||||
"ImAppendVideoNode",
|
"ImAppendVideoNode",
|
||||||
@@ -989,6 +1004,7 @@
|
|||||||
"ImNodeTitleOverride",
|
"ImNodeTitleOverride",
|
||||||
"ImSetActionKeywordMapping",
|
"ImSetActionKeywordMapping",
|
||||||
"MergeNode",
|
"MergeNode",
|
||||||
|
"MuteNode",
|
||||||
"NewNode",
|
"NewNode",
|
||||||
"Node2String",
|
"Node2String",
|
||||||
"OllamaChat",
|
"OllamaChat",
|
||||||
@@ -1001,6 +1017,7 @@
|
|||||||
"TurnOnOffNodeOnEnter",
|
"TurnOnOffNodeOnEnter",
|
||||||
"batchNodes",
|
"batchNodes",
|
||||||
"grepNodeByText",
|
"grepNodeByText",
|
||||||
|
"imageList",
|
||||||
"mergeEntityAndPointer",
|
"mergeEntityAndPointer",
|
||||||
"redirectToNode"
|
"redirectToNode"
|
||||||
],
|
],
|
||||||
@@ -1047,6 +1064,16 @@
|
|||||||
"title_aux": "ComfyUI-PNG2SVG2PNG"
|
"title_aux": "ComfyUI-PNG2SVG2PNG"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Kayarte/Time-Series-Nodes-for-ComfyUI": [
|
||||||
|
[
|
||||||
|
"DomainTimeSeriesPrep",
|
||||||
|
"TimeSeriesLoader",
|
||||||
|
"TimeSeriesPredictor"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Time Series Nodes for ComfyUI [Experimental]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/KihongK/comfyui-roysnodes": [
|
"https://github.com/KihongK/comfyui-roysnodes": [
|
||||||
[
|
[
|
||||||
"CLIPMultiTextEncode",
|
"CLIPMultiTextEncode",
|
||||||
@@ -1081,6 +1108,27 @@
|
|||||||
"title_aux": "ComfyUI Production Nodes Pack [WIP]"
|
"title_aux": "ComfyUI Production Nodes Pack [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Krish-701/RK_Comfyui": [
|
||||||
|
[
|
||||||
|
"RK_Accumulate_Text_Multiline",
|
||||||
|
"RK_Accumulate_Text_Multiline_Numbered",
|
||||||
|
"RK_Advanced_Script_Finder",
|
||||||
|
"RK_CSV_File_State_Looper_v01",
|
||||||
|
"RK_CSV_File_State_Looper_v02",
|
||||||
|
"RK_Calc",
|
||||||
|
"RK_Concatenate_Text",
|
||||||
|
"RK_Excel_File_State_Looper",
|
||||||
|
"RK_ImageViewer",
|
||||||
|
"RK_Read_Excel_Row",
|
||||||
|
"RK_Write_Text",
|
||||||
|
"RK_seed",
|
||||||
|
"rk_save_image",
|
||||||
|
"rk_save_image_v01"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "RK_Comfyui"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/LZpenguin/ComfyUI-Text": [
|
"https://github.com/LZpenguin/ComfyUI-Text": [
|
||||||
[
|
[
|
||||||
"Add_text_by_mask"
|
"Add_text_by_mask"
|
||||||
@@ -1205,6 +1253,14 @@
|
|||||||
"title_aux": "ComfyUI Nodes for Inference.Core"
|
"title_aux": "ComfyUI Nodes for Inference.Core"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/M4lF3s/comfy-tif-support": [
|
||||||
|
[
|
||||||
|
"Load TIFF"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfy-tif-support"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Matrix-King-Studio/ComfyUI-MoviePy": [
|
"https://github.com/Matrix-King-Studio/ComfyUI-MoviePy": [
|
||||||
[
|
[
|
||||||
"AudioDurationNode",
|
"AudioDurationNode",
|
||||||
@@ -1227,6 +1283,15 @@
|
|||||||
"title_aux": "ComfyUI-MS_Tools [WIP]"
|
"title_aux": "ComfyUI-MS_Tools [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/MickeyJ/ComfyUI_mickster_nodes": [
|
||||||
|
[
|
||||||
|
"Image Size Scaled",
|
||||||
|
"ImageSwitchSelect"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_mickster_nodes [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/MrAdamBlack/CheckProgress": [
|
"https://github.com/MrAdamBlack/CheckProgress": [
|
||||||
[
|
[
|
||||||
"CHECK_PROGRESS"
|
"CHECK_PROGRESS"
|
||||||
@@ -1251,6 +1316,14 @@
|
|||||||
"title_aux": "ComfyUI-blockswap"
|
"title_aux": "ComfyUI-blockswap"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Northerner1/ComfyUI_North_Noise": [
|
||||||
|
[
|
||||||
|
"North_Unsampler"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_North_Noise [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/PATATAJEC/Patatajec-Nodes": [
|
"https://github.com/PATATAJEC/Patatajec-Nodes": [
|
||||||
[
|
[
|
||||||
"HyvidSwitcher",
|
"HyvidSwitcher",
|
||||||
@@ -1405,6 +1478,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
||||||
[
|
[
|
||||||
|
"ALL_Model_UnLoader(SEEDV)",
|
||||||
"AdvancedScript",
|
"AdvancedScript",
|
||||||
"CheckpointLoaderSimpleShared //SeedV",
|
"CheckpointLoaderSimpleShared //SeedV",
|
||||||
"ControlNetLoaderAdvancedShared",
|
"ControlNetLoaderAdvancedShared",
|
||||||
@@ -1434,6 +1508,7 @@
|
|||||||
"https://github.com/Shinsplat/ComfyUI-Shinsplat": [
|
"https://github.com/Shinsplat/ComfyUI-Shinsplat": [
|
||||||
[
|
[
|
||||||
"Clip Text Encode (Shinsplat)",
|
"Clip Text Encode (Shinsplat)",
|
||||||
|
"Clip Text Encode ALT (Shinsplat)",
|
||||||
"Clip Text Encode SD3 (Shinsplat)",
|
"Clip Text Encode SD3 (Shinsplat)",
|
||||||
"Clip Text Encode SDXL (Shinsplat)",
|
"Clip Text Encode SDXL (Shinsplat)",
|
||||||
"Clip Text Encode T5 (Shinsplat)",
|
"Clip Text Encode T5 (Shinsplat)",
|
||||||
@@ -1451,6 +1526,7 @@
|
|||||||
"Test Node (Shinsplat)",
|
"Test Node (Shinsplat)",
|
||||||
"Text To Tokens (Shinsplat)",
|
"Text To Tokens (Shinsplat)",
|
||||||
"Text To Tokens SD3 (Shinsplat)",
|
"Text To Tokens SD3 (Shinsplat)",
|
||||||
|
"Upscale WEBP (Shinsplat)",
|
||||||
"Variables (Shinsplat)"
|
"Variables (Shinsplat)"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -1466,7 +1542,8 @@
|
|||||||
"FreeMemoryCLIP",
|
"FreeMemoryCLIP",
|
||||||
"FreeMemoryImage",
|
"FreeMemoryImage",
|
||||||
"FreeMemoryLatent",
|
"FreeMemoryLatent",
|
||||||
"FreeMemoryModel"
|
"FreeMemoryModel",
|
||||||
|
"FreeMemoryString"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-FreeMemory"
|
"title_aux": "ComfyUI-FreeMemory"
|
||||||
@@ -1567,14 +1644,6 @@
|
|||||||
"title_aux": "Comfyui_leffa"
|
"title_aux": "Comfyui_leffa"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/T8star1984/comfyui-purgevram": [
|
|
||||||
[
|
|
||||||
"PurgeVRAM"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "comfyui-purgevram"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/TSFSean/ComfyUI-TSFNodes": [
|
"https://github.com/TSFSean/ComfyUI-TSFNodes": [
|
||||||
[
|
[
|
||||||
"GyroOSC"
|
"GyroOSC"
|
||||||
@@ -1591,6 +1660,29 @@
|
|||||||
"title_aux": "ComfyUI Instructor Ollama"
|
"title_aux": "ComfyUI Instructor Ollama"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/UD1sto/plugin-utils-nodes": [
|
||||||
|
[
|
||||||
|
"FrameBlend",
|
||||||
|
"ImageReferenceUpdate",
|
||||||
|
"ImageSelector",
|
||||||
|
"KeypointComparator",
|
||||||
|
"KeypointComparatorNode",
|
||||||
|
"KeypointsInput",
|
||||||
|
"KeypointsInputNode",
|
||||||
|
"KeypointsToPose",
|
||||||
|
"KeypointsToPoseNode",
|
||||||
|
"PoseDatabase",
|
||||||
|
"PoseDatabaseVisualizer",
|
||||||
|
"PoseDifference",
|
||||||
|
"PoseEstimator",
|
||||||
|
"PoseEstimatorNode",
|
||||||
|
"SimHashCompare",
|
||||||
|
"TemporalConsistency"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "plugin-utils-nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Video3DGenResearch/comfyui-batch-input-node": [
|
"https://github.com/Video3DGenResearch/comfyui-batch-input-node": [
|
||||||
[
|
[
|
||||||
"BatchImageAndPrompt",
|
"BatchImageAndPrompt",
|
||||||
@@ -1715,6 +1807,14 @@
|
|||||||
"title_aux": "ComfyUI-Blenderesque-Nodes [WIP]"
|
"title_aux": "ComfyUI-Blenderesque-Nodes [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/a-und-b/ComfyUI_Output_as_Input": [
|
||||||
|
[
|
||||||
|
"OutputAsInput"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_Output_as_Input"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/aiden1020/ComfyUI_Artcoder": [
|
"https://github.com/aiden1020/ComfyUI_Artcoder": [
|
||||||
[
|
[
|
||||||
"ArtCoder"
|
"ArtCoder"
|
||||||
@@ -2365,6 +2465,8 @@
|
|||||||
"ModelMergeAdd",
|
"ModelMergeAdd",
|
||||||
"ModelMergeAuraflow",
|
"ModelMergeAuraflow",
|
||||||
"ModelMergeBlocks",
|
"ModelMergeBlocks",
|
||||||
|
"ModelMergeCosmos14B",
|
||||||
|
"ModelMergeCosmos7B",
|
||||||
"ModelMergeFlux1",
|
"ModelMergeFlux1",
|
||||||
"ModelMergeLTXV",
|
"ModelMergeLTXV",
|
||||||
"ModelMergeMochiPreview",
|
"ModelMergeMochiPreview",
|
||||||
@@ -2394,6 +2496,7 @@
|
|||||||
"PolyexponentialScheduler",
|
"PolyexponentialScheduler",
|
||||||
"PorterDuffImageComposite",
|
"PorterDuffImageComposite",
|
||||||
"Preview3D",
|
"Preview3D",
|
||||||
|
"Preview3DAnimation",
|
||||||
"PreviewAudio",
|
"PreviewAudio",
|
||||||
"PreviewImage",
|
"PreviewImage",
|
||||||
"RandomNoise",
|
"RandomNoise",
|
||||||
@@ -2862,6 +2965,27 @@
|
|||||||
"title_aux": "ComfyUI-Tools-Video-Combine [WIP]"
|
"title_aux": "ComfyUI-Tools-Video-Combine [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/gold24park/loki-comfyui-node": [
|
||||||
|
[
|
||||||
|
"Base64ToImage",
|
||||||
|
"DominantColor",
|
||||||
|
"ImageLuminance",
|
||||||
|
"ImageToBase64",
|
||||||
|
"OverlayText"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "loki-comfyui-node"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/greengerong/ComfyUI-Lumina-Video": [
|
||||||
|
[
|
||||||
|
"LuminaVideoModelLoader",
|
||||||
|
"LuminaVideoSampler"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Lumina-Video [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/grimli333/ComfyUI_Grim": [
|
"https://github.com/grimli333/ComfyUI_Grim": [
|
||||||
[
|
[
|
||||||
"GenerateFileName",
|
"GenerateFileName",
|
||||||
@@ -2944,17 +3068,6 @@
|
|||||||
"title_aux": "ComfyUI AceNodes [UNSAFE]"
|
"title_aux": "ComfyUI AceNodes [UNSAFE]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/hgabha/WWAA-CustomNodes": [
|
|
||||||
[
|
|
||||||
"WWAA-BuildString",
|
|
||||||
"WWAA-LineCount",
|
|
||||||
"WWAA_DitherNode",
|
|
||||||
"WWAA_ImageLoader"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "WWAA-CustomNodes"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/horidream/ComfyUI-Horidream": [
|
"https://github.com/horidream/ComfyUI-Horidream": [
|
||||||
[
|
[
|
||||||
"PassThroughWithSound"
|
"PassThroughWithSound"
|
||||||
@@ -3273,11 +3386,16 @@
|
|||||||
[
|
[
|
||||||
"ForceMinimumBatchSize",
|
"ForceMinimumBatchSize",
|
||||||
"ImageCompositeChained",
|
"ImageCompositeChained",
|
||||||
|
"LineDetection",
|
||||||
|
"MangaPanelSegmentationNode",
|
||||||
|
"Mask_Fill_Region",
|
||||||
"MatchImageCountToMaskCount",
|
"MatchImageCountToMaskCount",
|
||||||
"ParallaxTest",
|
"ParallaxTest",
|
||||||
"RandomCharacterPrompts",
|
"RandomCharacterPrompts",
|
||||||
"TargetLocationCrop",
|
"TargetLocationCrop",
|
||||||
"TargetLocationPaste",
|
"TargetLocationPaste",
|
||||||
|
"Yolov8Detection",
|
||||||
|
"easy_parallax",
|
||||||
"string_list_to_prompt_schedule"
|
"string_list_to_prompt_schedule"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -3292,6 +3410,15 @@
|
|||||||
"title_aux": "ComfyUI_HelpfulNodes"
|
"title_aux": "ComfyUI_HelpfulNodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/jschoormans/Comfy-InterestingPixels": [
|
||||||
|
[
|
||||||
|
"Random Palette",
|
||||||
|
"Shareable Image Slider"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-TexturePacker [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/jtscmw01/ComfyUI-DiffBIR": [
|
"https://github.com/jtscmw01/ComfyUI-DiffBIR": [
|
||||||
[
|
[
|
||||||
"DiffBIR_sample",
|
"DiffBIR_sample",
|
||||||
@@ -3434,6 +3561,7 @@
|
|||||||
"Hy3DDelightImage",
|
"Hy3DDelightImage",
|
||||||
"Hy3DDiffusersSchedulerConfig",
|
"Hy3DDiffusersSchedulerConfig",
|
||||||
"Hy3DExportMesh",
|
"Hy3DExportMesh",
|
||||||
|
"Hy3DFastSimplifyMesh",
|
||||||
"Hy3DGenerateMesh",
|
"Hy3DGenerateMesh",
|
||||||
"Hy3DGetMeshPBRTextures",
|
"Hy3DGetMeshPBRTextures",
|
||||||
"Hy3DIMRemesh",
|
"Hy3DIMRemesh",
|
||||||
@@ -3442,6 +3570,7 @@
|
|||||||
"Hy3DMeshUVWrap",
|
"Hy3DMeshUVWrap",
|
||||||
"Hy3DMeshVerticeInpaintTexture",
|
"Hy3DMeshVerticeInpaintTexture",
|
||||||
"Hy3DModelLoader",
|
"Hy3DModelLoader",
|
||||||
|
"Hy3DNvdiffrastRenderer",
|
||||||
"Hy3DPostprocessMesh",
|
"Hy3DPostprocessMesh",
|
||||||
"Hy3DRenderMultiView",
|
"Hy3DRenderMultiView",
|
||||||
"Hy3DRenderMultiViewDepth",
|
"Hy3DRenderMultiViewDepth",
|
||||||
@@ -3450,6 +3579,7 @@
|
|||||||
"Hy3DSetMeshPBRAttributes",
|
"Hy3DSetMeshPBRAttributes",
|
||||||
"Hy3DSetMeshPBRTextures",
|
"Hy3DSetMeshPBRTextures",
|
||||||
"Hy3DTorchCompileSettings",
|
"Hy3DTorchCompileSettings",
|
||||||
|
"Hy3DUploadMesh",
|
||||||
"Hy3DVAEDecode"
|
"Hy3DVAEDecode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -3533,7 +3663,8 @@
|
|||||||
[
|
[
|
||||||
"GetWarpedNoiseFromVideo",
|
"GetWarpedNoiseFromVideo",
|
||||||
"GetWarpedNoiseFromVideoAnimateDiff",
|
"GetWarpedNoiseFromVideoAnimateDiff",
|
||||||
"GetWarpedNoiseFromVideoCogVideoX"
|
"GetWarpedNoiseFromVideoCogVideoX",
|
||||||
|
"GetWarpedNoiseFromVideoHunyuan"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-VideoNoiseWarp [WIP]"
|
"title_aux": "ComfyUI-VideoNoiseWarp [WIP]"
|
||||||
@@ -3548,6 +3679,14 @@
|
|||||||
"title_aux": "Advanced Watermarking Tools [WIP]"
|
"title_aux": "Advanced Watermarking Tools [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/kimara-ai/ComfyUI-Kimara-AI-Image-From-URL": [
|
||||||
|
[
|
||||||
|
"KimaraAIImageFromURL"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Kimara-AI-Image-From-URL [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/kk8bit/KayTool": [
|
"https://github.com/kk8bit/KayTool": [
|
||||||
[
|
[
|
||||||
"Abc_Math",
|
"Abc_Math",
|
||||||
@@ -3850,6 +3989,15 @@
|
|||||||
"title_aux": "SK-Nodes"
|
"title_aux": "SK-Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/lum3on/comfyui_LLM_Polymath": [
|
||||||
|
[
|
||||||
|
"polymath_chat",
|
||||||
|
"polymath_scraper"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfyui_LLM_Polymath [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/majorsauce/comfyui_indieTools": [
|
"https://github.com/majorsauce/comfyui_indieTools": [
|
||||||
[
|
[
|
||||||
"IndCutByMask",
|
"IndCutByMask",
|
||||||
@@ -3933,7 +4081,6 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/mfg637/ComfyUI-ScheduledGuider-Ext": [
|
"https://github.com/mfg637/ComfyUI-ScheduledGuider-Ext": [
|
||||||
[
|
[
|
||||||
"Add zSNR Sigma max",
|
|
||||||
"ConcatSigmas",
|
"ConcatSigmas",
|
||||||
"CosineScheduler",
|
"CosineScheduler",
|
||||||
"GaussianScheduler",
|
"GaussianScheduler",
|
||||||
@@ -3941,12 +4088,21 @@
|
|||||||
"LogNormal Scheduler",
|
"LogNormal Scheduler",
|
||||||
"OffsetSigmas",
|
"OffsetSigmas",
|
||||||
"PerpNegScheduledCFGGuider",
|
"PerpNegScheduledCFGGuider",
|
||||||
"ScheduledCFGGuider"
|
"ScheduledCFGGuider",
|
||||||
|
"SplitSigmasByValue"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-ScheduledGuider-Ext"
|
"title_aux": "ComfyUI-ScheduledGuider-Ext"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/mikebilly/Transparent-background-comfyUI": [
|
||||||
|
[
|
||||||
|
"Transparentbackground RemBg"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "transparent-background-comfyui"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/mikeymcfish/FishTools": [
|
"https://github.com/mikeymcfish/FishTools": [
|
||||||
[
|
[
|
||||||
"AnaglyphCreator",
|
"AnaglyphCreator",
|
||||||
@@ -4018,6 +4174,14 @@
|
|||||||
"title_aux": "ComfyUI-FramerComfy [WIP]"
|
"title_aux": "ComfyUI-FramerComfy [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/molbal/comfy-url-fetcher": [
|
||||||
|
[
|
||||||
|
"URL Fetcher"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfy-url-fetcher [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/monate0615/ComfyUI-Affine-Transform": [
|
"https://github.com/monate0615/ComfyUI-Affine-Transform": [
|
||||||
[
|
[
|
||||||
"AffineTransform"
|
"AffineTransform"
|
||||||
@@ -4051,15 +4215,29 @@
|
|||||||
"title_aux": "ComfyUI-Claude-I2T"
|
"title_aux": "ComfyUI-Claude-I2T"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/myAiLemon/MagicAutomaticPicture": [
|
||||||
|
[
|
||||||
|
"EditableStringNode",
|
||||||
|
"IntegratedCLIPTextEncodeWithExtract",
|
||||||
|
"MagicLatent",
|
||||||
|
"ProcessAndSave",
|
||||||
|
"StringConcat"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "MagicAutomaticPicture [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/naderzare/comfyui-inodes": [
|
"https://github.com/naderzare/comfyui-inodes": [
|
||||||
[
|
[
|
||||||
"IAzureAiApi",
|
"IAzureAiApi",
|
||||||
"ICutStrings",
|
"ICutStrings",
|
||||||
|
"IFinalizeProject",
|
||||||
"IIfElse",
|
"IIfElse",
|
||||||
"ILLMExecute",
|
"ILLMExecute",
|
||||||
"ILLMExecute2",
|
"ILLMExecute2",
|
||||||
"ILoadAzureAiApi",
|
"ILoadAzureAiApi",
|
||||||
"ILoadOllamaApi",
|
"ILoadOllamaApi",
|
||||||
|
"IMergeImages",
|
||||||
"IMultilineSplitToStrings",
|
"IMultilineSplitToStrings",
|
||||||
"IPassImage",
|
"IPassImage",
|
||||||
"IPostProcessLLMResponse",
|
"IPostProcessLLMResponse",
|
||||||
@@ -4071,6 +4249,7 @@
|
|||||||
"IStringsToFile",
|
"IStringsToFile",
|
||||||
"IStringsToString",
|
"IStringsToString",
|
||||||
"ITimesToStrings",
|
"ITimesToStrings",
|
||||||
|
"IUploadToGoogleDrive",
|
||||||
"IZipImages"
|
"IZipImages"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -4113,6 +4292,14 @@
|
|||||||
"title_aux": "ComfyUI-ControlNeXt [WIP]"
|
"title_aux": "ComfyUI-ControlNeXt [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/neverbiasu/ComfyUI-DeepSeek": [
|
||||||
|
[
|
||||||
|
"DeepSeekCaller"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-DeepSeek"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/neverbiasu/ComfyUI-StereoCrafter": [
|
"https://github.com/neverbiasu/ComfyUI-StereoCrafter": [
|
||||||
[
|
[
|
||||||
"DepthSplattingModelLoader",
|
"DepthSplattingModelLoader",
|
||||||
@@ -4181,7 +4368,9 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/nomcycle/ComfyUI_Cluster": [
|
"https://github.com/nomcycle/ComfyUI_Cluster": [
|
||||||
[
|
[
|
||||||
"FenceClusteredWorkflow"
|
"ClusterFanInImages",
|
||||||
|
"ClusterFanInLatents",
|
||||||
|
"ClusterInstanceIndex"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI_Cluster [WIP]"
|
"title_aux": "ComfyUI_Cluster [WIP]"
|
||||||
@@ -4200,6 +4389,22 @@
|
|||||||
"title_aux": "ComfyUI-oshtz-nodes [WIP]"
|
"title_aux": "ComfyUI-oshtz-nodes [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/osuiso-depot/comfyui-keshigom_custom": [
|
||||||
|
[
|
||||||
|
"KANI_Checkpoint_Loader_Simple",
|
||||||
|
"KANI_Multiplexer",
|
||||||
|
"KANI_ShowAnything",
|
||||||
|
"KANI_TextFind",
|
||||||
|
"KANI_TrueorFalse",
|
||||||
|
"RegExTextChopper",
|
||||||
|
"ResolutionSelector",
|
||||||
|
"ResolutionSelectorConst",
|
||||||
|
"StringNodeClass"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfyui-keshigom_custom"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/oyvindg/ComfyUI-TrollSuite": [
|
"https://github.com/oyvindg/ComfyUI-TrollSuite": [
|
||||||
[
|
[
|
||||||
"BinaryImageMask",
|
"BinaryImageMask",
|
||||||
@@ -4234,6 +4439,7 @@
|
|||||||
"ConditioningZeroOutCombine",
|
"ConditioningZeroOutCombine",
|
||||||
"ConvertTimestepToSigma",
|
"ConvertTimestepToSigma",
|
||||||
"DynSamplerSelect",
|
"DynSamplerSelect",
|
||||||
|
"DynamicThresholdingPost",
|
||||||
"DynamicThresholdingSimplePost",
|
"DynamicThresholdingSimplePost",
|
||||||
"EmptyLatentImageAR",
|
"EmptyLatentImageAR",
|
||||||
"FreeU2PPM",
|
"FreeU2PPM",
|
||||||
@@ -4241,6 +4447,7 @@
|
|||||||
"LatentOperationTonemapLuminance",
|
"LatentOperationTonemapLuminance",
|
||||||
"LatentToMaskBB",
|
"LatentToMaskBB",
|
||||||
"LatentToWidthHeight",
|
"LatentToWidthHeight",
|
||||||
|
"MaskCompositePPM",
|
||||||
"PPMSamplerSelect",
|
"PPMSamplerSelect",
|
||||||
"RescaleCFGPost"
|
"RescaleCFGPost"
|
||||||
],
|
],
|
||||||
@@ -4382,6 +4589,17 @@
|
|||||||
"title_aux": "ComfyUI-ODE"
|
"title_aux": "ComfyUI-ODE"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/rishipandey125/ComfyUI-FramePacking": [
|
||||||
|
[
|
||||||
|
"Add Grid Boundaries",
|
||||||
|
"Pack Frames",
|
||||||
|
"Resize Frame",
|
||||||
|
"Unpack Frames"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-FramePacking [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/risunobushi/ComfyUI_FocusMask": [
|
"https://github.com/risunobushi/ComfyUI_FocusMask": [
|
||||||
[
|
[
|
||||||
"FocusMaskExtractor",
|
"FocusMaskExtractor",
|
||||||
@@ -4401,7 +4619,8 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/rouxianmantou/comfyui-rxmt-nodes": [
|
"https://github.com/rouxianmantou/comfyui-rxmt-nodes": [
|
||||||
[
|
[
|
||||||
"CheckValueTypeNode"
|
"CheckValueTypeNode",
|
||||||
|
"WhyPromptTextNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui-rxmt-nodes"
|
"title_aux": "comfyui-rxmt-nodes"
|
||||||
@@ -4673,6 +4892,22 @@
|
|||||||
"title_aux": "ComfyUI-Rpg-Architect [WIP]"
|
"title_aux": "ComfyUI-Rpg-Architect [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/tc888/ComfyUI_Save_Flux_Image": [
|
||||||
|
[
|
||||||
|
"Cfg Literal",
|
||||||
|
"Int Literal",
|
||||||
|
"Sampler Select",
|
||||||
|
"Save Flux Image with Metadata",
|
||||||
|
"Scheduler Select",
|
||||||
|
"Seed Gen",
|
||||||
|
"String Literal",
|
||||||
|
"Unet Select",
|
||||||
|
"Width/Height Literal"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_Save_Flux_Image"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/techzuhaib/ComfyUI-CacheImageNode": [
|
"https://github.com/techzuhaib/ComfyUI-CacheImageNode": [
|
||||||
[
|
[
|
||||||
"CacheImageNode"
|
"CacheImageNode"
|
||||||
@@ -4690,6 +4925,24 @@
|
|||||||
"title_aux": "_topfun_s_nodes"
|
"title_aux": "_topfun_s_nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/thedivergentai/divergent_nodes": [
|
||||||
|
[
|
||||||
|
"CLIPTokenCounter",
|
||||||
|
"DolphinVisionNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Divergent Nodes [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/threadedblue/MLXnodes": [
|
||||||
|
[
|
||||||
|
"MLXImg2Img",
|
||||||
|
"MLXText2Image"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "MLXnodes [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/tjorbogarden/my-useful-comfyui-custom-nodes": [
|
"https://github.com/tjorbogarden/my-useful-comfyui-custom-nodes": [
|
||||||
[
|
[
|
||||||
"ImageSizer",
|
"ImageSizer",
|
||||||
@@ -4794,6 +5047,19 @@
|
|||||||
"title_aux": "ComfyUI-My-Handy-Nodes"
|
"title_aux": "ComfyUI-My-Handy-Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/var1ableX/ComfyUI_Accessories": [
|
||||||
|
[
|
||||||
|
"ACC_AnyCast",
|
||||||
|
"AccMakeListNode",
|
||||||
|
"GetMaskDimensions",
|
||||||
|
"GetRandomDimensions",
|
||||||
|
"isImageEmpty",
|
||||||
|
"isMaskEmpty"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_Accessories"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/walterFeng/ComfyUI-Image-Utils": [
|
"https://github.com/walterFeng/ComfyUI-Image-Utils": [
|
||||||
[
|
[
|
||||||
"Calculate Image Brightness",
|
"Calculate Image Brightness",
|
||||||
@@ -4895,22 +5161,32 @@
|
|||||||
"title_aux": "ComfyUI-XYNodes"
|
"title_aux": "ComfyUI-XYNodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/xinyiSS/CombineMasksNode": [
|
||||||
|
[
|
||||||
|
"CombineMasksNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "CombineMasksNode"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/yanhuifair/ComfyUI-FairLab": [
|
"https://github.com/yanhuifair/ComfyUI-FairLab": [
|
||||||
[
|
[
|
||||||
"CLIPTranslatedNode",
|
"CLIPTranslatedNode",
|
||||||
"DownloadImageNode",
|
"DownloadImageNode",
|
||||||
"FixUTF8StringNode",
|
"FixUTF8StringNode",
|
||||||
"ImageResizeNode",
|
"ImageResizeNode",
|
||||||
"ImagesToVideoNode",
|
"ImageToVideoNode",
|
||||||
"LoadImageFromFolderNode",
|
"LoadImageFromDirectoryNode",
|
||||||
"SaveImageToFolderNode",
|
"LoadImageFromURLNode",
|
||||||
"SaveImagesToFolderNode",
|
"PrintAnyNode",
|
||||||
"SaveStringToFolderNode",
|
"PrintImageNode",
|
||||||
|
"SaveImageToDirectoryNode",
|
||||||
|
"SaveStringToDirectoryNode",
|
||||||
"SequenceStringListNode",
|
"SequenceStringListNode",
|
||||||
"StringCombineNode",
|
"StringCombineNode",
|
||||||
"StringFieldNode",
|
"StringFieldNode",
|
||||||
"TranslateStringNode",
|
"TranslateStringNode",
|
||||||
"VideoToImagesNode"
|
"VideoToImageNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-FairLab"
|
"title_aux": "ComfyUI-FairLab"
|
||||||
@@ -4975,22 +5251,10 @@
|
|||||||
"title_aux": "Comfyui_image2prompt"
|
"title_aux": "Comfyui_image2prompt"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/zmwv823/ComfyUI-VideoDiffusion": [
|
|
||||||
[
|
|
||||||
"UL_LatentSyncLoader",
|
|
||||||
"UL_LatentSyncProcess",
|
|
||||||
"UL_LatentSyncSampler",
|
|
||||||
"UL_SonicLoader",
|
|
||||||
"UL_SonicProcess",
|
|
||||||
"UL_SonicSampler"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "ComfyUI-VideoDiffusion"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/zyd232/ComfyUI-zyd232-Nodes": [
|
"https://github.com/zyd232/ComfyUI-zyd232-Nodes": [
|
||||||
[
|
[
|
||||||
"zyd232 ImagesPixelsCompare"
|
"zyd232 ImagesPixelsCompare",
|
||||||
|
"zyd232_SavePreviewImages"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-zyd232-Nodes"
|
"title_aux": "ComfyUI-zyd232-Nodes"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,15 @@
|
|||||||
{
|
{
|
||||||
"custom_nodes": [
|
"custom_nodes": [
|
||||||
|
{
|
||||||
|
"author": "PramaLLC",
|
||||||
|
"title": "ComfyUI BEN - Background Erase Network",
|
||||||
|
"reference": "https://github.com/PramaLLC/BEN2_ComfyUI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/PramaLLC/BEN2_ComfyUI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Remove backgrounds from images with [a/BEN2](https://huggingface.co/PramaLLC/BEN2) in ComfyUI\nOriginal repo: [a/https://github.com/DoctorDiffusion/ComfyUI-BEN](https://github.com/DoctorDiffusion/ComfyUI-BEN)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "BlenderNeko",
|
"author": "BlenderNeko",
|
||||||
"title": "ltdrdata/ComfyUI_TiledKSampler",
|
"title": "ltdrdata/ComfyUI_TiledKSampler",
|
||||||
|
|||||||
@@ -10,7 +10,67 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "T8star1984",
|
||||||
|
"title": "comfyui-purgevram [REMOVED]",
|
||||||
|
"reference": "https://github.com/T8star1984/comfyui-purgevram",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/T8star1984/comfyui-purgevram"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES:PurgeVRAM.\nCan be added after any node to clean up vram and memory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "zmwv823",
|
||||||
|
"title": "ComfyUI-VideoDiffusion [REMOVED]",
|
||||||
|
"reference": "https://github.com/zmwv823/ComfyUI-VideoDiffusion",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/zmwv823/ComfyUI-VideoDiffusion"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "[a/LatentSync](https://github.com/bytedance/LatentSync) and [a/Sonic](https://github.com/jixiaozhong/Sonic). [w/Just for study purpose. It's not for directly use, u should know how to fix issues.]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "NyaamZ",
|
||||||
|
"title": "Get Booru Tag ExtendeD [REMOVED]",
|
||||||
|
"reference": "https://github.com/NyaamZ/ComfyUI-GetBooruTag-ED",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/NyaamZ/ComfyUI-GetBooruTag-ED"
|
||||||
|
],
|
||||||
|
"description": "Get tag from Booru site.",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "lingha",
|
||||||
|
"title": "comfyui_kj [REMOVED]",
|
||||||
|
"id": "comfyui_kj",
|
||||||
|
"reference": "https://github.com/XieChengYuan/comfyui_kj",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/XieChengYuan/comfyui_kj"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "comfyui_kj, A tool that can package workflows into projects and publish them to a WeChat Mini Program named Kaji, allowing charges to be collected from users."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "myAiLemon",
|
||||||
|
"title": "MagicGetPromptAutomatically",
|
||||||
|
"reference": "https://github.com/myAiLemon/MagicGetPromptAutomatically",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/myAiLemon/MagicGetPromptAutomatically"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A plug-in that can automatically generate pictures and save txt files in comfyui"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ryanontheinside",
|
||||||
|
"title": "ComfyUI_ScavengerHunt [REMOVED]",
|
||||||
|
"reference": "https://github.com/ryanontheinside/ComfyUI_ScavengerHunt",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ryanontheinside/ComfyUI_ScavengerHunt"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Compare Image Similarity (ResNet), Compare Image Similarity (CLIP), Compare Image Types\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "vpakarinen",
|
"author": "vpakarinen",
|
||||||
"title": "ComfyUI-GenerationTimer [REMOVED]",
|
"title": "ComfyUI-GenerationTimer [REMOVED]",
|
||||||
|
|||||||
@@ -1,3 +1,148 @@
|
|||||||
{
|
{
|
||||||
"models": []
|
"models": [
|
||||||
|
{
|
||||||
|
"name": "Inswapper-fp16 (face swap) [REMOVED]",
|
||||||
|
"type": "insightface",
|
||||||
|
"base": "inswapper",
|
||||||
|
"save_path": "insightface",
|
||||||
|
"description": "Checkpoint of the insightface swapper model\n(used by ComfyUI-FaceSwap, comfyui-reactor-node, CharacterFaceSwap,\nComfyUI roop and comfy_mtb)",
|
||||||
|
"reference": "https://github.com/facefusion/facefusion-assets",
|
||||||
|
"filename": "inswapper_128_fp16.onnx",
|
||||||
|
"url": "https://github.com/facefusion/facefusion-assets/releases/download/models/inswapper_128_fp16.onnx",
|
||||||
|
"size": "277.7MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Inswapper (face swap) [REMOVED]",
|
||||||
|
"type": "insightface",
|
||||||
|
"base": "inswapper",
|
||||||
|
"save_path": "insightface",
|
||||||
|
"description": "Checkpoint of the insightface swapper model\n(used by ComfyUI-FaceSwap, comfyui-reactor-node, CharacterFaceSwap,\nComfyUI roop and comfy_mtb)",
|
||||||
|
"reference": "https://github.com/facefusion/facefusion-assets",
|
||||||
|
"filename": "inswapper_128.onnx",
|
||||||
|
"url": "https://github.com/facefusion/facefusion-assets/releases/download/models/inswapper_128.onnx",
|
||||||
|
"size": "555.3MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pfg-novel-n10.pt",
|
||||||
|
"type": "PFG",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "custom_nodes/pfg-ComfyUI/models",
|
||||||
|
"description": "Pressing 'install' directly downloads the model from the pfg-ComfyUI/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
||||||
|
"reference": "https://huggingface.co/furusu/PFG",
|
||||||
|
"filename": "pfg-novel-n10.pt",
|
||||||
|
"url": "https://huggingface.co/furusu/PFG/resolve/main/pfg-novel-n10.pt",
|
||||||
|
"size": "23.6MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pfg-wd14-n10.pt",
|
||||||
|
"type": "PFG",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "custom_nodes/pfg-ComfyUI/models",
|
||||||
|
"description": "Pressing 'install' directly downloads the model from the pfg-ComfyUI/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
||||||
|
"reference": "https://huggingface.co/furusu/PFG",
|
||||||
|
"filename": "pfg-wd14-n10.pt",
|
||||||
|
"url": "https://huggingface.co/furusu/PFG/resolve/main/pfg-wd14-n10.pt",
|
||||||
|
"size": "31.5MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "pfg-wd15beta2-n10.pt",
|
||||||
|
"type": "PFG",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "custom_nodes/pfg-ComfyUI/models",
|
||||||
|
"description": "Pressing 'install' directly downloads the model from the pfg-ComfyUI/models extension node. (Note: Requires ComfyUI-Manager V0.24 or above)",
|
||||||
|
"reference": "https://huggingface.co/furusu/PFG",
|
||||||
|
"filename": "pfg-wd15beta2-n10.pt",
|
||||||
|
"url": "https://huggingface.co/furusu/PFG/resolve/main/pfg-wd15beta2-n10.pt",
|
||||||
|
"size": "31.5MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "shape_predictor_68_face_landmarks.dat [Face Analysis]",
|
||||||
|
"type": "Shape Predictor",
|
||||||
|
"base": "DLIB",
|
||||||
|
"save_path": "custom_nodes/comfyui_faceanalysis/dlib",
|
||||||
|
"description": "To use the Face Analysis for ComfyUI custom node, installation of this model is needed.",
|
||||||
|
"reference": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/tree/main",
|
||||||
|
"filename": "shape_predictor_68_face_landmarks.dat",
|
||||||
|
"url": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/resolve/main/shape_predictor_68_face_landmarks.dat",
|
||||||
|
"size": "99.7MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "dlib_face_recognition_resnet_model_v1.dat [Face Analysis]",
|
||||||
|
"type": "Face Recognition",
|
||||||
|
"base": "DLIB",
|
||||||
|
"save_path": "custom_nodes/comfyui_faceanalysis/dlib",
|
||||||
|
"description": "To use the Face Analysis for ComfyUI custom node, installation of this model is needed.",
|
||||||
|
"reference": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/tree/main",
|
||||||
|
"filename": "dlib_face_recognition_resnet_model_v1.dat",
|
||||||
|
"url": "https://huggingface.co/matt3ounstable/dlib_predictor_recognition/resolve/main/dlib_face_recognition_resnet_model_v1.dat",
|
||||||
|
"size": "22.5MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ID-Animator/animator.ckpt",
|
||||||
|
"type": "ID-Animator",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "custom_nodes/comfyui_id_animator/models",
|
||||||
|
"description": "ID-Animator checkpoint",
|
||||||
|
"reference": "https://huggingface.co/spaces/ID-Animator/ID-Animator",
|
||||||
|
"filename": "animator.ckpt",
|
||||||
|
"url": "https://huggingface.co/spaces/ID-Animator/ID-Animator/resolve/main/animator.ckpt",
|
||||||
|
"size": "247.3MB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ID-Animator/mm_sd_v15_v2.ckpt",
|
||||||
|
"type": "ID-Animator",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "custom_nodes/comfyui_id_animator/models/animatediff_models",
|
||||||
|
"description": "AnimateDiff checkpoint for ID-Animator",
|
||||||
|
"reference": "https://huggingface.co/spaces/ID-Animator/ID-Animator",
|
||||||
|
"filename": "mm_sd_v15_v2.ckpt",
|
||||||
|
"url": "https://huggingface.co/spaces/ID-Animator/ID-Animator/resolve/main/mm_sd_v15_v2.ckpt",
|
||||||
|
"size": "1.82GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ID-Animator/image_encoder",
|
||||||
|
"type": "ID-Animator",
|
||||||
|
"base": "SD1.5",
|
||||||
|
"save_path": "custom_nodes/comfyui_id_animator/models/image_encoder",
|
||||||
|
"description": "CLIP Image encoder for ID-Animator",
|
||||||
|
"reference": "https://huggingface.co/spaces/ID-Animator/ID-Animator",
|
||||||
|
"filename": "model.safetensors",
|
||||||
|
"url": "https://huggingface.co/spaces/ID-Animator/ID-Animator/resolve/main/image_encoder/model.safetensors",
|
||||||
|
"size": "2.53GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Doubiiu/ToonCrafter model checkpoint",
|
||||||
|
"type": "checkpoint",
|
||||||
|
"base": "ToonCrafter",
|
||||||
|
"save_path": "custom_nodes/comfyui-tooncrafter/ToonCrafter/checkpoints/tooncrafter_512_interp_v1",
|
||||||
|
"description": "ToonCrafter checkpoint model for ComfyUI-ToonCrafter",
|
||||||
|
"reference": "https://huggingface.co/Doubiiu/ToonCrafter/tree/main",
|
||||||
|
"filename": "model.ckpt",
|
||||||
|
"url": "https://huggingface.co/Doubiiu/ToonCrafter/resolve/main/model.ckpt",
|
||||||
|
"size": "10.5GB"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "BAAI/SegGPT",
|
||||||
|
"type": "SegGPT",
|
||||||
|
"base": "SegGPT",
|
||||||
|
"save_path": "custom_nodes/comfyui-seggpt",
|
||||||
|
"description": "SegGPT",
|
||||||
|
"reference": "https://huggingface.co/BAAI/SegGPT",
|
||||||
|
"filename": "seggpt_vit_large.pth",
|
||||||
|
"url": "https://huggingface.co/BAAI/SegGPT/resolve/main/seggpt_vit_large.pth",
|
||||||
|
"size": "1.48GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "kohya-ss/ControlNet-LLLite: SDXL Canny Anime",
|
||||||
|
"type": "controlnet",
|
||||||
|
"base": "SDXL",
|
||||||
|
"save_path": "custom_nodes/ControlNet-LLLite-ComfyUI/models",
|
||||||
|
"description": "An extremely compactly designed controlnet model (a.k.a. ControlNet-LLLite). Note: The model structure is highly experimental and may be subject to change in the future.",
|
||||||
|
"reference": "https://huggingface.co/kohya-ss/controlnet-lllite",
|
||||||
|
"filename": "controllllite_v01032064e_sdxl_canny_anime.safetensors",
|
||||||
|
"url": "https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_canny_anime.safetensors",
|
||||||
|
"size": "46.2MB"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,28 @@
|
|||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
|
{
|
||||||
|
"name": "deepseek-ai/Janus-Pro-1B",
|
||||||
|
"type": "Janus-Pro",
|
||||||
|
"base": "Janus-Pro",
|
||||||
|
"save_path": "Janus-Pro",
|
||||||
|
"description": "[SNAPSHOT] Janus-Pro-1B model.[w/You cannot download this item on ComfyUI-Manager versions below V3.18]",
|
||||||
|
"reference": "https://huggingface.co/deepseek-ai/Janus-Pro-1B",
|
||||||
|
"filename": "<huggingface>",
|
||||||
|
"url": "deepseek-ai/Janus-Pro-1B",
|
||||||
|
"size": "7.8GB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "deepseek-ai/Janus-Pro-7B",
|
||||||
|
"type": "Janus-Pro",
|
||||||
|
"base": "Janus-Pro",
|
||||||
|
"save_path": "Janus-Pro",
|
||||||
|
"description": "[SNAPSHOT] Janus-Pro-7B model.[w/You cannot download this item on ComfyUI-Manager versions below V3.18]",
|
||||||
|
"reference": "https://huggingface.co/deepseek-ai/Janus-Pro-7B",
|
||||||
|
"filename": "<huggingface>",
|
||||||
|
"url": "deepseek-ai/Janus-Pro-7B",
|
||||||
|
"size": "14.85GB"
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Leoxing/pia.ckpt",
|
"name": "Leoxing/pia.ckpt",
|
||||||
"type": "animatediff-pia",
|
"type": "animatediff-pia",
|
||||||
@@ -575,7 +598,7 @@
|
|||||||
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "clip",
|
"base": "clip",
|
||||||
"save_path": "clip/long_clip",
|
"save_path": "text_encoders/long_clip",
|
||||||
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
||||||
"reference": "https://huggingface.co/zer0int",
|
"reference": "https://huggingface.co/zer0int",
|
||||||
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors",
|
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors",
|
||||||
@@ -586,7 +609,7 @@
|
|||||||
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
"name": "ViT-L-14-TEXT-detail-improved-hiT-GmP-HF.safetensors [Long CLIP L]",
|
||||||
"type": "clip",
|
"type": "clip",
|
||||||
"base": "clip",
|
"base": "clip",
|
||||||
"save_path": "clip/long_clip",
|
"save_path": "text_encoders/long_clip",
|
||||||
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
"description": "Greatly improved TEXT + Detail (as CLIP-L for Flux.1)",
|
||||||
"reference": "https://huggingface.co/zer0int",
|
"reference": "https://huggingface.co/zer0int",
|
||||||
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-TE-only-HF.safetensors",
|
"filename": "ViT-L-14-TEXT-detail-improved-hiT-GmP-TE-only-HF.safetensors",
|
||||||
@@ -629,18 +652,6 @@
|
|||||||
"size": "1.39GB"
|
"size": "1.39GB"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
"name": "BAAI/SegGPT",
|
|
||||||
"type": "SegGPT",
|
|
||||||
"base": "SegGPT",
|
|
||||||
"save_path": "custom_nodes/comfyui-SegGPT",
|
|
||||||
"description": "SegGPT",
|
|
||||||
"reference": "https://huggingface.co/BAAI/SegGPT",
|
|
||||||
"filename": "seggpt_vit_large.pth",
|
|
||||||
"url": "https://huggingface.co/BAAI/SegGPT/resolve/main/seggpt_vit_large.pth",
|
|
||||||
"size": "1.48GB"
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "DMD2 LoRA (4steps)",
|
"name": "DMD2 LoRA (4steps)",
|
||||||
"type": "lora",
|
"type": "lora",
|
||||||
|
|||||||
@@ -20,13 +20,14 @@ import cm_global
|
|||||||
import manager_downloader
|
import manager_downloader
|
||||||
import folder_paths
|
import folder_paths
|
||||||
|
|
||||||
try:
|
import datetime
|
||||||
|
if hasattr(datetime, 'datetime'):
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
def current_timestamp():
|
def current_timestamp():
|
||||||
return datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
return datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
||||||
except:
|
else:
|
||||||
|
# NOTE: Occurs in some Mac environments.
|
||||||
import time
|
import time
|
||||||
import datetime
|
|
||||||
logging.error(f"[ComfyUI-Manager] fallback timestamp mode\n datetime module is invalid: '{datetime.__file__}'")
|
logging.error(f"[ComfyUI-Manager] fallback timestamp mode\n datetime module is invalid: '{datetime.__file__}'")
|
||||||
def current_timestamp():
|
def current_timestamp():
|
||||||
return str(time.time()).split('.')[0]
|
return str(time.time()).split('.')[0]
|
||||||
@@ -57,22 +58,6 @@ def is_import_failed_extension(name):
|
|||||||
return name in import_failed_extensions
|
return name in import_failed_extensions
|
||||||
|
|
||||||
|
|
||||||
def check_file_logging():
|
|
||||||
global enable_file_logging
|
|
||||||
try:
|
|
||||||
import configparser
|
|
||||||
config = configparser.ConfigParser()
|
|
||||||
config.read(manager_config_path)
|
|
||||||
default_conf = config['default']
|
|
||||||
|
|
||||||
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false':
|
|
||||||
enable_file_logging = False
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
check_file_logging()
|
|
||||||
|
|
||||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||||
comfy_base_path = os.environ.get('COMFYUI_FOLDERS_BASE_PATH')
|
comfy_base_path = os.environ.get('COMFYUI_FOLDERS_BASE_PATH')
|
||||||
|
|
||||||
@@ -103,6 +88,32 @@ manager_config_path = os.path.join(manager_files_path, 'config.ini')
|
|||||||
cm_cli_path = os.path.join(comfyui_manager_path, "cm-cli.py")
|
cm_cli_path = os.path.join(comfyui_manager_path, "cm-cli.py")
|
||||||
|
|
||||||
|
|
||||||
|
default_conf = {}
|
||||||
|
|
||||||
|
def read_config():
|
||||||
|
global default_conf
|
||||||
|
try:
|
||||||
|
import configparser
|
||||||
|
config = configparser.ConfigParser()
|
||||||
|
config.read(manager_config_path)
|
||||||
|
default_conf = config['default']
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def read_uv_mode():
|
||||||
|
if 'use_uv' in default_conf:
|
||||||
|
manager_util.use_uv = default_conf['use_uv'].lower() == 'true'
|
||||||
|
|
||||||
|
def check_file_logging():
|
||||||
|
global enable_file_logging
|
||||||
|
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false':
|
||||||
|
enable_file_logging = False
|
||||||
|
|
||||||
|
|
||||||
|
read_config()
|
||||||
|
read_uv_mode()
|
||||||
|
check_file_logging()
|
||||||
|
|
||||||
cm_global.pip_overrides = {'numpy': 'numpy<2', 'ultralytics': 'ultralytics==8.3.40'}
|
cm_global.pip_overrides = {'numpy': 'numpy<2', 'ultralytics': 'ultralytics==8.3.40'}
|
||||||
if os.path.exists(manager_pip_overrides_path):
|
if os.path.exists(manager_pip_overrides_path):
|
||||||
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||||
@@ -411,19 +422,20 @@ except Exception as e:
|
|||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import git # noqa: F401
|
import git # noqa: F401
|
||||||
import toml # noqa: F401
|
import toml # noqa: F401
|
||||||
|
import rich # noqa: F401
|
||||||
except ModuleNotFoundError:
|
except ModuleNotFoundError:
|
||||||
my_path = os.path.dirname(__file__)
|
my_path = os.path.dirname(__file__)
|
||||||
requirements_path = os.path.join(my_path, "requirements.txt")
|
requirements_path = os.path.join(my_path, "requirements.txt")
|
||||||
|
|
||||||
print("## ComfyUI-Manager: installing dependencies. (GitPython)")
|
print("## ComfyUI-Manager: installing dependencies. (GitPython)")
|
||||||
try:
|
try:
|
||||||
result = subprocess.check_output([sys.executable, '-s', '-m', 'pip', 'install', '-r', requirements_path])
|
result = subprocess.check_output(manager_util.make_pip_cmd(['install', '-r', requirements_path]))
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
print("## [ERROR] ComfyUI-Manager: Attempting to reinstall dependencies using an alternative method.")
|
print("## [ERROR] ComfyUI-Manager: Attempting to reinstall dependencies using an alternative method.")
|
||||||
try:
|
try:
|
||||||
result = subprocess.check_output([sys.executable, '-s', '-m', 'pip', 'install', '--user', '-r', requirements_path])
|
result = subprocess.check_output(manager_util.make_pip_cmd(['install', '--user', '-r', requirements_path]))
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
print("## [ERROR] ComfyUI-Manager: Failed to install the GitPython package in the correct Python environment. Please install it manually in the appropriate environment. (You can seek help at https://app.element.io/#/room/%23comfyui_space%3Amatrix.org)")
|
print("## [ERROR] ComfyUI-Manager: Failed to install the GitPython package in the correct Python environment. Please install it manually in the appropriate environment. (You can seek help at https://app.element.io/#/room/%23comfyui_space%3Amatrix.org)")
|
||||||
|
|
||||||
@@ -452,11 +464,6 @@ else:
|
|||||||
|
|
||||||
def read_downgrade_blacklist():
|
def read_downgrade_blacklist():
|
||||||
try:
|
try:
|
||||||
import configparser
|
|
||||||
config = configparser.ConfigParser()
|
|
||||||
config.read(manager_config_path)
|
|
||||||
default_conf = config['default']
|
|
||||||
|
|
||||||
if 'downgrade_blacklist' in default_conf:
|
if 'downgrade_blacklist' in default_conf:
|
||||||
items = default_conf['downgrade_blacklist'].split(',')
|
items = default_conf['downgrade_blacklist'].split(',')
|
||||||
items = [x.strip() for x in items if x != '']
|
items = [x.strip() for x in items if x != '']
|
||||||
@@ -471,19 +478,13 @@ read_downgrade_blacklist()
|
|||||||
|
|
||||||
def check_bypass_ssl():
|
def check_bypass_ssl():
|
||||||
try:
|
try:
|
||||||
import configparser
|
|
||||||
import ssl
|
import ssl
|
||||||
config = configparser.ConfigParser()
|
|
||||||
config.read(manager_config_path)
|
|
||||||
default_conf = config['default']
|
|
||||||
|
|
||||||
if 'bypass_ssl' in default_conf and default_conf['bypass_ssl'].lower() == 'true':
|
if 'bypass_ssl' in default_conf and default_conf['bypass_ssl'].lower() == 'true':
|
||||||
print(f"[ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see {manager_config_path})")
|
print(f"[ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see {manager_config_path})")
|
||||||
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
|
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
check_bypass_ssl()
|
check_bypass_ssl()
|
||||||
|
|
||||||
|
|
||||||
@@ -603,9 +604,9 @@ def execute_lazy_install_script(repo_path, executable):
|
|||||||
if package_name and not is_installed(package_name):
|
if package_name and not is_installed(package_name):
|
||||||
if '--index-url' in package_name:
|
if '--index-url' in package_name:
|
||||||
s = package_name.split('--index-url')
|
s = package_name.split('--index-url')
|
||||||
install_cmd = [sys.executable, "-m", "pip", "install", s[0].strip(), '--index-url', s[1].strip()]
|
install_cmd = manager_util.make_pip_cmd(["install", s[0].strip(), '--index-url', s[1].strip()])
|
||||||
else:
|
else:
|
||||||
install_cmd = [sys.executable, "-m", "pip", "install", package_name]
|
install_cmd = manager_util.make_pip_cmd(["install", package_name])
|
||||||
|
|
||||||
process_wrap(install_cmd, repo_path)
|
process_wrap(install_cmd, repo_path)
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "comfyui-manager"
|
name = "comfyui-manager"
|
||||||
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||||
version = "3.10"
|
version = "3.19"
|
||||||
license = { file = "LICENSE.txt" }
|
license = { file = "LICENSE.txt" }
|
||||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||||
|
|
||||||
|
|||||||
@@ -7,3 +7,4 @@ typer
|
|||||||
rich
|
rich
|
||||||
typing-extensions
|
typing-extensions
|
||||||
toml
|
toml
|
||||||
|
uv
|
||||||
|
|||||||
Reference in New Issue
Block a user