Compare commits
100 Commits
2.55.5
...
attach_nod
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ae2b7f338 | ||
|
|
c2ac84c3d3 | ||
|
|
fd29dc5133 | ||
|
|
aab45dff44 | ||
|
|
6fee2b8b10 | ||
|
|
9b5adfeb2c | ||
|
|
95ee037a44 | ||
|
|
3ecf3a359d | ||
|
|
8a4853948a | ||
|
|
31de8ffc3d | ||
|
|
602d04e236 | ||
|
|
a44d1fbd37 | ||
|
|
e4bb21f25c | ||
|
|
87d447f7b5 | ||
|
|
e2e1e23ab5 | ||
|
|
145410eb93 | ||
|
|
46a6afcc19 | ||
|
|
2d189c4b4b | ||
|
|
f2e4923277 | ||
|
|
222254896c | ||
|
|
7b812dee75 | ||
|
|
b8f153e4eb | ||
|
|
445affd609 | ||
|
|
20b1f013d0 | ||
|
|
7e97bb7bc2 | ||
|
|
30abab5925 | ||
|
|
af39d3e520 | ||
|
|
5d7ffd8d00 | ||
|
|
c2b986649c | ||
|
|
4d958d4e32 | ||
|
|
de4a96e471 | ||
|
|
89902ae637 | ||
|
|
dc9a9f979b | ||
|
|
82933e22e4 | ||
|
|
d2321d684d | ||
|
|
fe664bb7ab | ||
|
|
a34eabc594 | ||
|
|
85082d9608 | ||
|
|
ca1a2a2b26 | ||
|
|
e5c9c34dde | ||
|
|
5f300b8aea | ||
|
|
093097cf31 | ||
|
|
eb5b512c34 | ||
|
|
1bd64e97cc | ||
|
|
b703384f6b | ||
|
|
d968c55e48 | ||
|
|
bc4126f526 | ||
|
|
41d4ba9721 | ||
|
|
5e5e567181 | ||
|
|
a6eaba7e18 | ||
|
|
f8221b9b5d | ||
|
|
f4442972bc | ||
|
|
aa4b3d81ba | ||
|
|
cbb6432803 | ||
|
|
14afc8d998 | ||
|
|
e83e15b9fc | ||
|
|
76db17c7f8 | ||
|
|
d48c936770 | ||
|
|
527c994d43 | ||
|
|
800faf96d4 | ||
|
|
2c3a11012f | ||
|
|
95311cb225 | ||
|
|
70471b54f6 | ||
|
|
f0205c8eba | ||
|
|
1a5fa290a3 | ||
|
|
4fc50d5019 | ||
|
|
a1c90ceb52 | ||
|
|
ecda9bd34e | ||
|
|
a952009d4a | ||
|
|
6f2e1345b2 | ||
|
|
7b93c831de | ||
|
|
80e1fcd672 | ||
|
|
bff8dbee30 | ||
|
|
32c828670a | ||
|
|
ad1faee2ef | ||
|
|
005fa14254 | ||
|
|
7b60b69968 | ||
|
|
ed123750d9 | ||
|
|
bede95cd05 | ||
|
|
693a226a41 | ||
|
|
7ec2793c9a | ||
|
|
a1f7f7069f | ||
|
|
f74d8cb470 | ||
|
|
b02cb2b833 | ||
|
|
243b65961f | ||
|
|
a6d20b0865 | ||
|
|
06b79287e2 | ||
|
|
e906d27606 | ||
|
|
0968dd85aa | ||
|
|
75240a028a | ||
|
|
3335c82350 | ||
|
|
e16e72cbbd | ||
|
|
0b6f7962a4 | ||
|
|
ea3413be9b | ||
|
|
10055f578b | ||
|
|
cddd000848 | ||
|
|
cdb400d32b | ||
|
|
8e1f792cd1 | ||
|
|
f0299e07f9 | ||
|
|
b3be556837 |
23
.github/workflows/ruff.yml
vendored
Normal file
23
.github/workflows/ruff.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Python Linting
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
ruff:
|
||||
name: Run Ruff
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.x
|
||||
|
||||
- name: Install Ruff
|
||||
run: pip install ruff
|
||||
|
||||
- name: Run Ruff
|
||||
run: ruff check .
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,6 +1,8 @@
|
||||
__pycache__/
|
||||
.idea/
|
||||
.vscode/
|
||||
.history/
|
||||
*.code-workspace
|
||||
.tmp
|
||||
.cache
|
||||
config.ini
|
||||
|
||||
@@ -320,6 +320,9 @@ NODE_CLASS_MAPPINGS.update({
|
||||
* Use `aria2` as downloader
|
||||
* [howto](docs/en/use_aria2.md)
|
||||
|
||||
* If you add the item `skip_migration_check = True` to `config.ini`, it will not check whether there are nodes that can be migrated at startup.
|
||||
* This option can be used if performance issues occur in a Colab+GDrive environment.
|
||||
|
||||
## Scanner
|
||||
When you run the `scan.sh` script:
|
||||
|
||||
|
||||
@@ -5,11 +5,11 @@ cli_mode_flag = os.path.join(os.path.dirname(__file__), '.enable-cli-only-mode')
|
||||
|
||||
if not os.path.exists(cli_mode_flag):
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), "glob"))
|
||||
import manager_server
|
||||
import share_3rdparty
|
||||
import manager_server # noqa: F401
|
||||
import share_3rdparty # noqa: F401
|
||||
WEB_DIRECTORY = "js"
|
||||
else:
|
||||
print(f"\n[ComfyUI-Manager] !! cli-only-mode is enabled !!\n")
|
||||
print("\n[ComfyUI-Manager] !! cli-only-mode is enabled !!\n")
|
||||
|
||||
NODE_CLASS_MAPPINGS = {}
|
||||
__all__ = ['NODE_CLASS_MAPPINGS']
|
||||
|
||||
1
check.sh
1
check.sh
@@ -9,6 +9,7 @@ files=(
|
||||
"alter-list.json"
|
||||
"extension-node-map.json"
|
||||
"github-stats.json"
|
||||
"extras.json"
|
||||
"node_db/new/custom-node-list.json"
|
||||
"node_db/new/model-list.json"
|
||||
"node_db/new/extension-node-map.json"
|
||||
|
||||
@@ -596,6 +596,13 @@
|
||||
"files": [
|
||||
"https://github.com/city96/ComfyUI-GGUF"
|
||||
],
|
||||
"preemptions":[
|
||||
"CLIPLoaderGGUF",
|
||||
"DualCLIPLoaderGGUF",
|
||||
"TripleCLIPLoaderGGUF",
|
||||
"UnetLoaderGGUF",
|
||||
"UnetLoaderGGUFAdvanced"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "GGUF Quantization support for native ComfyUI models\nThis is currently very much WIP. These custom nodes provide support for model files stored in the GGUF format popularized by llama.cpp.\nWhile quantization wasn't feasible for regular UNET models (conv2d), transformer/DiT models such as flux seem less affected by quantization. This allows running it in much lower bits per weight variable bitrate quants on low-end GPUs."
|
||||
},
|
||||
@@ -3215,6 +3222,17 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Upgrade the Save File node: customize subfolders, file names with checkpoint names, or any sampler attribute your want! [w/NOTE: This node is a fork from @thedyze, since the [a/original repository](https://github.com/thedyze/save-image-extended-comfyui) is no longer maintained. Simply *uninstall* the original version and **REINSTALL** this one.]"
|
||||
},
|
||||
{
|
||||
"author": "audioscavenger",
|
||||
"title": "ComfyUI-Thumbnails",
|
||||
"id": "thumbnails",
|
||||
"reference": "https://github.com/audioscavenger/ComfyUI-Thumbnails",
|
||||
"files": [
|
||||
"https://github.com/audioscavenger/ComfyUI-Thumbnails"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Load Image thumbnails, delete images, browse input subfolders."
|
||||
},
|
||||
{
|
||||
"author": "SOELexicon",
|
||||
"title": "ComfyUI-LexTools",
|
||||
@@ -6916,6 +6934,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "flux lora merge.\nadaptive Merge (uses tensor norms and weight), manual Merge (uses fixed weights you specify), additive Merge (uses 100% of the first and adds a percentage of the second)"
|
||||
},
|
||||
{
|
||||
"author": "StartHua",
|
||||
"title": "Comfyui_Gemini2",
|
||||
"reference": "https://github.com/StartHua/Comfyui_Gemini2",
|
||||
"files": [
|
||||
"https://github.com/StartHua/Comfyui_Gemini2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:CXH_Gemini2_TX, CXH_Gemini2_Vision, CXH_Local_Prompt"
|
||||
},
|
||||
{
|
||||
"author": "ricklove",
|
||||
"title": "comfyui-ricklove",
|
||||
@@ -7276,6 +7304,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node for ComfyUI that enables coherent video generation while maintaining efficient memory usage, specifically optimized for heavy models like Flux."
|
||||
},
|
||||
{
|
||||
"author": "ShmuelRonen",
|
||||
"title": "ComfyUI-Gemini_Flash_2.0_Exp",
|
||||
"reference": "https://github.com/ShmuelRonen/ComfyUI-Gemini_Flash_2.0_Exp",
|
||||
"files": [
|
||||
"https://github.com/ShmuelRonen/ComfyUI-Gemini_Flash_2.0_Exp"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that integrates Google's Gemini Flash 2.0 Experimental model, enabling multimodal analysis of text, images, video frames, and audio directly within ComfyUI workflows."
|
||||
},
|
||||
{
|
||||
"author": "redhottensors",
|
||||
"title": "ComfyUI-Prediction",
|
||||
@@ -8359,7 +8397,17 @@
|
||||
"https://github.com/if-ai/ComfyUI-IF_MemoAvatar"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a ComfyUI implementation of MEMO (Memory-Guided Diffusion for Expressive Talking Video Generation), which enables the creation of expressive talking avatar videos from a single image and audio input."
|
||||
"description": "ComfyUI MemoAvatar is a talking head avatar generator using Memory-Guided Diffusion for Expressive Talking Video Generation"
|
||||
},
|
||||
{
|
||||
"author": "if-ai",
|
||||
"title": "ComfyUI-IF_Trellis",
|
||||
"reference": "https://github.com/if-ai/ComfyUI-IF_Trellis",
|
||||
"files": [
|
||||
"https://github.com/if-ai/ComfyUI-IF_Trellis"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI TRELLIS is a large 3D asset generation in various formats, such as Radiance Fields, 3D Gaussians, and meshes. The cornerstone of TRELLIS is a unified Structured LATent (SLAT) representation that allows decoding to different output formats and Rectified Flow Transformers tailored for SLAT as the powerful backbones."
|
||||
},
|
||||
{
|
||||
"author": "dmMaze",
|
||||
@@ -8424,7 +8472,7 @@
|
||||
"https://github.com/MarkoCa1/ComfyUI-Text"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Text."
|
||||
"description": "Why make this node? Because I only need simple text related operations and don't want to install anything extra."
|
||||
},
|
||||
{
|
||||
"author": "MarkoCa1",
|
||||
@@ -8607,14 +8655,14 @@
|
||||
},
|
||||
{
|
||||
"author": "viperyl",
|
||||
"title": "ComfyUI-BiRefNet",
|
||||
"title": "ComfyUI-BiRefNet-Fix utils",
|
||||
"id": "comfyui-birefnet",
|
||||
"reference": "https://github.com/viperyl/ComfyUI-BiRefNet",
|
||||
"reference": "https://github.com/hieuck/ComfyUI-BiRefNet",
|
||||
"files": [
|
||||
"https://github.com/viperyl/ComfyUI-BiRefNet"
|
||||
"https://github.com/hieuck/ComfyUI-BiRefNet"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Bilateral Reference Network achieves SOTA result in multi Salient Object Segmentation dataset, this repo pack BiRefNet as ComfyUI nodes, and make this SOTA model easier use for everyone."
|
||||
"description": "Bilateral Reference Network achieves SOTA result in multi Salient Object Segmentation dataset, this repo pack BiRefNet as ComfyUI nodes, and make this SOTA model easier use for everyone.\nNOTE: The original node was replaced with a version maintained by hieuck because it is no longer maintained."
|
||||
},
|
||||
{
|
||||
"author": "viperyl",
|
||||
@@ -8785,6 +8833,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Add keybindings to textarea."
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-textarea-command",
|
||||
"reference": "https://github.com/shinich39/comfyui-textarea-command",
|
||||
"files": [
|
||||
"https://github.com/shinich39/comfyui-textarea-command"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Add command and comment in textarea. (e.g. // Disabled line)"
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-put-image",
|
||||
@@ -10038,6 +10096,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "you can make PBR in comfyUI"
|
||||
},
|
||||
{
|
||||
"author": "smthemex",
|
||||
"title": "ComfyUI_TRELLIS",
|
||||
"reference": "https://github.com/smthemex/ComfyUI_TRELLIS",
|
||||
"files": [
|
||||
"https://github.com/smthemex/ComfyUI_TRELLIS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "You can use TRELLIS in comfyUI\n[a/TRELLIS](https://github.com/microsoft/TRELLIS/tree/main), Structured 3D Latents for Scalable and Versatile 3D Generation"
|
||||
},
|
||||
{
|
||||
"author": "choey",
|
||||
"title": "Comfy-Topaz",
|
||||
@@ -11639,17 +11707,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes: Ultimate Concat (Mobile), Send Notification (Mobile), Settings Launcher (Mobile), Settings Launcher Outputs (Mobile)"
|
||||
},
|
||||
{
|
||||
"author": "audioscavenger",
|
||||
"title": "ComfyUI-Thumbnails",
|
||||
"id": "thumbnails",
|
||||
"reference": "https://github.com/audioscavenger/ComfyUI-Thumbnails",
|
||||
"files": [
|
||||
"https://github.com/audioscavenger/ComfyUI-Thumbnails"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Load Image thumbnails, delete images, browse input subfolders."
|
||||
},
|
||||
{
|
||||
"author": "goktug",
|
||||
"title": "Save Image Plus for ComfyUI",
|
||||
@@ -13316,7 +13373,7 @@
|
||||
"https://github.com/ai-shizuka/ComfyUI-tbox"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:ImageLoader, ImageSaver, ImagesSaver, ImageResize, ImageSize."
|
||||
"description": "Nodes:ImageLoader, ImageSaver, ImagesSaver, ImageResize, ImageSize, GFPGANNode, MaskAddNode, Video Load, ..."
|
||||
},
|
||||
{
|
||||
"author": "neverbiasu",
|
||||
@@ -14194,6 +14251,17 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom nodes introducing particle simulations, optical flow, audio manipulation & reactivity, and temporal masks"
|
||||
},
|
||||
{
|
||||
"author": "RyanOnTheInside",
|
||||
"title": "Nodes for use with real-time applications of ComfyUI",
|
||||
"id": "realtimenodes",
|
||||
"reference": "https://github.com/ryanontheinside/ComfyUI_RealTimeNodes",
|
||||
"files": [
|
||||
"https://github.com/ryanontheinside/ComfyUI_RealTimeNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These nodes are for real-time applications of ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "ControlAltAI",
|
||||
"title": "ControlAltAI Nodes",
|
||||
@@ -16646,7 +16714,7 @@
|
||||
},
|
||||
{
|
||||
"author": "Frost Ming",
|
||||
"title": "Comfy Pack",
|
||||
"title": "Comfy-Pack",
|
||||
"reference": "https://github.com/bentoml/comfy-pack",
|
||||
"files": [
|
||||
"https://github.com/bentoml/comfy-pack"
|
||||
@@ -16894,7 +16962,7 @@
|
||||
"description": "A node suite for downloading audio and video from youtube as we all sevral useful video utilits such as a final frame selector and a node that merges two videos into one."
|
||||
},
|
||||
{
|
||||
"author": "DoctorDiffusion",
|
||||
"author": "Doctor Diffusion",
|
||||
"title": "ComfyUI-SnakeOil",
|
||||
"reference": "https://github.com/DoctorDiffusion/ComfyUI-SnakeOil",
|
||||
"files": [
|
||||
@@ -16903,6 +16971,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Use [a/Doctor Diffusion's snake oil nLoRAs](https://civitai.com/models/987843) as well as [a/other negative LoRAs](https://civitai.com/models/186617/doctor-diffusions-negative-xl-lora) easily within ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "Doctor Diffusion",
|
||||
"title": "ComfyUI BEN - Background Erase Network",
|
||||
"reference": "https://github.com/DoctorDiffusion/ComfyUI-BEN",
|
||||
"files": [
|
||||
"https://github.com/DoctorDiffusion/ComfyUI-BEN"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Remove backgrounds from images with [a/BEN](https://huggingface.co/PramaLLC/BEN) in ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "robtl2",
|
||||
"title": "ComfyUI-ComfyBridge",
|
||||
@@ -17127,8 +17205,8 @@
|
||||
"description": "NODES:Canvas View"
|
||||
},
|
||||
{
|
||||
"author": "tanglup",
|
||||
"title": "Comfyui_Flux_Style_Adjust",
|
||||
"author": "yichengup",
|
||||
"title": "Comfyui_Flux_Style_Adjust (Redux)",
|
||||
"reference": "https://github.com/tanglup/Comfyui_Flux_Style_Adjust",
|
||||
"files": [
|
||||
"https://github.com/tanglup/Comfyui_Flux_Style_Adjust"
|
||||
@@ -17529,6 +17607,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Easy Pony is a helper node that simplifies the process of adding scoring and other attributes to prompts when using Pony models."
|
||||
},
|
||||
{
|
||||
"author": "itsjustregi",
|
||||
"title": "ComfyUI-EasyNoobai",
|
||||
"reference": "https://github.com/regiellis/ComfyUI-EasyNoobai",
|
||||
"files": [
|
||||
"https://github.com/regiellis/ComfyUI-EasyNoobai"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Simple set of nodes to assist with prompt generation for NOOBAI XL / Illustrious models"
|
||||
},
|
||||
{
|
||||
"author": "steelan9199",
|
||||
"title": "ComfyUI-Teeth",
|
||||
@@ -17537,7 +17625,7 @@
|
||||
"https://github.com/steelan9199/ComfyUI-Teeth"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Index List, TextSplitByDelimiter"
|
||||
"description": "NODES: GetValueByIndexFromList, TextSplitByDelimiter, GetFirstSeg, FindContours"
|
||||
},
|
||||
{
|
||||
"author": "mrhan1993",
|
||||
@@ -17714,7 +17802,7 @@
|
||||
"https://github.com/magic-quill/ComfyUI_MagicQuill"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Official ComfyUI Node for Paper - MagicQuill: An Intelligent Interactive Image Editing System"
|
||||
"description": "Towards GPT-4 like large language and visual assistant."
|
||||
},
|
||||
{
|
||||
"author": "weilin9999",
|
||||
@@ -17878,6 +17966,161 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "[a/Distrifuser](https://github.com/mit-han-lab/distrifuser) sampler node for ComfyUI\n"
|
||||
},
|
||||
{
|
||||
"author": "Runware Inc.",
|
||||
"title": "Runware.ai ComfyUI Inference API Integration",
|
||||
"id": "runware",
|
||||
"reference": "https://github.com/Runware/ComfyUI-Runware",
|
||||
"files": [
|
||||
"https://github.com/Runware/ComfyUI-Runware"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Runware Inference API Integration for ComfyUI (No GPU Required)."
|
||||
},
|
||||
{
|
||||
"author": "shannooty",
|
||||
"title": "ComfyUI Timer Nodes",
|
||||
"id": "comfyui-timer-nodes",
|
||||
"reference": "https://github.com/Shannooty/ComfyUI-Timer-Nodes",
|
||||
"files": [
|
||||
"https://github.com/Shannooty/ComfyUI-Timer-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This project provides a set of custom timer nodes for ComfyUI. These nodes allow you to measure and append runtime information to strings or other data during your workflow."
|
||||
},
|
||||
{
|
||||
"author": "HM-RunningHub",
|
||||
"title": "ComfyUI_RH_OminiControl",
|
||||
"reference": "https://github.com/HM-RunningHub/ComfyUI_RH_OminiControl",
|
||||
"files": [
|
||||
"https://github.com/HM-RunningHub/ComfyUI_RH_OminiControl"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI_RH_OminiControl is a ComfyUI plugin based on OminiControl By splitting the pipeline load, the plugin efficiently runs on NVIDIA RTX 4090 GPUs. Additionally, the spatial and fill functionalities are generated using the schnell model, reducing the number of sampling steps and improving overall efficiency."
|
||||
},
|
||||
{
|
||||
"author": "sebord",
|
||||
"title": "ComfyUI-LMCQ",
|
||||
"reference": "https://github.com/sebord/ComfyUI-LMCQ",
|
||||
"files": [
|
||||
"https://github.com/sebord/ComfyUI-LMCQ"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI small node toolkit, this toolkit is mainly to update some practical small nodes, to make a contribution to the comfyui ecosystem, PS: 'LMCQ' is the abbreviation of the team name\nNOTE: The files in the repo are not organized, which may lead to update issues."
|
||||
},
|
||||
{
|
||||
"author": "InstantStudioAI",
|
||||
"title": "ComfyUI-InstantStudio",
|
||||
"reference": "https://github.com/InstantStudioAI/ComfyUI-InstantStudio",
|
||||
"files": [
|
||||
"https://github.com/InstantStudioAI/ComfyUI-InstantStudio"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of nodes to enhance your experience with ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "krich-cto",
|
||||
"title": "ComfyUI Flow Control",
|
||||
"reference": "https://github.com/krich-cto/ComfyUI-Flow-Control",
|
||||
"files": [
|
||||
"https://github.com/krich-cto/ComfyUI-Flow-Control"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is an Extension for ComfyUI. This project will help you control the flow logic via many controls."
|
||||
},
|
||||
{
|
||||
"author": "Tlant",
|
||||
"title": "ComfyUI-OllamaPromptsGeneratorTlant",
|
||||
"reference": "https://github.com/Tlant/ComfyUI-OllamaPromptsGeneratorTlant",
|
||||
"files": [
|
||||
"https://github.com/Tlant/ComfyUI-OllamaPromptsGeneratorTlant"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Use ollama to generate prompts based on reference text in comfyui."
|
||||
},
|
||||
{
|
||||
"author": "DarioFT",
|
||||
"title": "ComfyUI-VideoDirCombiner",
|
||||
"reference": "https://github.com/DarioFT/ComfyUI-VideoDirCombiner",
|
||||
"files": [
|
||||
"https://github.com/DarioFT/ComfyUI-VideoDirCombiner"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node for ComfyUI that combines multiple videos from a directory with optional transitions and background music. Perfect for batch processing and creating seamless video compilations."
|
||||
},
|
||||
{
|
||||
"author": "Kim",
|
||||
"title": "ComfyUI_KimNodes",
|
||||
"reference": "https://github.com/wjl0313/ComfyUI_KimNodes",
|
||||
"files": [
|
||||
"https://github.com/wjl0313/ComfyUI_KimNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Image effects, icon layout processing, cropping — this toolbox is a node library organized according to my own needs."
|
||||
},
|
||||
{
|
||||
"author": "LiJT",
|
||||
"title": "Gemini prompt generator JT version",
|
||||
"reference": "https://github.com/LiJT/ComfyUI-Gemini-Prompt-Generator-JT",
|
||||
"files": [
|
||||
"https://github.com/LiJT/ComfyUI-Gemini-Prompt-Generator-JT"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom node to use Gemini 1.5 and above for Comfyui to generates theme related prompts for image generators"
|
||||
},
|
||||
{
|
||||
"author": "codeprimate",
|
||||
"title": "ComfyUI Mask Contour Processor",
|
||||
"reference": "https://github.com/codeprimate/ComfyUI-MaskContourProcessor",
|
||||
"files": [
|
||||
"https://github.com/codeprimate/ComfyUI-MaskContourProcessor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI node that improves inpainting results by extending mask boundaries with geometric patterns, helping create smoother transitions and better context for AI-driven image completion."
|
||||
},
|
||||
{
|
||||
"author": "Miyuutsu",
|
||||
"title": "comfyui-save-vpred",
|
||||
"reference": "https://github.com/Miyuutsu/comfyui-save-vpred",
|
||||
"files": [
|
||||
"https://github.com/Miyuutsu/comfyui-save-vpred"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Simple ComfyUI Custom Node to enable saving checkpoints with V-Pred ZTSNR tensors and metadata."
|
||||
},
|
||||
{
|
||||
"author": "kostenickj",
|
||||
"title": "comfyui-jk-easy-nodes",
|
||||
"reference": "https://github.com/kostenickj/jk-comfyui-helpers",
|
||||
"files": [
|
||||
"https://github.com/kostenickj/jk-comfyui-helpers"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: EasyHRFix, EasyHRFix_Context, JKAnythingToString, JKBigContext, JKDynamicThresholdingMultiModel, JKEasyCheckpointLoader, JKEasyDetailer, JKEasyDetailer_Context, JKEasyKSampler_Context, JKEasyWatermark, JKInspireSchedulerAdapter, JKLilContext, JKMultiModelSamplerUnpatch, JKStringEmpty, JKStringEquals, JKStringNotEmpty, JKStringNotEquals, JKStringToSamplerAdapter"
|
||||
},
|
||||
{
|
||||
"author": "IamCreateAI",
|
||||
"title": "ComfyUI-Ruyi",
|
||||
"reference": "https://github.com/IamCreateAI/Ruyi-Models",
|
||||
"files": [
|
||||
"https://github.com/IamCreateAI/Ruyi-Models"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI wrapper nodes for Ruyi, an image-to-video model by CreateAI."
|
||||
},
|
||||
{
|
||||
"author": "42lux",
|
||||
"title": "Just a bunch of QOL nodes by 42lux",
|
||||
"id": "comfyui-42lux",
|
||||
"reference": "https://github.com/42lux/ComfyUI-42lux",
|
||||
"files": [
|
||||
"https://github.com/42lux/ComfyUI-42lux"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Just a bunch of QOL nodes. Normalized Flux Sampling, High Res Latent Picker, Textbox with Token Counter."
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -18345,5 +18588,4 @@
|
||||
"description": "This is a node to convert an image into a CMYK Halftone dot image."
|
||||
}
|
||||
]
|
||||
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
25
extras.json
Normal file
25
extras.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"favorites": [
|
||||
"comfyui_ipadapter_plus",
|
||||
"comfyui-animatediff-evolved",
|
||||
"comfyui_controlnet_aux",
|
||||
"comfyui-impact-pack",
|
||||
"comfyui-custom-scripts",
|
||||
"comfyui-layerdiffuse",
|
||||
"comfyui-liveportraitkj",
|
||||
"aigodlike-comfyui-translation",
|
||||
"comfyui-reactor-node",
|
||||
"comfyui_instantid",
|
||||
"sd-dynamic-thresholding",
|
||||
"pr-was-node-suite-comfyui-47064894",
|
||||
"comfyui-advancedliveportrait",
|
||||
"comfyui_layerstyle",
|
||||
"efficiency-nodes-comfyui",
|
||||
"comfyui-crystools",
|
||||
"comfyui-advanced-controlnet",
|
||||
"comfyui-videohelpersuite",
|
||||
"comfyui-kjnodes",
|
||||
"comfy-mtb",
|
||||
"comfyui_essentials"
|
||||
]
|
||||
}
|
||||
@@ -5,7 +5,6 @@ import traceback
|
||||
|
||||
import git
|
||||
import configparser
|
||||
import re
|
||||
import json
|
||||
import yaml
|
||||
import requests
|
||||
@@ -13,6 +12,14 @@ from tqdm.auto import tqdm
|
||||
from git.remote import RemoteProgress
|
||||
|
||||
|
||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||
|
||||
if comfy_path is None:
|
||||
print("\n[bold yellow]WARN: The `COMFYUI_PATH` environment variable is not set. Assuming `custom_nodes/ComfyUI-Manager/../../` as the ComfyUI path.[/bold yellow]", file=sys.stderr)
|
||||
comfy_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
|
||||
|
||||
|
||||
|
||||
def download_url(url, dest_folder, filename=None):
|
||||
# Ensure the destination folder exists
|
||||
if not os.path.exists(dest_folder):
|
||||
@@ -41,7 +48,7 @@ nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json")
|
||||
working_directory = os.getcwd()
|
||||
|
||||
if os.path.basename(working_directory) != 'custom_nodes':
|
||||
print(f"WARN: This script should be executed in custom_nodes dir")
|
||||
print("WARN: This script should be executed in custom_nodes dir")
|
||||
print(f"DBG: INFO {working_directory}")
|
||||
print(f"DBG: INFO {sys.argv}")
|
||||
# exit(-1)
|
||||
@@ -59,9 +66,11 @@ class GitProgress(RemoteProgress):
|
||||
self.pbar.refresh()
|
||||
|
||||
|
||||
def gitclone(custom_nodes_path, url, target_hash=None):
|
||||
def gitclone(custom_nodes_path, url, target_hash=None, repo_path=None):
|
||||
repo_name = os.path.splitext(os.path.basename(url))[0]
|
||||
repo_path = os.path.join(custom_nodes_path, repo_name)
|
||||
|
||||
if repo_path is None:
|
||||
repo_path = os.path.join(custom_nodes_path, repo_name)
|
||||
|
||||
# Clone the repository from the remote URL
|
||||
repo = git.Repo.clone_from(url, repo_path, recursive=True, progress=GitProgress())
|
||||
@@ -94,7 +103,12 @@ def gitcheck(path, do_fetch=False):
|
||||
|
||||
# Get the current commit hash and the commit hash of the remote branch
|
||||
commit_hash = repo.head.commit.hexsha
|
||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||
|
||||
if f'{remote_name}/{branch_name}' in repo.refs:
|
||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||
else:
|
||||
print("CUSTOM NODE CHECK: True") # non default branch is treated as updatable
|
||||
return
|
||||
|
||||
# Compare the commit hashes to determine if the local repository is behind the remote repository
|
||||
if commit_hash != remote_commit_hash:
|
||||
@@ -113,11 +127,8 @@ def gitcheck(path, do_fetch=False):
|
||||
|
||||
|
||||
def switch_to_default_branch(repo):
|
||||
show_result = repo.git.remote("show", "origin")
|
||||
matches = re.search(r"\s*HEAD branch:\s*(.*)", show_result)
|
||||
if matches:
|
||||
default_branch = matches.group(1)
|
||||
repo.git.checkout(default_branch)
|
||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
||||
repo.git.checkout(default_branch)
|
||||
|
||||
|
||||
def gitpull(path):
|
||||
@@ -128,6 +139,7 @@ def gitpull(path):
|
||||
# Pull the latest changes from the remote repository
|
||||
repo = git.Repo(path)
|
||||
if repo.is_dirty():
|
||||
print(f"STASH: '{path}' is dirty.")
|
||||
repo.git.stash()
|
||||
|
||||
commit_hash = repo.head.commit.hexsha
|
||||
@@ -141,6 +153,11 @@ def gitpull(path):
|
||||
remote_name = current_branch.tracking_branch().remote_name
|
||||
remote = repo.remote(name=remote_name)
|
||||
|
||||
if f'{remote_name}/{branch_name}' not in repo.refs:
|
||||
switch_to_default_branch(repo)
|
||||
current_branch = repo.active_branch
|
||||
branch_name = current_branch.name
|
||||
|
||||
remote.fetch()
|
||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||
|
||||
@@ -166,9 +183,7 @@ def gitpull(path):
|
||||
|
||||
|
||||
def checkout_comfyui_hash(target_hash):
|
||||
repo_path = os.path.abspath(os.path.join(working_directory, '..')) # ComfyUI dir
|
||||
|
||||
repo = git.Repo(repo_path)
|
||||
repo = git.Repo(comfy_path)
|
||||
commit_hash = repo.head.commit.hexsha
|
||||
|
||||
if commit_hash != target_hash:
|
||||
@@ -191,7 +206,7 @@ def checkout_custom_node_hash(git_custom_node_infos):
|
||||
repo_name_to_url[repo_name] = url
|
||||
|
||||
for path in os.listdir(working_directory):
|
||||
if path.endswith("ComfyUI-Manager"):
|
||||
if '@' in path or path.endswith("ComfyUI-Manager"):
|
||||
continue
|
||||
|
||||
fullpath = os.path.join(working_directory, path)
|
||||
@@ -250,6 +265,9 @@ def checkout_custom_node_hash(git_custom_node_infos):
|
||||
|
||||
# clone missing
|
||||
for k, v in git_custom_node_infos.items():
|
||||
if 'ComfyUI-Manager' in k:
|
||||
continue
|
||||
|
||||
if not v['disabled']:
|
||||
repo_name = k.split('/')[-1]
|
||||
if repo_name.endswith('.git'):
|
||||
@@ -258,7 +276,7 @@ def checkout_custom_node_hash(git_custom_node_infos):
|
||||
path = os.path.join(working_directory, repo_name)
|
||||
if not os.path.exists(path):
|
||||
print(f"CLONE: {path}")
|
||||
gitclone(working_directory, k, v['hash'])
|
||||
gitclone(working_directory, k, target_hash=v['hash'])
|
||||
|
||||
|
||||
def invalidate_custom_node_file(file_custom_node_infos):
|
||||
@@ -308,19 +326,18 @@ def invalidate_custom_node_file(file_custom_node_infos):
|
||||
download_url(url, working_directory)
|
||||
|
||||
|
||||
def apply_snapshot(target):
|
||||
def apply_snapshot(path):
|
||||
try:
|
||||
path = os.path.join(os.path.dirname(__file__), 'snapshots', f"{target}")
|
||||
if os.path.exists(path):
|
||||
if not target.endswith('.json') and not target.endswith('.yaml'):
|
||||
if not path.endswith('.json') and not path.endswith('.yaml'):
|
||||
print(f"Snapshot file not found: `{path}`")
|
||||
print("APPLY SNAPSHOT: False")
|
||||
return None
|
||||
|
||||
with open(path, 'r', encoding="UTF-8") as snapshot_file:
|
||||
if target.endswith('.json'):
|
||||
if path.endswith('.json'):
|
||||
info = json.load(snapshot_file)
|
||||
elif target.endswith('.yaml'):
|
||||
elif path.endswith('.yaml'):
|
||||
info = yaml.load(snapshot_file, Loader=yaml.SafeLoader)
|
||||
info = info['custom_nodes']
|
||||
else:
|
||||
@@ -425,7 +442,11 @@ setup_environment()
|
||||
|
||||
try:
|
||||
if sys.argv[1] == "--clone":
|
||||
gitclone(sys.argv[2], sys.argv[3])
|
||||
repo_path = None
|
||||
if len(sys.argv) > 4:
|
||||
repo_path = sys.argv[4]
|
||||
|
||||
gitclone(sys.argv[2], sys.argv[3], repo_path=repo_path)
|
||||
elif sys.argv[1] == "--check":
|
||||
gitcheck(sys.argv[2], False)
|
||||
elif sys.argv[1] == "--fetch":
|
||||
|
||||
4786
github-stats.json
4786
github-stats.json
File diff suppressed because it is too large
Load Diff
100
glob/cnr_utils.py
Normal file
100
glob/cnr_utils.py
Normal file
@@ -0,0 +1,100 @@
|
||||
import requests
|
||||
from dataclasses import dataclass
|
||||
from typing import List
|
||||
import manager_util
|
||||
|
||||
base_url = "https://api.comfy.org"
|
||||
|
||||
|
||||
async def get_cnr_data(page=1, limit=1000, cache_mode=True):
|
||||
try:
|
||||
uri = f'{base_url}/nodes?page={page}&limit={limit}'
|
||||
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode)
|
||||
|
||||
for v in json_obj['nodes']:
|
||||
if 'latest_version' not in v:
|
||||
v['latest_version'] = dict(version='nightly')
|
||||
|
||||
return json_obj['nodes']
|
||||
except:
|
||||
res = {}
|
||||
print("Cannot connect to comfyregistry.")
|
||||
|
||||
return res
|
||||
|
||||
|
||||
@dataclass
|
||||
class NodeVersion:
|
||||
changelog: str
|
||||
dependencies: List[str]
|
||||
deprecated: bool
|
||||
id: str
|
||||
version: str
|
||||
download_url: str
|
||||
|
||||
|
||||
def map_node_version(api_node_version):
|
||||
"""
|
||||
Maps node version data from API response to NodeVersion dataclass.
|
||||
|
||||
Args:
|
||||
api_data (dict): The 'node_version' part of the API response.
|
||||
|
||||
Returns:
|
||||
NodeVersion: An instance of NodeVersion dataclass populated with data from the API.
|
||||
"""
|
||||
return NodeVersion(
|
||||
changelog=api_node_version.get(
|
||||
"changelog", ""
|
||||
), # Provide a default value if 'changelog' is missing
|
||||
dependencies=api_node_version.get(
|
||||
"dependencies", []
|
||||
), # Provide a default empty list if 'dependencies' is missing
|
||||
deprecated=api_node_version.get(
|
||||
"deprecated", False
|
||||
), # Assume False if 'deprecated' is not specified
|
||||
id=api_node_version[
|
||||
"id"
|
||||
], # 'id' should be mandatory; raise KeyError if missing
|
||||
version=api_node_version[
|
||||
"version"
|
||||
], # 'version' should be mandatory; raise KeyError if missing
|
||||
download_url=api_node_version.get(
|
||||
"downloadUrl", ""
|
||||
), # Provide a default value if 'downloadUrl' is missing
|
||||
)
|
||||
|
||||
|
||||
def install_node(node_id, version=None):
|
||||
"""
|
||||
Retrieves the node version for installation.
|
||||
|
||||
Args:
|
||||
node_id (str): The unique identifier of the node.
|
||||
version (str, optional): Specific version of the node to retrieve. If omitted, the latest version is returned.
|
||||
|
||||
Returns:
|
||||
NodeVersion: Node version data or error message.
|
||||
"""
|
||||
if version is None:
|
||||
url = f"{base_url}/nodes/{node_id}/install"
|
||||
else:
|
||||
url = f"{base_url}/nodes/{node_id}/install?version={version}"
|
||||
|
||||
response = requests.get(url)
|
||||
if response.status_code == 200:
|
||||
# Convert the API response to a NodeVersion object
|
||||
return map_node_version(response.json())
|
||||
else:
|
||||
return None
|
||||
|
||||
|
||||
def all_versions_of_node(node_id):
|
||||
url = f"https://api.comfy.org/nodes/{node_id}/versions"
|
||||
|
||||
response = requests.get(url)
|
||||
if response.status_code == 200:
|
||||
return response.json()
|
||||
else:
|
||||
return None
|
||||
|
||||
2468
glob/manager_core.py
2468
glob/manager_core.py
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,7 @@
|
||||
import os
|
||||
from urllib.parse import urlparse
|
||||
import urllib
|
||||
import sys
|
||||
|
||||
aria2 = os.getenv('COMFYUI_MANAGER_ARIA2_SERVER')
|
||||
HF_ENDPOINT = os.getenv('HF_ENDPOINT')
|
||||
@@ -14,12 +16,32 @@ if aria2 is not None:
|
||||
aria2 = aria2p.API(aria2p.Client(host=host, port=port, secret=secret))
|
||||
|
||||
|
||||
def basic_download_url(url, dest_folder, filename):
|
||||
import requests
|
||||
|
||||
# Ensure the destination folder exists
|
||||
if not os.path.exists(dest_folder):
|
||||
os.makedirs(dest_folder)
|
||||
|
||||
# Full path to save the file
|
||||
dest_path = os.path.join(dest_folder, filename)
|
||||
|
||||
# Download the file
|
||||
response = requests.get(url, stream=True)
|
||||
if response.status_code == 200:
|
||||
with open(dest_path, 'wb') as file:
|
||||
for chunk in response.iter_content(chunk_size=1024):
|
||||
if chunk:
|
||||
file.write(chunk)
|
||||
else:
|
||||
raise Exception(f"Failed to download file from {url}")
|
||||
|
||||
|
||||
def download_url(model_url: str, model_dir: str, filename: str):
|
||||
if aria2:
|
||||
return aria2_download_url(model_url, model_dir, filename)
|
||||
else:
|
||||
from torchvision.datasets.utils import download_url as torchvision_download_url
|
||||
|
||||
return torchvision_download_url(model_url, model_dir, filename)
|
||||
|
||||
|
||||
@@ -68,3 +90,26 @@ def aria2_download_url(model_url: str, model_dir: str, filename: str):
|
||||
progress_bar.update(download.completed_length - progress_bar.n)
|
||||
time.sleep(1)
|
||||
download.update()
|
||||
|
||||
|
||||
def download_url_with_agent(url, save_path):
|
||||
try:
|
||||
headers = {
|
||||
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
|
||||
|
||||
req = urllib.request.Request(url, headers=headers)
|
||||
response = urllib.request.urlopen(req)
|
||||
data = response.read()
|
||||
|
||||
if not os.path.exists(os.path.dirname(save_path)):
|
||||
os.makedirs(os.path.dirname(save_path))
|
||||
|
||||
with open(save_path, 'wb') as f:
|
||||
f.write(data)
|
||||
|
||||
except Exception as e:
|
||||
print(f"Download error: {url} / {e}", file=sys.stderr)
|
||||
return False
|
||||
|
||||
print("Installation was successful.")
|
||||
return True
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,17 @@
|
||||
import aiohttp
|
||||
import json
|
||||
import threading
|
||||
import os
|
||||
from datetime import datetime
|
||||
import subprocess
|
||||
import sys
|
||||
import re
|
||||
|
||||
cache_lock = threading.Lock()
|
||||
|
||||
comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
||||
cache_dir = os.path.join(comfyui_manager_path, '.cache')
|
||||
|
||||
|
||||
# DON'T USE StrictVersion - cannot handle pre_release version
|
||||
# try:
|
||||
@@ -66,8 +78,84 @@ class StrictVersion:
|
||||
return not self == other
|
||||
|
||||
|
||||
def simple_hash(input_string):
|
||||
hash_value = 0
|
||||
for char in input_string:
|
||||
hash_value = (hash_value * 31 + ord(char)) % (2**32)
|
||||
|
||||
return hash_value
|
||||
|
||||
|
||||
def is_file_created_within_one_day(file_path):
|
||||
if not os.path.exists(file_path):
|
||||
return False
|
||||
|
||||
file_creation_time = os.path.getctime(file_path)
|
||||
current_time = datetime.now().timestamp()
|
||||
time_difference = current_time - file_creation_time
|
||||
|
||||
return time_difference <= 86400
|
||||
|
||||
|
||||
async def get_data(uri, silent=False):
|
||||
if not silent:
|
||||
print(f"FETCH DATA from: {uri}", end="")
|
||||
|
||||
if uri.startswith("http"):
|
||||
async with aiohttp.ClientSession(trust_env=True, connector=aiohttp.TCPConnector(verify_ssl=False)) as session:
|
||||
async with session.get(uri) as resp:
|
||||
json_text = await resp.text()
|
||||
else:
|
||||
with cache_lock:
|
||||
with open(uri, "r", encoding="utf-8") as f:
|
||||
json_text = f.read()
|
||||
|
||||
json_obj = json.loads(json_text)
|
||||
|
||||
if not silent:
|
||||
print(" [DONE]")
|
||||
|
||||
return json_obj
|
||||
|
||||
|
||||
async def get_data_with_cache(uri, silent=False, cache_mode=True):
|
||||
cache_uri = str(simple_hash(uri)) + '_' + os.path.basename(uri).replace('&', "_").replace('?', "_").replace('=', "_")
|
||||
cache_uri = os.path.join(cache_dir, cache_uri+'.json')
|
||||
|
||||
if cache_mode and is_file_created_within_one_day(cache_uri):
|
||||
json_obj = await get_data(cache_uri, silent=silent)
|
||||
else:
|
||||
json_obj = await get_data(uri, silent=silent)
|
||||
|
||||
with cache_lock:
|
||||
with open(cache_uri, "w", encoding='utf-8') as file:
|
||||
json.dump(json_obj, file, indent=4, sort_keys=True)
|
||||
if not silent:
|
||||
print(f"[ComfyUI-Manager] default cache updated: {uri}")
|
||||
|
||||
return json_obj
|
||||
|
||||
|
||||
def sanitize_tag(x):
|
||||
return x.replace('<', '<').replace('>', '>')
|
||||
|
||||
|
||||
def extract_package_as_zip(file_path, extract_path):
|
||||
import zipfile
|
||||
try:
|
||||
with zipfile.ZipFile(file_path, "r") as zip_ref:
|
||||
zip_ref.extractall(extract_path)
|
||||
extracted_files = zip_ref.namelist()
|
||||
print(f"Extracted zip file to {extract_path}")
|
||||
return extracted_files
|
||||
except zipfile.BadZipFile:
|
||||
print(f"File '{file_path}' is not a zip or is corrupted.")
|
||||
return None
|
||||
|
||||
|
||||
pip_map = None
|
||||
|
||||
|
||||
def get_installed_packages(renew=False):
|
||||
global pip_map
|
||||
|
||||
@@ -84,8 +172,8 @@ def get_installed_packages(renew=False):
|
||||
continue
|
||||
|
||||
pip_map[y[0]] = y[1]
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"[ComfyUI-Manager] Failed to retrieve the information of installed pip packages.")
|
||||
except subprocess.CalledProcessError:
|
||||
print("[ComfyUI-Manager] Failed to retrieve the information of installed pip packages.")
|
||||
return set()
|
||||
|
||||
return pip_map
|
||||
@@ -154,9 +242,9 @@ class PIPFixer:
|
||||
cmd = [sys.executable, '-m', 'pip', 'uninstall', 'comfy']
|
||||
subprocess.check_output(cmd, universal_newlines=True)
|
||||
|
||||
print(f"[manager-core] 'comfy' python package is uninstalled.\nWARN: The 'comfy' package is completely unrelated to ComfyUI and should never be installed as it causes conflicts with ComfyUI.")
|
||||
print("[manager-core] 'comfy' python package is uninstalled.\nWARN: The 'comfy' package is completely unrelated to ComfyUI and should never be installed as it causes conflicts with ComfyUI.")
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to uninstall `comfy` python package")
|
||||
print("[manager-core] Failed to uninstall `comfy` python package")
|
||||
print(e)
|
||||
|
||||
# fix torch - reinstall torch packages if version is changed
|
||||
@@ -166,7 +254,7 @@ class PIPFixer:
|
||||
or self.prev_pip_versions['torchaudio'] != new_pip_versions['torchaudio']:
|
||||
self.torch_rollback()
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to restore PyTorch")
|
||||
print("[manager-core] Failed to restore PyTorch")
|
||||
print(e)
|
||||
|
||||
# fix opencv
|
||||
@@ -200,7 +288,7 @@ class PIPFixer:
|
||||
|
||||
print(f"[manager-core] 'opencv' dependencies were fixed: {targets}")
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to restore opencv")
|
||||
print("[manager-core] Failed to restore opencv")
|
||||
print(e)
|
||||
|
||||
# fix numpy
|
||||
@@ -208,7 +296,16 @@ class PIPFixer:
|
||||
np = new_pip_versions.get('numpy')
|
||||
if np is not None:
|
||||
if StrictVersion(np) >= StrictVersion('2'):
|
||||
subprocess.check_output([sys.executable, '-m', 'pip', 'install', f"numpy<2"], universal_newlines=True)
|
||||
subprocess.check_output([sys.executable, '-m', 'pip', 'install', "numpy<2"], universal_newlines=True)
|
||||
except Exception as e:
|
||||
print(f"[manager-core] Failed to restore numpy")
|
||||
print("[manager-core] Failed to restore numpy")
|
||||
print(e)
|
||||
|
||||
|
||||
def sanitize(data):
|
||||
return data.replace("<", "<").replace(">", ">")
|
||||
|
||||
|
||||
def sanitize_filename(input_string):
|
||||
result_string = re.sub(r'[^a-zA-Z0-9_]', '_', input_string)
|
||||
return result_string
|
||||
|
||||
@@ -109,7 +109,7 @@ https://blog.comfy.org/comfyui-statement-on-the-ultralytics-crypto-miner-situati
|
||||
|
||||
for x in detected:
|
||||
print(f"\n======== TARGET: {x} =========")
|
||||
print(f"\nTODO:")
|
||||
print("\nTODO:")
|
||||
print(guide.get(x))
|
||||
|
||||
exit(-1)
|
||||
|
||||
@@ -65,10 +65,10 @@ async def share_option(request):
|
||||
|
||||
|
||||
def get_openart_auth():
|
||||
if not os.path.exists(os.path.join(core.comfyui_manager_path, ".openart_key")):
|
||||
if not os.path.exists(os.path.join(core.manager_files_path, ".openart_key")):
|
||||
return None
|
||||
try:
|
||||
with open(os.path.join(core.comfyui_manager_path, ".openart_key"), "r") as f:
|
||||
with open(os.path.join(core.manager_files_path, ".openart_key"), "r") as f:
|
||||
openart_key = f.read().strip()
|
||||
return openart_key if openart_key else None
|
||||
except:
|
||||
@@ -76,10 +76,10 @@ def get_openart_auth():
|
||||
|
||||
|
||||
def get_matrix_auth():
|
||||
if not os.path.exists(os.path.join(core.comfyui_manager_path, "matrix_auth")):
|
||||
if not os.path.exists(os.path.join(core.manager_files_path, "matrix_auth")):
|
||||
return None
|
||||
try:
|
||||
with open(os.path.join(core.comfyui_manager_path, "matrix_auth"), "r") as f:
|
||||
with open(os.path.join(core.manager_files_path, "matrix_auth"), "r") as f:
|
||||
matrix_auth = f.read()
|
||||
homeserver, username, password = matrix_auth.strip().split("\n")
|
||||
if not homeserver or not username or not password:
|
||||
@@ -94,10 +94,10 @@ def get_matrix_auth():
|
||||
|
||||
|
||||
def get_comfyworkflows_auth():
|
||||
if not os.path.exists(os.path.join(core.comfyui_manager_path, "comfyworkflows_sharekey")):
|
||||
if not os.path.exists(os.path.join(core.manager_files_path, "comfyworkflows_sharekey")):
|
||||
return None
|
||||
try:
|
||||
with open(os.path.join(core.comfyui_manager_path, "comfyworkflows_sharekey"), "r") as f:
|
||||
with open(os.path.join(core.manager_files_path, "comfyworkflows_sharekey"), "r") as f:
|
||||
share_key = f.read()
|
||||
if not share_key.strip():
|
||||
return None
|
||||
@@ -107,10 +107,10 @@ def get_comfyworkflows_auth():
|
||||
|
||||
|
||||
def get_youml_settings():
|
||||
if not os.path.exists(os.path.join(core.comfyui_manager_path, ".youml")):
|
||||
if not os.path.exists(os.path.join(core.manager_files_path, ".youml")):
|
||||
return None
|
||||
try:
|
||||
with open(os.path.join(core.comfyui_manager_path, ".youml"), "r") as f:
|
||||
with open(os.path.join(core.manager_files_path, ".youml"), "r") as f:
|
||||
youml_settings = f.read().strip()
|
||||
return youml_settings if youml_settings else None
|
||||
except:
|
||||
@@ -118,7 +118,7 @@ def get_youml_settings():
|
||||
|
||||
|
||||
def set_youml_settings(settings):
|
||||
with open(os.path.join(core.comfyui_manager_path, ".youml"), "w") as f:
|
||||
with open(os.path.join(core.manager_files_path, ".youml"), "w") as f:
|
||||
f.write(settings)
|
||||
|
||||
|
||||
@@ -135,7 +135,7 @@ async def api_get_openart_auth(request):
|
||||
async def api_set_openart_auth(request):
|
||||
json_data = await request.json()
|
||||
openart_key = json_data['openart_key']
|
||||
with open(os.path.join(core.comfyui_manager_path, ".openart_key"), "w") as f:
|
||||
with open(os.path.join(core.manager_files_path, ".openart_key"), "w") as f:
|
||||
f.write(openart_key)
|
||||
return web.Response(status=200)
|
||||
|
||||
@@ -178,16 +178,14 @@ async def api_get_comfyworkflows_auth(request):
|
||||
@PromptServer.instance.routes.post("/manager/set_esheep_workflow_and_images")
|
||||
async def set_esheep_workflow_and_images(request):
|
||||
json_data = await request.json()
|
||||
current_workflow = json_data['workflow']
|
||||
images = json_data['images']
|
||||
with open(os.path.join(core.comfyui_manager_path, "esheep_share_message.json"), "w", encoding='utf-8') as file:
|
||||
with open(os.path.join(core.manager_files_path, "esheep_share_message.json"), "w", encoding='utf-8') as file:
|
||||
json.dump(json_data, file, indent=4)
|
||||
return web.Response(status=200)
|
||||
|
||||
|
||||
@PromptServer.instance.routes.get("/manager/get_esheep_workflow_and_images")
|
||||
async def get_esheep_workflow_and_images(request):
|
||||
with open(os.path.join(core.comfyui_manager_path, "esheep_share_message.json"), 'r', encoding='utf-8') as file:
|
||||
with open(os.path.join(core.manager_files_path, "esheep_share_message.json"), 'r', encoding='utf-8') as file:
|
||||
data = json.load(file)
|
||||
return web.Response(status=200, text=json.dumps(data))
|
||||
|
||||
@@ -196,12 +194,12 @@ def set_matrix_auth(json_data):
|
||||
homeserver = json_data['homeserver']
|
||||
username = json_data['username']
|
||||
password = json_data['password']
|
||||
with open(os.path.join(core.comfyui_manager_path, "matrix_auth"), "w") as f:
|
||||
with open(os.path.join(core.manager_files_path, "matrix_auth"), "w") as f:
|
||||
f.write("\n".join([homeserver, username, password]))
|
||||
|
||||
|
||||
def set_comfyworkflows_auth(comfyworkflows_sharekey):
|
||||
with open(os.path.join(core.comfyui_manager_path, "comfyworkflows_sharekey"), "w") as f:
|
||||
with open(os.path.join(core.manager_files_path, "comfyworkflows_sharekey"), "w") as f:
|
||||
f.write(comfyworkflows_sharekey)
|
||||
|
||||
|
||||
@@ -368,9 +366,9 @@ async def share_art(request):
|
||||
text_content += f"{description}\n"
|
||||
if credits:
|
||||
text_content += f"\ncredits: {credits}\n"
|
||||
response = matrix.send_message(comfyui_share_room_id, text_content)
|
||||
response = matrix.send_content(comfyui_share_room_id, mxc_url, filename, 'm.image')
|
||||
response = matrix.send_content(comfyui_share_room_id, workflow_json_mxc_url, 'workflow.json', 'm.file')
|
||||
matrix.send_message(comfyui_share_room_id, text_content)
|
||||
matrix.send_content(comfyui_share_room_id, mxc_url, filename, 'm.image')
|
||||
matrix.send_content(comfyui_share_room_id, workflow_json_mxc_url, 'workflow.json', 'm.file')
|
||||
except:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
|
||||
@@ -11,7 +11,7 @@ import {
|
||||
showYouMLShareDialog
|
||||
} from "./comfyui-share-common.js";
|
||||
import { OpenArtShareDialog } from "./comfyui-share-openart.js";
|
||||
import { free_models, install_pip, install_via_git_url, manager_instance, rebootAPI, setManagerInstance, show_message } from "./common.js";
|
||||
import { free_models, install_pip, install_via_git_url, manager_instance, rebootAPI, migrateAPI, setManagerInstance, show_message } from "./common.js";
|
||||
import { ComponentBuilderDialog, getPureName, load_components, set_component_policy } from "./components-manager.js";
|
||||
import { CustomNodesManager } from "./custom-nodes-manager.js";
|
||||
import { ModelManager } from "./model-manager.js";
|
||||
@@ -239,6 +239,7 @@ function is_legacy_front() {
|
||||
document.head.appendChild(docStyle);
|
||||
|
||||
var update_comfyui_button = null;
|
||||
var switch_comfyui_button = null;
|
||||
var fetch_updates_button = null;
|
||||
var update_all_button = null;
|
||||
var badge_mode = "none";
|
||||
@@ -287,6 +288,18 @@ const style = `
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
|
||||
.cm-button-orange {
|
||||
width: 310px;
|
||||
height: 30px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
font-size: 17px !important;
|
||||
font-weight: bold;
|
||||
background-color: orange !important;
|
||||
color: black !important;
|
||||
}
|
||||
|
||||
.cm-experimental-button {
|
||||
width: 290px;
|
||||
height: 30px;
|
||||
@@ -595,6 +608,154 @@ async function updateComfyUI() {
|
||||
}
|
||||
}
|
||||
|
||||
function showVersionSelectorDialog(versions, current, onSelect) {
|
||||
const dialog = new ComfyDialog();
|
||||
dialog.element.style.zIndex = 100003;
|
||||
dialog.element.style.width = "300px";
|
||||
dialog.element.style.padding = "0";
|
||||
dialog.element.style.backgroundColor = "#2a2a2a";
|
||||
dialog.element.style.border = "1px solid #3a3a3a";
|
||||
dialog.element.style.borderRadius = "8px";
|
||||
dialog.element.style.boxSizing = "border-box";
|
||||
dialog.element.style.overflow = "hidden";
|
||||
|
||||
const contentStyle = {
|
||||
width: "300px",
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
alignItems: "center",
|
||||
padding: "20px",
|
||||
boxSizing: "border-box",
|
||||
gap: "15px"
|
||||
};
|
||||
|
||||
let selectedVersion = versions[0];
|
||||
|
||||
const versionList = $el("select", {
|
||||
multiple: true,
|
||||
size: Math.min(10, versions.length),
|
||||
style: {
|
||||
width: "260px",
|
||||
height: "auto",
|
||||
backgroundColor: "#383838",
|
||||
color: "#ffffff",
|
||||
border: "1px solid #4a4a4a",
|
||||
borderRadius: "4px",
|
||||
padding: "5px",
|
||||
boxSizing: "border-box"
|
||||
}
|
||||
},
|
||||
versions.map((v, index) => $el("option", {
|
||||
value: v,
|
||||
textContent: v,
|
||||
selected: v === current
|
||||
}))
|
||||
);
|
||||
|
||||
versionList.addEventListener('change', (e) => {
|
||||
selectedVersion = e.target.value;
|
||||
Array.from(e.target.options).forEach(opt => {
|
||||
opt.selected = opt.value === selectedVersion;
|
||||
});
|
||||
});
|
||||
|
||||
const content = $el("div", {
|
||||
style: contentStyle
|
||||
}, [
|
||||
$el("h3", {
|
||||
textContent: "Select Version",
|
||||
style: {
|
||||
color: "#ffffff",
|
||||
backgroundColor: "#1a1a1a",
|
||||
padding: "10px 15px",
|
||||
margin: "0 0 10px 0",
|
||||
width: "260px",
|
||||
textAlign: "center",
|
||||
borderRadius: "4px",
|
||||
boxSizing: "border-box",
|
||||
whiteSpace: "nowrap",
|
||||
overflow: "hidden",
|
||||
textOverflow: "ellipsis"
|
||||
}
|
||||
}),
|
||||
versionList,
|
||||
$el("div", {
|
||||
style: {
|
||||
display: "flex",
|
||||
justifyContent: "space-between",
|
||||
width: "260px",
|
||||
gap: "10px"
|
||||
}
|
||||
}, [
|
||||
$el("button", {
|
||||
textContent: "Cancel",
|
||||
onclick: () => dialog.close(),
|
||||
style: {
|
||||
flex: "1",
|
||||
padding: "8px",
|
||||
backgroundColor: "#4a4a4a",
|
||||
color: "#ffffff",
|
||||
border: "none",
|
||||
borderRadius: "4px",
|
||||
cursor: "pointer",
|
||||
whiteSpace: "nowrap",
|
||||
overflow: "hidden",
|
||||
textOverflow: "ellipsis"
|
||||
}
|
||||
}),
|
||||
$el("button", {
|
||||
textContent: "Select",
|
||||
onclick: () => {
|
||||
if (selectedVersion) {
|
||||
onSelect(selectedVersion);
|
||||
dialog.close();
|
||||
} else {
|
||||
alert("Please select a version.");
|
||||
}
|
||||
},
|
||||
style: {
|
||||
flex: "1",
|
||||
padding: "8px",
|
||||
backgroundColor: "#4CAF50",
|
||||
color: "#ffffff",
|
||||
border: "none",
|
||||
borderRadius: "4px",
|
||||
cursor: "pointer",
|
||||
whiteSpace: "nowrap",
|
||||
overflow: "hidden",
|
||||
textOverflow: "ellipsis"
|
||||
}
|
||||
}),
|
||||
])
|
||||
]);
|
||||
|
||||
dialog.show(content);
|
||||
}
|
||||
|
||||
async function switchComfyUI() {
|
||||
let res = await api.fetchApi(`/comfyui_manager/comfyui_versions`, { cache: "no-store" });
|
||||
|
||||
if(res.status == 200) {
|
||||
let obj = await res.json();
|
||||
|
||||
let versions = [];
|
||||
let default_version;
|
||||
|
||||
for(let v of obj.versions) {
|
||||
default_version = v;
|
||||
versions.push(v);
|
||||
}
|
||||
|
||||
showVersionSelectorDialog(versions, obj.current, (selected_version) => {
|
||||
api.fetchApi(`/comfyui_manager/comfyui_switch_version?ver=${selected_version}`, { cache: "no-store" });
|
||||
});
|
||||
}
|
||||
else {
|
||||
show_message('Failed to fetch ComfyUI versions.');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
async function fetchUpdates(update_check_checkbox) {
|
||||
let prev_text = fetch_updates_button.innerText;
|
||||
fetch_updates_button.innerText = "Fetching updates...";
|
||||
@@ -745,6 +906,14 @@ class ManagerMenuDialog extends ComfyDialog {
|
||||
() => updateComfyUI()
|
||||
});
|
||||
|
||||
switch_comfyui_button =
|
||||
$el("button.cm-button", {
|
||||
type: "button",
|
||||
textContent: "Switch ComfyUI",
|
||||
onclick:
|
||||
() => switchComfyUI()
|
||||
});
|
||||
|
||||
fetch_updates_button =
|
||||
$el("button.cm-button", {
|
||||
type: "button",
|
||||
@@ -815,6 +984,7 @@ class ManagerMenuDialog extends ComfyDialog {
|
||||
$el("br", {}, []),
|
||||
update_all_button,
|
||||
update_comfyui_button,
|
||||
switch_comfyui_button,
|
||||
fetch_updates_button,
|
||||
|
||||
$el("br", {}, []),
|
||||
@@ -838,6 +1008,28 @@ class ManagerMenuDialog extends ComfyDialog {
|
||||
}),
|
||||
];
|
||||
|
||||
let migration_btn =
|
||||
$el("button.cm-button-orange", {
|
||||
type: "button",
|
||||
textContent: "Migrate to New Node System",
|
||||
onclick: () => migrateAPI()
|
||||
});
|
||||
|
||||
migration_btn.style.display = 'none';
|
||||
|
||||
res.push(migration_btn);
|
||||
|
||||
api.fetchApi('/manager/need_to_migrate')
|
||||
.then(response => response.text())
|
||||
.then(text => {
|
||||
if (text === 'True') {
|
||||
migration_btn.style.display = 'block';
|
||||
}
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Error checking migration status:', error);
|
||||
});
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
@@ -1340,7 +1532,6 @@ app.registerExtension({
|
||||
|
||||
try {
|
||||
// new style Manager buttons
|
||||
|
||||
// unload models button into new style Manager button
|
||||
let cmGroup = new (await import("../../scripts/ui/components/buttonGroup.js")).ComfyButtonGroup(
|
||||
new(await import("../../scripts/ui/components/button.js")).ComfyButton({
|
||||
@@ -1354,6 +1545,19 @@ app.registerExtension({
|
||||
content: "Manager",
|
||||
classList: "comfyui-button comfyui-menu-mobile-collapse primary"
|
||||
}).element,
|
||||
new(await import("../../scripts/ui/components/button.js")).ComfyButton({
|
||||
icon: "star",
|
||||
action: () => {
|
||||
if(!manager_instance)
|
||||
setManagerInstance(new ManagerMenuDialog());
|
||||
|
||||
if(!CustomNodesManager.instance) {
|
||||
CustomNodesManager.instance = new CustomNodesManager(app, self);
|
||||
}
|
||||
CustomNodesManager.instance.show(CustomNodesManager.ShowMode.FAVORITES);
|
||||
},
|
||||
tooltip: "Show favorite custom node list"
|
||||
}).element,
|
||||
new(await import("../../scripts/ui/components/button.js")).ComfyButton({
|
||||
icon: "vacuum-outline",
|
||||
action: () => {
|
||||
|
||||
@@ -336,7 +336,7 @@ export class ShareDialogChooser extends ComfyDialog {
|
||||
key: "Copus",
|
||||
textContent: "Copus",
|
||||
website: "https://www.copus.io",
|
||||
description: "🔴 Permanently store and secure ownership of your workflow on the open-source platform: <a style='color:var(--input-text);' href='https://copus.io' target='_blank'>Copus.io</a>",
|
||||
description: "🔴 Earn simple. Get paid from your ComfyUI workflows—no revenue sharing. Ever.",
|
||||
onclick: () => {
|
||||
showCopusShareDialog();
|
||||
this.close();
|
||||
@@ -356,7 +356,8 @@ export class ShareDialogChooser extends ComfyDialog {
|
||||
});
|
||||
|
||||
buttons.forEach(b => {
|
||||
const button = $el("button", {
|
||||
const button = $el("button",
|
||||
{
|
||||
type: "button",
|
||||
textContent: b.textContent,
|
||||
onclick: b.onclick,
|
||||
@@ -369,8 +370,14 @@ export class ShareDialogChooser extends ComfyDialog {
|
||||
'padding': '5px 5px',
|
||||
'margin-bottom': '5px',
|
||||
'transition': 'background-color 0.3s',
|
||||
'position':'relative'
|
||||
}
|
||||
});
|
||||
},
|
||||
[
|
||||
$el("span", { style: {
|
||||
} }),
|
||||
]
|
||||
);
|
||||
button.addEventListener('mouseover', () => {
|
||||
button.style.backgroundColor = '#007BFF'; // Change color on hover
|
||||
});
|
||||
@@ -388,6 +395,28 @@ export class ShareDialogChooser extends ComfyDialog {
|
||||
},
|
||||
});
|
||||
|
||||
const copus_ui =$el("div", { style: {
|
||||
'position': 'absolute',
|
||||
'height': '100%',
|
||||
'left': '-25px',
|
||||
'top': '-26px',
|
||||
'width': '100%',
|
||||
'z-index':'-1',
|
||||
'background':'url("https://static.copus.io/images/client/202412/test/f28ac6ef8f4c6f3d5d50856a272ed02c.png")',
|
||||
'background-repeat': 'no-repeat',
|
||||
} });
|
||||
const copus_ui_bottom =$el("div", { style: {
|
||||
'position': 'absolute',
|
||||
'height': '100%',
|
||||
'left': '25px',
|
||||
'bottom': '-26px',
|
||||
'width': '100%',
|
||||
'transform':'scale(-1, -1)',
|
||||
'z-index':'-1',
|
||||
'background':'url("https://static.copus.io/images/client/202412/test/f28ac6ef8f4c6f3d5d50856a272ed02c.png")',
|
||||
'background-repeat': 'no-repeat',
|
||||
} });
|
||||
|
||||
const websiteLink = $el("a", {
|
||||
textContent: "🌐 Website",
|
||||
href: b.website,
|
||||
@@ -417,7 +446,6 @@ export class ShareDialogChooser extends ComfyDialog {
|
||||
'margin-bottom': '10px',
|
||||
}
|
||||
}, [button, websiteLink]);
|
||||
|
||||
const column = $el("div", {
|
||||
style: {
|
||||
'flex-basis': '100%',
|
||||
@@ -426,8 +454,17 @@ export class ShareDialogChooser extends ComfyDialog {
|
||||
'border': '1px solid #ddd',
|
||||
'border-radius': '5px',
|
||||
'box-shadow': '0 2px 4px rgba(0, 0, 0, 0.1)',
|
||||
'position':'relative'
|
||||
}
|
||||
}, [buttonLinkContainer, description]);
|
||||
}, [buttonLinkContainer, description
|
||||
,
|
||||
b.key ==='Copus' ?
|
||||
copus_ui
|
||||
:'',
|
||||
b.key ==='Copus' ?
|
||||
copus_ui_bottom
|
||||
:'',
|
||||
]);
|
||||
|
||||
container.appendChild(column);
|
||||
});
|
||||
|
||||
@@ -4,10 +4,10 @@ const env = "prod";
|
||||
|
||||
let DEFAULT_HOMEPAGE_URL = "https://copus.io";
|
||||
|
||||
let API_ENDPOINT = "https://api.client.prod.copus.io/copus-client";
|
||||
let API_ENDPOINT = "https://api.client.prod.copus.io";
|
||||
|
||||
if (env !== "prod") {
|
||||
API_ENDPOINT = "https://api.dev.copus.io/copus-client";
|
||||
API_ENDPOINT = "https://api.test.copus.io";
|
||||
DEFAULT_HOMEPAGE_URL = "https://test.copus.io";
|
||||
}
|
||||
|
||||
@@ -61,6 +61,7 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
[$el("div.comfy-modal-content", {}, [...this.createButtons()])]
|
||||
);
|
||||
this.selectedOutputIndex = 0;
|
||||
this.selectedOutput_lock = 0;
|
||||
this.selectedNodeId = null;
|
||||
this.uploadedImages = [];
|
||||
this.allFilesImages = [];
|
||||
@@ -190,10 +191,36 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
type: "text",
|
||||
placeholder: "Subtitle (Optional)",
|
||||
style: inputStyle,
|
||||
maxLength: "70",
|
||||
maxLength: "350",
|
||||
oninput: () => {
|
||||
const titleNum = this.SubTitleInput.value.length;
|
||||
subTitleNumDom.textContent = `${titleNum}/70`;
|
||||
subTitleNumDom.textContent = `${titleNum}/350`;
|
||||
},
|
||||
});
|
||||
this.LockInput = $el("input", {
|
||||
type: "text",
|
||||
placeholder: "",
|
||||
style: {
|
||||
width: "100px",
|
||||
padding: "7px",
|
||||
borderRadius: "4px",
|
||||
border: "1px solid #ddd",
|
||||
boxSizing: "border-box",
|
||||
},
|
||||
oninput: (event) => {
|
||||
let input = event.target.value;
|
||||
// Use a regular expression to match a number with up to two decimal places
|
||||
const regex = /^\d*\.?\d{0,2}$/;
|
||||
if (!regex.test(input)) {
|
||||
// If the input doesn't match, remove the last entered character
|
||||
event.target.value = input.slice(0, -1);
|
||||
}
|
||||
const numericValue = parseFloat(input);
|
||||
if (numericValue > 9999) {
|
||||
input = "9999";
|
||||
}
|
||||
// Update the input field with the valid value
|
||||
event.target.value = input;
|
||||
},
|
||||
});
|
||||
this.descriptionInput = $el("textarea", {
|
||||
@@ -297,7 +324,7 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
color: "#999",
|
||||
},
|
||||
},
|
||||
["0/70"]
|
||||
["0/350"]
|
||||
);
|
||||
const descriptionNumDom = $el(
|
||||
"label",
|
||||
@@ -333,6 +360,59 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
// descriptionNumDom,
|
||||
]);
|
||||
// switch between outputs section and additional inputs section
|
||||
this.radioButtons_lock = [];
|
||||
|
||||
this.radioButtonsCheck_lock = $el("input", {
|
||||
type: "radio",
|
||||
name: "output_type_lock",
|
||||
value: "0",
|
||||
id: "blockchain1_lock",
|
||||
checked: true,
|
||||
});
|
||||
this.radioButtonsCheckOff_lock = $el("input", {
|
||||
type: "radio",
|
||||
name: "output_type_lock",
|
||||
value: "1",
|
||||
id: "blockchain_lock",
|
||||
});
|
||||
|
||||
const blockChainSection_lock = $el("div", { style: sectionStyle }, [
|
||||
$el("label", { style: labelStyle }, ["6️⃣ Pay to download"]),
|
||||
$el(
|
||||
"label",
|
||||
{
|
||||
style: {
|
||||
marginTop: "10px",
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
cursor: "pointer",
|
||||
},
|
||||
},
|
||||
[
|
||||
this.radioButtonsCheck_lock,
|
||||
$el("div", { style: { marginLeft: "5px" ,display:'flex',alignItems:'center'} }, [
|
||||
$el("span", { style: { marginLeft: "5px" } }, ["ON"]),
|
||||
$el("span", { style: { marginLeft: "20px",marginRight:'10px' ,color:'#fff'} }, ["Price US$"]),
|
||||
this.LockInput
|
||||
]),
|
||||
]
|
||||
),
|
||||
$el(
|
||||
"label",
|
||||
{ style: { display: "flex", alignItems: "center", cursor: "pointer" } },
|
||||
[
|
||||
this.radioButtonsCheckOff_lock,
|
||||
$el("span", { style: { marginLeft: "5px" } }, ["OFF"]),
|
||||
]
|
||||
),
|
||||
|
||||
$el(
|
||||
"p",
|
||||
{ style: { fontSize: "16px", color: "#fff", margin: "10px 0 0 0" } },
|
||||
["Get paid from your workflow. You can change the price and withdraw your earnings on Copus."]
|
||||
),
|
||||
]);
|
||||
|
||||
this.radioButtons = [];
|
||||
|
||||
this.radioButtonsCheck = $el("input", {
|
||||
@@ -350,7 +430,7 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
});
|
||||
|
||||
const blockChainSection = $el("div", { style: sectionStyle }, [
|
||||
$el("label", { style: labelStyle }, ["6️⃣ Store on blockchain "]),
|
||||
$el("label", { style: labelStyle }, ["7️⃣ Store on blockchain "]),
|
||||
$el(
|
||||
"label",
|
||||
{
|
||||
@@ -380,6 +460,8 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
["Secure ownership with a permanent & decentralized storage"]
|
||||
),
|
||||
]);
|
||||
|
||||
|
||||
// Message Section
|
||||
this.message = $el(
|
||||
"div",
|
||||
@@ -441,6 +523,7 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
SubtitleSection,
|
||||
DescriptionSection,
|
||||
// contestSection,
|
||||
blockChainSection_lock,
|
||||
blockChainSection,
|
||||
this.message,
|
||||
buttonsSection,
|
||||
@@ -543,6 +626,8 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
subTitle: this.SubTitleInput.value,
|
||||
content: this.descriptionInput.value,
|
||||
storeOnChain: this.radioButtonsCheck.checked ? true : false,
|
||||
lockState:this.radioButtonsCheck_lock.checked ? 2 : 0,
|
||||
unlockPrice:this.LockInput.value,
|
||||
};
|
||||
|
||||
if (!this.keyInput.value) {
|
||||
@@ -557,6 +642,12 @@ export class CopusShareDialog extends ComfyDialog {
|
||||
throw new Error("Title is required");
|
||||
}
|
||||
|
||||
if(this.radioButtonsCheck_lock.checked){
|
||||
if (!this.LockInput.value){
|
||||
throw new Error("Price is required");
|
||||
}
|
||||
}
|
||||
|
||||
if (!this.uploadedImages.length) {
|
||||
if (this.selectedFile) {
|
||||
await this.uploadThumbnail(this.selectedFile);
|
||||
|
||||
17
js/common.js
17
js/common.js
@@ -29,6 +29,23 @@ export function rebootAPI() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
export async function migrateAPI() {
|
||||
if (confirm("When performing a migration, existing installed custom nodes will be renamed and the server will be restarted. Are you sure you want to apply this?\n\n(If you don't perform the migration, ComfyUI-Manager's start-up time will be longer each time due to re-checking during startup.)")) {
|
||||
try {
|
||||
await api.fetchApi("/manager/migrate_unmanaged_nodes");
|
||||
api.fetchApi("/manager/reboot");
|
||||
}
|
||||
catch(exception) {
|
||||
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
export var manager_instance = null;
|
||||
|
||||
export function setManagerInstance(obj) {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -235,7 +235,7 @@ const pageHtml = `
|
||||
<div class="cmm-manager-selection"></div>
|
||||
<div class="cmm-manager-message"></div>
|
||||
<div class="cmm-manager-footer">
|
||||
<button class="cmm-manager-close">Close</button>
|
||||
<button class="cmm-manager-back">Back</button>
|
||||
<div class="cmm-flex-auto"></div>
|
||||
</div>
|
||||
`;
|
||||
@@ -365,10 +365,12 @@ export class ModelManager {
|
||||
}
|
||||
},
|
||||
|
||||
".cmm-manager-close": {
|
||||
click: (e) => this.close()
|
||||
".cmm-manager-back": {
|
||||
click: (e) => {
|
||||
this.close()
|
||||
manager_instance.show();
|
||||
}
|
||||
},
|
||||
|
||||
};
|
||||
Object.keys(eventsMap).forEach(selector => {
|
||||
const target = this.element.querySelector(selector);
|
||||
|
||||
84
js/workflow-metadata.js
Normal file
84
js/workflow-metadata.js
Normal file
@@ -0,0 +1,84 @@
|
||||
/**
|
||||
* Attaches metadata to the workflow on save
|
||||
* - custom node pack version to all custom nodes used in the workflow
|
||||
*
|
||||
* Example metadata:
|
||||
"extra": {
|
||||
"node_versions": {
|
||||
"comfy-core": "v0.3.8-4-g0b2eb7f",
|
||||
"comfyui-easy-use": "1.2.5"
|
||||
}
|
||||
},
|
||||
*/
|
||||
|
||||
import { app } from "../../scripts/app.js";
|
||||
import { api } from "../../scripts/api.js";
|
||||
|
||||
class WorkflowMetadataExtension {
|
||||
constructor() {
|
||||
this.name = "Comfy.CustomNodesManager.WorkflowMetadata";
|
||||
this.installedNodeVersions = {};
|
||||
this.comfyCoreVersion = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the installed node versions
|
||||
* @returns {Promise<Record<string, string>>} The mapping from node name to version
|
||||
* version can either be a git commit hash or a semantic version such as "1.0.0"
|
||||
*/
|
||||
async getInstalledNodeVersions() {
|
||||
const res = await api.fetchApi("/customnode/installed");
|
||||
return await res.json();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the node versions for the given graph
|
||||
* @param {LGraph} graph The graph to get the node versions for
|
||||
* @returns {Promise<Record<string, string>>} The mapping from node name to version
|
||||
*/
|
||||
getGraphNodeVersions(graph) {
|
||||
const nodeVersions = {};
|
||||
for (const node of graph.nodes) {
|
||||
const nodeData = node.constructor.nodeData;
|
||||
// Frontend only nodes don't have nodeData
|
||||
if (!nodeData) {
|
||||
continue;
|
||||
}
|
||||
const modules = nodeData.python_module.split(".");
|
||||
|
||||
if (modules[0] === "custom_nodes") {
|
||||
const nodePackageName = modules[1].split("@")[0];
|
||||
const nodeVersion = this.installedNodeVersions[nodePackageName];
|
||||
nodeVersions[nodePackageName] = nodeVersion;
|
||||
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
||||
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
||||
} else {
|
||||
console.warn(`Unknown node source: ${nodeData.python_module}`);
|
||||
}
|
||||
}
|
||||
return nodeVersions;
|
||||
}
|
||||
|
||||
async init() {
|
||||
const extension = this;
|
||||
this.installedNodeVersions = await this.getInstalledNodeVersions();
|
||||
this.comfyCoreVersion = (await api.getSystemStats()).system.comfyui_version;
|
||||
|
||||
// Attach metadata when app.graphToPrompt is called.
|
||||
const originalSerialize = LGraph.prototype.serialize;
|
||||
LGraph.prototype.serialize = function () {
|
||||
const workflow = originalSerialize.apply(this, arguments);
|
||||
|
||||
// Add metadata to the workflow
|
||||
if (!workflow.extra) {
|
||||
workflow.extra = {};
|
||||
}
|
||||
const graph = this;
|
||||
workflow.extra["node_versions"] = extension.getGraphNodeVersions(graph);
|
||||
|
||||
return workflow;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
app.registerExtension(new WorkflowMetadataExtension());
|
||||
@@ -11,9 +11,108 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "emranemran",
|
||||
"title": "ComfyUI-FasterLivePortrait",
|
||||
"reference": "https://github.com/emranemran/ComfyUI-FasterLivePortrait",
|
||||
"files": [
|
||||
"https://github.com/emranemran/ComfyUI-FasterLivePortrait"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Load FasterLivePortrait Models, FasterLivePortrait Process"
|
||||
},
|
||||
{
|
||||
"author": "kandy",
|
||||
"title": "ComfyUI-KAndy",
|
||||
"reference": "https://github.com/kandy/ComfyUI-KAndy",
|
||||
"files": [
|
||||
"https://github.com/kandy/ComfyUI-KAndy"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Civit Prompt API, Load Image From Url, Civit Images API, KAndyNoiseCondition, KAndyImagesByCss"
|
||||
},
|
||||
{
|
||||
"author": "StartHua",
|
||||
"title": "Comfyui_leffa",
|
||||
"reference": "https://github.com/StartHua/Comfyui_leffa",
|
||||
"files": [
|
||||
"https://github.com/StartHua/Comfyui_leffa"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: CXH_Leffa_Viton_Load, CXH_Leffa_Viton_Run"
|
||||
},
|
||||
{
|
||||
"author": "logtd",
|
||||
"title": "ComfyUI-HunyuanLoom [WIP]",
|
||||
"id": "comfyui-42lux",
|
||||
"reference": "https://github.com/logtd/ComfyUI-HunyuanLoom",
|
||||
"files": [
|
||||
"https://github.com/logtd/ComfyUI-HunyuanLoom"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A set of nodes to edit videos using the Hunyuan Video model"
|
||||
},
|
||||
{
|
||||
"author": "jonnydolake",
|
||||
"title": "ComfyUI-AIR-Nodes",
|
||||
"reference": "https://github.com/jonnydolake/ComfyUI-AIR-Nodes",
|
||||
"files": [
|
||||
"https://github.com/jonnydolake/ComfyUI-AIR-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: String List To Prompt Schedule, Force Minimum Batch Size, Target Location (Crop), Target Location (Paste)"
|
||||
},
|
||||
{
|
||||
"author": "watarika",
|
||||
"title": "ComfyUI-exit [UNSAFE]",
|
||||
"reference": "https://github.com/watarika/ComfyUI-exit",
|
||||
"files": [
|
||||
"https://github.com/watarika/ComfyUI-exit"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node that terminates ComfyUI after a specified number of seconds. Use this node if you want Google Colab to automatically terminate after mass generation. It is necessary to disconnect and delete the Google Colab runtime on the Notebook side."
|
||||
},
|
||||
{
|
||||
"author": "Eagle-CN",
|
||||
"title": "ComfyUI-Addoor [UNSAFE]",
|
||||
"reference": "https://github.com/Eagle-CN/ComfyUI-Addoor",
|
||||
"files": [
|
||||
"https://github.com/Eagle-CN/ComfyUI-Addoor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: AD_BatchImageLoadFromDir, AD_DeleteLocalAny, AD_TextListToString, AD_AnyFileList, AD_ZipSave, AD_ImageSaver, AD_FluxTrainStepMath, AD_TextSaver, AD_PromptReplace.\nNOTE: This node pack includes nodes that can delete arbitrary files."
|
||||
},
|
||||
{
|
||||
"author": "jefferyharrell",
|
||||
"title": "ComfyUI_XMPMetadataNodes",
|
||||
"reference": "https://github.com/jefferyharrell/ComfyUI_XMPMetadataNodes",
|
||||
"files": [
|
||||
"https://github.com/jefferyharrell/ComfyUI_XMPMetadataNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Format Instructions, Path to Stem, Save Image With XMP Metadata, Load Image With XMP Metadata, Get Widget Value (String/Integer/Float), ..."
|
||||
},
|
||||
{
|
||||
"author": "backearth1",
|
||||
"title": "Comfyui-MiniMax-Video [WIP]",
|
||||
"reference": "https://github.com/backearth1/Comfyui-MiniMax-Video",
|
||||
"files": [
|
||||
"https://github.com/backearth1/Comfyui-MiniMax-Video"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI extension that integrates MiniMax AI's image-to-video and text-to-video generation capabilities, allowing users to easily convert static images into dynamic videos.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "FinetunersAI",
|
||||
"title": "Fast Group Link [WIP]",
|
||||
"id": "fast-group-link",
|
||||
"reference": "https://github.com/FinetunersAI/comfyui-fast-group-link",
|
||||
"files": [
|
||||
"https://github.com/FinetunersAI/comfyui-fast-group-link"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Link and control ComfyUI groups with a simple ON/OFF toggle. Control multiple groups at once with an easy-to-use interface.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "kijai",
|
||||
"title": "ComfyUI-MMAudio",
|
||||
@@ -103,16 +202,6 @@
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: StreamDiffusionConfig, StreamDiffusionAccelerationSampler, StreamDiffusionLoraLoader, StreamDiffusionAccelerationConfig, StreamDiffusionSimilarityFilterConfig, StreamDiffusionModelLoader, ..."
|
||||
},
|
||||
{
|
||||
"author": "jefferyharrell",
|
||||
"title": "ComfyUI-JHXMP",
|
||||
"reference": "https://github.com/jefferyharrell/ComfyUI-JHXMP",
|
||||
"files": [
|
||||
"https://github.com/jefferyharrell/ComfyUI-JHXMP"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Save Image With XMP Metadata"
|
||||
},
|
||||
{
|
||||
"author": "c0ffymachyne",
|
||||
@@ -124,16 +213,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This repo contains signal processing nodes for ComfyUI allowing for audio manipulation."
|
||||
},
|
||||
{
|
||||
"author": "wjl0313",
|
||||
"title": "ComfyUI_KimNodes [WIP]",
|
||||
"reference": "https://github.com/wjl0313/ComfyUI_KimNodes",
|
||||
"files": [
|
||||
"https://github.com/wjl0313/ComfyUI_KimNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Distribute_Icons, IconDistributeByGrid, YOLO_Crop, Crop_Paste, KimFilter\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "Aksaz",
|
||||
"title": "seamless-clone-comfyui",
|
||||
@@ -427,16 +506,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "In production environments, images are usually saved on storage servers such as S3, rather than local folders. So the method of placing images in local folders using ComfyUI's native LoadImage and SaveImage nodes cannot be used as a deployment service method, but can only be used as a temporary storage place for images. This requires a way to delete images from the input and output folders.\nThis node is used to delete images from the input and output folders. It is recommended to use this node through api call in the backend after the image processing is completed.[w/Users can use the file deletion feature through the workflow.]"
|
||||
},
|
||||
{
|
||||
"author": "kostenickj",
|
||||
"title": "comfyui-jk-easy-nodes",
|
||||
"reference": "https://github.com/kostenickj/comfyui-jk-easy-nodes",
|
||||
"files": [
|
||||
"https://github.com/kostenickj/comfyui-jk-easy-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:JK Easy Prompt, JK Easy HiRes Fix"
|
||||
},
|
||||
{
|
||||
"author": "yorkane",
|
||||
"title": "Comfy UI Robe Nodes [UNSAFE]",
|
||||
@@ -619,16 +688,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:CFGControl_SKIPCFG"
|
||||
},
|
||||
{
|
||||
"author": "PnthrLeo",
|
||||
"title": "comfyUI-image-search",
|
||||
"reference": "https://github.com/PnthrLeo/comfyUI-image-search",
|
||||
"files": [
|
||||
"https://github.com/PnthrLeo/comfyUI-image-search"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:CloseImagesSearcher"
|
||||
},
|
||||
{
|
||||
"author": "Clelstyn",
|
||||
"title": "ComfyUI-Inpaint_with_Detailer",
|
||||
@@ -679,16 +738,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom nodes for ComfyUI created for some of my workflows.\nLLM All-in-One Node, String Splitter Node, LoRA Switcher Node, Image Overlay Node"
|
||||
},
|
||||
{
|
||||
"author": "DoctorDiffusion",
|
||||
"title": "DoctorDiffusion [WIP]",
|
||||
"reference": "https://github.com/DoctorDiffusion/Doctor-Tools",
|
||||
"files": [
|
||||
"https://github.com/DoctorDiffusion/Doctor-Tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:Final Frame Selector, Video Merge.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "m-ai-studio",
|
||||
"title": "mai-prompt-progress",
|
||||
@@ -1463,16 +1512,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Browse to this endpoint to reload custom nodes for more streamlined development:\nhttp://127.0.0.1:8188/node_dev/reload/<module_name>"
|
||||
},
|
||||
{
|
||||
"author": "sebord",
|
||||
"title": "ComfyUI-LMCQ [WIP]",
|
||||
"reference": "https://github.com/sebord/ComfyUI-LMCQ",
|
||||
"files": [
|
||||
"https://github.com/sebord/ComfyUI-LMCQ"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI small node toolkit, this toolkit is mainly to update some practical small nodes, to make a contribution to the comfyui ecosystem, PS: 'LMCQ' is the abbreviation of the team name\nNOTE: The files in the repo are not organized, which may lead to update issues."
|
||||
},
|
||||
{
|
||||
"author": "ChrisColeTech",
|
||||
"title": "ComfyUI-Get-Random-File [UNSAFE]",
|
||||
@@ -2561,10 +2600,10 @@
|
||||
},
|
||||
{
|
||||
"author": "nat-chan",
|
||||
"title": "comfyui-in-memory-transceiver",
|
||||
"reference": "https://github.com/nat-chan/comfyui-in-memory-transceiver",
|
||||
"title": "Transceiver📡",
|
||||
"reference": "https://github.com/nat-chan/transceiver",
|
||||
"files": [
|
||||
"https://github.com/nat-chan/comfyui-in-memory-transceiver"
|
||||
"https://github.com/nat-chan/transceiver"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Why? When processing a large number of requests, the SaveImage and LoadImage nodes may be IO-limited, and using shared memory improves performance by passing images only through memory access, not through IO."
|
||||
|
||||
@@ -539,7 +539,8 @@
|
||||
"DevToolsNodeWithOptionalInput",
|
||||
"DevToolsNodeWithOutputList",
|
||||
"DevToolsNodeWithStringInput",
|
||||
"DevToolsNodeWithUnionInput"
|
||||
"DevToolsNodeWithUnionInput",
|
||||
"DevToolsSimpleSlider"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_devtools [WIP]"
|
||||
@@ -617,19 +618,6 @@
|
||||
"title_aux": "ComfyUI-Flashback"
|
||||
}
|
||||
],
|
||||
"https://github.com/DoctorDiffusion/Doctor-Tools": [
|
||||
[
|
||||
"FinalFrameSelector",
|
||||
"FirstFrameSelector",
|
||||
"PromptJournal",
|
||||
"ReverseFrameSequence",
|
||||
"VideoMerge",
|
||||
"YouTubeVideoDownloader"
|
||||
],
|
||||
{
|
||||
"title_aux": "DoctorDiffusion [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/DrMWeigand/ComfyUI_LineBreakInserter": [
|
||||
[
|
||||
"LineBreakInserter"
|
||||
@@ -638,6 +626,22 @@
|
||||
"title_aux": "ComfyUI_LineBreakInserter"
|
||||
}
|
||||
],
|
||||
"https://github.com/Eagle-CN/ComfyUI-Addoor": [
|
||||
[
|
||||
"AD_AnyFileList",
|
||||
"AD_BatchImageLoadFromDir",
|
||||
"AD_DeleteLocalAny",
|
||||
"AD_FluxTrainStepMath",
|
||||
"AD_ImageSaver",
|
||||
"AD_PromptReplace",
|
||||
"AD_TextListToString",
|
||||
"AD_TextSaver",
|
||||
"AD_ZipSave"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Addoor [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/Elawphant/ComfyUI-MusicGen": [
|
||||
[
|
||||
"AudioLoader",
|
||||
@@ -688,6 +692,14 @@
|
||||
"title_aux": "ComfyUI-AppIO"
|
||||
}
|
||||
],
|
||||
"https://github.com/FinetunersAI/comfyui-fast-group-link": [
|
||||
[
|
||||
"FastGroupLink"
|
||||
],
|
||||
{
|
||||
"title_aux": "Fast Group Link [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/Fucci-Mateo/ComfyUI-Airtable": [
|
||||
[
|
||||
"Push pose to Airtable"
|
||||
@@ -1021,16 +1033,6 @@
|
||||
"title_aux": "ComfyUI-SpaceFlower"
|
||||
}
|
||||
],
|
||||
"https://github.com/PnthrLeo/comfyUI-image-search": [
|
||||
[
|
||||
"AreasGenerator",
|
||||
"BatchImageGetter",
|
||||
"CloseImagesSearcher"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyUI-image-search"
|
||||
}
|
||||
],
|
||||
"https://github.com/Poseidon-fan/ComfyUI-fileCleaner": [
|
||||
[
|
||||
"Clean input and output file"
|
||||
@@ -1168,6 +1170,8 @@
|
||||
[
|
||||
"MojenAnalyzeProcessor",
|
||||
"MojenLogPercent",
|
||||
"MojenNSFWClassifier",
|
||||
"MojenNSFWClassifierSave",
|
||||
"MojenStyleExtractor",
|
||||
"MojenTagProcessor"
|
||||
],
|
||||
@@ -1264,6 +1268,15 @@
|
||||
"title_aux": "Comfyui_Flux_Style_Ctr [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/StartHua/Comfyui_leffa": [
|
||||
[
|
||||
"CXH_Leffa_Viton_Load",
|
||||
"CXH_Leffa_Viton_Run"
|
||||
],
|
||||
{
|
||||
"title_aux": "Comfyui_leffa"
|
||||
}
|
||||
],
|
||||
"https://github.com/T8star1984/comfyui-purgevram": [
|
||||
[
|
||||
"PurgeVRAM"
|
||||
@@ -1483,6 +1496,16 @@
|
||||
"title_aux": "ComfyUI-FluxRegionAttention [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/backearth1/Comfyui-MiniMax-Video": [
|
||||
[
|
||||
"MiniMaxAIAPIClient",
|
||||
"MiniMaxImage2Video",
|
||||
"MiniMaxPreviewVideo"
|
||||
],
|
||||
{
|
||||
"title_aux": "Comfyui-MiniMax-Video [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/baicai99/ComfyUI-FrameSkipping": [
|
||||
[
|
||||
"FrameSelector",
|
||||
@@ -1866,6 +1889,7 @@
|
||||
"DisableNoise",
|
||||
"DualCFGGuider",
|
||||
"DualCLIPLoader",
|
||||
"EmptyHunyuanLatentVideo",
|
||||
"EmptyImage",
|
||||
"EmptyLTXVLatentVideo",
|
||||
"EmptyLatentAudio",
|
||||
@@ -1933,6 +1957,8 @@
|
||||
"LatentSubtract",
|
||||
"LatentUpscale",
|
||||
"LatentUpscaleBy",
|
||||
"Load3D",
|
||||
"Load3DAnimation",
|
||||
"LoadAudio",
|
||||
"LoadImage",
|
||||
"LoadImageMask",
|
||||
@@ -1940,6 +1966,7 @@
|
||||
"LoraLoader",
|
||||
"LoraLoaderModelOnly",
|
||||
"LoraSave",
|
||||
"Mahiro",
|
||||
"MaskComposite",
|
||||
"MaskToImage",
|
||||
"ModelMergeAdd",
|
||||
@@ -1973,6 +2000,7 @@
|
||||
"PhotoMakerLoader",
|
||||
"PolyexponentialScheduler",
|
||||
"PorterDuffImageComposite",
|
||||
"Preview3D",
|
||||
"PreviewAudio",
|
||||
"PreviewImage",
|
||||
"RandomNoise",
|
||||
@@ -2247,6 +2275,15 @@
|
||||
"title_aux": "ComfyUI-Ty"
|
||||
}
|
||||
],
|
||||
"https://github.com/emranemran/ComfyUI-FasterLivePortrait": [
|
||||
[
|
||||
"FasterLivePortraitProcess",
|
||||
"LoadFasterLivePortraitModels"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-FasterLivePortrait"
|
||||
}
|
||||
],
|
||||
"https://github.com/endman100/ComfyUI-SaveAndLoadPromptCondition": [
|
||||
[
|
||||
"LoadContditioning",
|
||||
@@ -2639,14 +2676,6 @@
|
||||
"title_aux": "ComfyUI-LuminaNext [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/jefferyharrell/ComfyUI-JHXMP": [
|
||||
[
|
||||
"JHSaveImageWithXMPMetadata"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-JHXMP"
|
||||
}
|
||||
],
|
||||
"https://github.com/jgbrblmd/ComfyUI-ComfyFluxSize": [
|
||||
[
|
||||
"ComfyFluxSize"
|
||||
@@ -2758,6 +2787,17 @@
|
||||
"title_aux": "jn_node_suite_comfyui [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/jonnydolake/ComfyUI-AIR-Nodes": [
|
||||
[
|
||||
"ForceMinimumBatchSize",
|
||||
"TargetLocationCrop",
|
||||
"TargetLocationPaste",
|
||||
"string_list_to_prompt_schedule"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-AIR-Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/jordancoult/ComfyUI_HelpfulNodes": [
|
||||
[
|
||||
"JCo_CropAroundKPS"
|
||||
@@ -2796,6 +2836,18 @@
|
||||
"title_aux": "ComfyUI-Adapter [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/kandy/ComfyUI-KAndy": [
|
||||
[
|
||||
"KAndyCivitImagesAPI",
|
||||
"KAndyCivitPromptAPI",
|
||||
"KAndyImagesByCss",
|
||||
"KAndyLoadImageFromUrl",
|
||||
"KAndyNoiseCondition"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-KAndy"
|
||||
}
|
||||
],
|
||||
"https://github.com/kappa54m/ComfyUI_Usability": [
|
||||
[
|
||||
"KLoadImageByPath",
|
||||
@@ -2875,13 +2927,24 @@
|
||||
[
|
||||
"DownloadAndLoadHyVideoTextEncoder",
|
||||
"HyVideoBlockSwap",
|
||||
"HyVideoCFG",
|
||||
"HyVideoCustomPromptTemplate",
|
||||
"HyVideoDecode",
|
||||
"HyVideoEmptyTextEmbeds",
|
||||
"HyVideoEncode",
|
||||
"HyVideoInverseSampler",
|
||||
"HyVideoLatentPreview",
|
||||
"HyVideoLoraBlockEdit",
|
||||
"HyVideoLoraSelect",
|
||||
"HyVideoModelLoader",
|
||||
"HyVideoPromptMixSampler",
|
||||
"HyVideoReSampler",
|
||||
"HyVideoSTG",
|
||||
"HyVideoSampler",
|
||||
"HyVideoTextEmbedsLoad",
|
||||
"HyVideoTextEmbedsSave",
|
||||
"HyVideoTextEncode",
|
||||
"HyVideoTextImageEncode",
|
||||
"HyVideoTorchCompileSettings",
|
||||
"HyVideoVAELoader"
|
||||
],
|
||||
@@ -2948,31 +3011,6 @@
|
||||
"title_aux": "KayTool"
|
||||
}
|
||||
],
|
||||
"https://github.com/kostenickj/comfyui-jk-easy-nodes": [
|
||||
[
|
||||
"EasyHRFix",
|
||||
"EasyHRFix_Context",
|
||||
"JKAnythingToString",
|
||||
"JKBigContext",
|
||||
"JKDynamicThresholdingMultiModel",
|
||||
"JKEasyCheckpointLoader",
|
||||
"JKEasyDetailer",
|
||||
"JKEasyDetailer_Context",
|
||||
"JKEasyKSampler_Context",
|
||||
"JKEasyWatermark",
|
||||
"JKInspireSchedulerAdapter",
|
||||
"JKLilContext",
|
||||
"JKMultiModelSamplerUnpatch",
|
||||
"JKStringEmpty",
|
||||
"JKStringEquals",
|
||||
"JKStringNotEmpty",
|
||||
"JKStringNotEquals",
|
||||
"JKStringToSamplerAdapter"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-jk-easy-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/kuschanow/ComfyUI-SD-Slicer": [
|
||||
[
|
||||
"SdSlicer"
|
||||
@@ -3113,7 +3151,9 @@
|
||||
"ConfigureModifiedFlux",
|
||||
"CreateRegionalCond",
|
||||
"FlowEditForwardSampler",
|
||||
"FlowEditGuider",
|
||||
"FlowEditReverseSampler",
|
||||
"FlowEditSampler",
|
||||
"FluxAttnOverride",
|
||||
"FluxDeGuidance",
|
||||
"FluxForwardODESampler",
|
||||
@@ -3134,6 +3174,14 @@
|
||||
"title_aux": "ComfyUI-Fluxtapoz [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/logtd/ComfyUI-HunyuanLoom": [
|
||||
[
|
||||
"HyVideoFlowEditSampler"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-HunyuanLoom [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/logtd/ComfyUI-Veevee": [
|
||||
[
|
||||
"ApplyVVModel",
|
||||
@@ -3527,6 +3575,7 @@
|
||||
"CLIPTextEncodeBREAK",
|
||||
"CLIPTokenCounter",
|
||||
"ConditioningZeroOutCombine",
|
||||
"ConvertTimestepToSigma",
|
||||
"DynSamplerSelect",
|
||||
"EmptyLatentImageAR",
|
||||
"FreeU2PPM",
|
||||
@@ -3595,14 +3644,13 @@
|
||||
],
|
||||
"https://github.com/pschroedl/ComfyUI-StreamDiffusion": [
|
||||
[
|
||||
"StreamDiffusionAccelerationConfig",
|
||||
"StreamDiffusionAccelerationSampler",
|
||||
"StreamDiffusionAdvancedConfig",
|
||||
"StreamDiffusionCheckpointLoader",
|
||||
"StreamDiffusionConfig",
|
||||
"StreamDiffusionDeviceConfig",
|
||||
"StreamDiffusionLPCheckpointLoader",
|
||||
"StreamDiffusionLoraLoader",
|
||||
"StreamDiffusionPrebuiltConfig",
|
||||
"StreamDiffusionSimilarityFilterConfig",
|
||||
"StreamDiffusionSampler",
|
||||
"StreamDiffusionTensorRTEngineLoader"
|
||||
],
|
||||
{
|
||||
@@ -3683,18 +3731,6 @@
|
||||
"title_aux": "comfyui-creative-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/sebord/ComfyUI-LMCQ": [
|
||||
[
|
||||
"LmcqImageSaver",
|
||||
"LmcqImageSaverTransit",
|
||||
"LmcqImageSaverWeb",
|
||||
"LmcqInputValidator",
|
||||
"LmcqLoadFluxNF4Checkpoint"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-LMCQ [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/sh570655308/ComfyUI-GigapixelAI": [
|
||||
[
|
||||
"GigapixelAI",
|
||||
@@ -4014,6 +4050,14 @@
|
||||
"title_aux": "ComfyUI-Image-Utils"
|
||||
}
|
||||
],
|
||||
"https://github.com/watarika/ComfyUI-exit": [
|
||||
[
|
||||
"ExitComfyUI"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-exit [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/willblaschko/ComfyUI-Unload-Models": [
|
||||
[
|
||||
"DeleteAnyObject",
|
||||
@@ -4041,19 +4085,6 @@
|
||||
"title_aux": "Comfyui-zZzZz [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/wjl0313/ComfyUI_KimNodes": [
|
||||
[
|
||||
"Crop_Paste",
|
||||
"Distribute_Icons",
|
||||
"IconDistributeByGrid",
|
||||
"KimFilter",
|
||||
"Text_Match",
|
||||
"YOLO_Crop"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_KimNodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/wormley/comfyui-wormley-nodes": [
|
||||
[
|
||||
"CheckpointVAELoaderSimpleText",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -109,6 +109,16 @@
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a development respository for debugging migration of StableSR to ComfyUI\n\nNOTE:Forked from [https://github.com/gameltb/Comfyui-StableSR]\nPut the StableSR [a/webui_786v_139.ckpt](https://huggingface.co/Iceclear/StableSR/resolve/main/webui_768v_139.ckpt) model into Comyfui/models/stablesr/, Put the StableSR [a/stablesr_768v_000139.ckpt](https://huggingface.co/Iceclear/StableSR/resolve/main/stablesr_768v_000139.ckpt) model into Comyfui/models/checkpoints/"
|
||||
},
|
||||
{
|
||||
"author": "city96",
|
||||
"title": "Efficient-Large-Model/Extra Models for ComfyUI",
|
||||
"reference": "https://github.com/Efficient-Large-Model/ComfyUI_ExtraModels",
|
||||
"files": [
|
||||
"https://github.com/Efficient-Large-Model/ComfyUI_ExtraModels"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A forked version of ComfyUI_ExtraModels. (modified by Efficient-Large-Model)"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -10,6 +10,38 @@
|
||||
},
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "jefferyharrell",
|
||||
"title": "ComfyUI-JHXMP [REMOVED]",
|
||||
"reference": "https://github.com/jefferyharrell/ComfyUI-JHXMP",
|
||||
"files": [
|
||||
"https://github.com/jefferyharrell/ComfyUI-JHXMP"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Save Image With XMP Metadata"
|
||||
},
|
||||
{
|
||||
"author": "viperyl",
|
||||
"title": "ComfyUI-BiRefNet [NOT MAINTAINED]",
|
||||
"id": "comfyui-birefnet",
|
||||
"reference": "https://github.com/viperyl/ComfyUI-BiRefNet",
|
||||
"files": [
|
||||
"https://github.com/viperyl/ComfyUI-BiRefNet"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Bilateral Reference Network achieves SOTA result in multi Salient Object Segmentation dataset, this repo pack BiRefNet as ComfyUI nodes, and make this SOTA model easier use for everyone."
|
||||
},
|
||||
{
|
||||
"author": "asagi4",
|
||||
"title": "ComfyUI prompt control (LEGACY VERSION)",
|
||||
"reference": "https://github.com/asagi4/comfyui-prompt-control-legacy",
|
||||
"files": [
|
||||
"https://github.com/asagi4/comfyui-prompt-control-legacy"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "WARNING: These nodes exist only to reproduce old workflows. They are unmaintained See https://github.com/asagi4/comfyui-prompt-control for the revised, current version of prompt control."
|
||||
},
|
||||
{
|
||||
"author": "doomy23",
|
||||
"title": "ComfyUI-D00MYsNodes [REMOVED]",
|
||||
|
||||
@@ -9,7 +9,241 @@
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"author": "42lux",
|
||||
"title": "Just a bunch of QOL nodes by 42lux",
|
||||
"id": "comfyui-42lux",
|
||||
"reference": "https://github.com/42lux/ComfyUI-42lux",
|
||||
"files": [
|
||||
"https://github.com/42lux/ComfyUI-42lux"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Just a bunch of QOL nodes. Normalized Flux Sampling, High Res Latent Picker, Textbox with Token Counter."
|
||||
},
|
||||
{
|
||||
"author": "if-ai",
|
||||
"title": "ComfyUI-IF_Trellis",
|
||||
"reference": "https://github.com/if-ai/ComfyUI-IF_Trellis",
|
||||
"files": [
|
||||
"https://github.com/if-ai/ComfyUI-IF_Trellis"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI TRELLIS is a large 3D asset generation in various formats, such as Radiance Fields, 3D Gaussians, and meshes. The cornerstone of TRELLIS is a unified Structured LATent (SLAT) representation that allows decoding to different output formats and Rectified Flow Transformers tailored for SLAT as the powerful backbones."
|
||||
},
|
||||
{
|
||||
"author": "itsjustregi",
|
||||
"title": "ComfyUI-EasyNoobai",
|
||||
"reference": "https://github.com/regiellis/ComfyUI-EasyNoobai",
|
||||
"files": [
|
||||
"https://github.com/regiellis/ComfyUI-EasyNoobai"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Simple set of nodes to assist with prompt generation for NOOBAI XL / Illustrious models"
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-textarea-command",
|
||||
"reference": "https://github.com/shinich39/comfyui-textarea-command",
|
||||
"files": [
|
||||
"https://github.com/shinich39/comfyui-textarea-command"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Add command and comment in textarea. (e.g. // Disabled line)"
|
||||
},
|
||||
{
|
||||
"author": "IamCreateAI",
|
||||
"title": "ComfyUI-Ruyi",
|
||||
"reference": "https://github.com/IamCreateAI/Ruyi-Models",
|
||||
"files": [
|
||||
"https://github.com/IamCreateAI/Ruyi-Models"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI wrapper nodes for Ruyi, an image-to-video model by CreateAI."
|
||||
},
|
||||
{
|
||||
"author": "codeprimate",
|
||||
"title": "ComfyUI Mask Contour Processor",
|
||||
"reference": "https://github.com/codeprimate/ComfyUI-MaskContourProcessor",
|
||||
"files": [
|
||||
"https://github.com/codeprimate/ComfyUI-MaskContourProcessor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI node that improves inpainting results by extending mask boundaries with geometric patterns, helping create smoother transitions and better context for AI-driven image completion."
|
||||
},
|
||||
{
|
||||
"author": "LiJT",
|
||||
"title": "Gemini prompt generator JT version",
|
||||
"reference": "https://github.com/LiJT/ComfyUI-Gemini-Prompt-Generator-JT",
|
||||
"files": [
|
||||
"https://github.com/LiJT/ComfyUI-Gemini-Prompt-Generator-JT"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom node to use Gemini 1.5 and above for Comfyui to generates theme related prompts for image generators"
|
||||
},
|
||||
{
|
||||
"author": "Miyuutsu",
|
||||
"title": "comfyui-save-vpred",
|
||||
"reference": "https://github.com/Miyuutsu/comfyui-save-vpred",
|
||||
"files": [
|
||||
"https://github.com/Miyuutsu/comfyui-save-vpred"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Simple ComfyUI Custom Node to enable saving checkpoints with V-Pred ZTSNR tensors and metadata."
|
||||
},
|
||||
{
|
||||
"author": "Doctor Diffusion",
|
||||
"title": "ComfyUI BEN - Background Erase Network",
|
||||
"reference": "https://github.com/DoctorDiffusion/ComfyUI-BEN",
|
||||
"files": [
|
||||
"https://github.com/DoctorDiffusion/ComfyUI-BEN"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Remove backgrounds from images with [a/BEN](https://huggingface.co/PramaLLC/BEN) in ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "RyanOnTheInside",
|
||||
"title": "Nodes for use with real-time applications of ComfyUI",
|
||||
"id": "realtimenodes",
|
||||
"reference": "https://github.com/ryanontheinside/ComfyUI_RealTimeNodes",
|
||||
"files": [
|
||||
"https://github.com/ryanontheinside/ComfyUI_RealTimeNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These nodes are for real-time applications of ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "kostenickj",
|
||||
"title": "comfyui-jk-easy-nodes",
|
||||
"reference": "https://github.com/kostenickj/jk-comfyui-helpers",
|
||||
"files": [
|
||||
"https://github.com/kostenickj/jk-comfyui-helpers"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: EasyHRFix, EasyHRFix_Context, JKAnythingToString, JKBigContext, JKDynamicThresholdingMultiModel, JKEasyCheckpointLoader, JKEasyDetailer, JKEasyDetailer_Context, JKEasyKSampler_Context, JKEasyWatermark, JKInspireSchedulerAdapter, JKLilContext, JKMultiModelSamplerUnpatch, JKStringEmpty, JKStringEquals, JKStringNotEmpty, JKStringNotEquals, JKStringToSamplerAdapter"
|
||||
},
|
||||
{
|
||||
"author": "smthemex",
|
||||
"title": "ComfyUI_TRELLIS",
|
||||
"reference": "https://github.com/smthemex/ComfyUI_TRELLIS",
|
||||
"files": [
|
||||
"https://github.com/smthemex/ComfyUI_TRELLIS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "You can use TRELLIS in comfyUI\n[a/TRELLIS](https://github.com/microsoft/TRELLIS/tree/main), Structured 3D Latents for Scalable and Versatile 3D Generation"
|
||||
},
|
||||
{
|
||||
"author": "DarioFT",
|
||||
"title": "ComfyUI-VideoDirCombiner",
|
||||
"reference": "https://github.com/DarioFT/ComfyUI-VideoDirCombiner",
|
||||
"files": [
|
||||
"https://github.com/DarioFT/ComfyUI-VideoDirCombiner"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node for ComfyUI that combines multiple videos from a directory with optional transitions and background music. Perfect for batch processing and creating seamless video compilations."
|
||||
},
|
||||
{
|
||||
"author": "ShmuelRonen",
|
||||
"title": "ComfyUI-Gemini_Flash_2.0_Exp",
|
||||
"reference": "https://github.com/ShmuelRonen/ComfyUI-Gemini_Flash_2.0_Exp",
|
||||
"files": [
|
||||
"https://github.com/ShmuelRonen/ComfyUI-Gemini_Flash_2.0_Exp"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that integrates Google's Gemini Flash 2.0 Experimental model, enabling multimodal analysis of text, images, video frames, and audio directly within ComfyUI workflows."
|
||||
},
|
||||
{
|
||||
"author": "Runware Inc.",
|
||||
"title": "Runware.ai ComfyUI Inference API Integration",
|
||||
"id": "runware",
|
||||
"reference": "https://github.com/Runware/ComfyUI-Runware",
|
||||
"files": [
|
||||
"https://github.com/Runware/ComfyUI-Runware"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Runware Inference API Integration for ComfyUI (No GPU Required)."
|
||||
},
|
||||
{
|
||||
"author": "Kim",
|
||||
"title": "ComfyUI_KimNodes",
|
||||
"reference": "https://github.com/wjl0313/ComfyUI_KimNodes",
|
||||
"files": [
|
||||
"https://github.com/wjl0313/ComfyUI_KimNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Image effects, icon layout processing, cropping — this toolbox is a node library organized according to my own needs."
|
||||
},
|
||||
{
|
||||
"author": "InstantStudioAI",
|
||||
"title": "ComfyUI-InstantStudio",
|
||||
"reference": "https://github.com/InstantStudioAI/ComfyUI-InstantStudio",
|
||||
"files": [
|
||||
"https://github.com/InstantStudioAI/ComfyUI-InstantStudio"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of nodes to enhance your experience with ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "sebord",
|
||||
"title": "ComfyUI-LMCQ",
|
||||
"reference": "https://github.com/sebord/ComfyUI-LMCQ",
|
||||
"files": [
|
||||
"https://github.com/sebord/ComfyUI-LMCQ"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI small node toolkit, this toolkit is mainly to update some practical small nodes, to make a contribution to the comfyui ecosystem, PS: 'LMCQ' is the abbreviation of the team name\nNOTE: The files in the repo are not organized, which may lead to update issues."
|
||||
},
|
||||
{
|
||||
"author": "krich-cto",
|
||||
"title": "ComfyUI Flow Control",
|
||||
"reference": "https://github.com/krich-cto/ComfyUI-Flow-Control",
|
||||
"files": [
|
||||
"https://github.com/krich-cto/ComfyUI-Flow-Control"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is an Extension for ComfyUI. This project will help you control the flow logic via many controls."
|
||||
},
|
||||
{
|
||||
"author": "Tlant",
|
||||
"title": "ComfyUI-OllamaPromptsGeneratorTlant",
|
||||
"reference": "https://github.com/Tlant/ComfyUI-OllamaPromptsGeneratorTlant",
|
||||
"files": [
|
||||
"https://github.com/Tlant/ComfyUI-OllamaPromptsGeneratorTlant"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Use ollama to generate prompts based on reference text in comfyui."
|
||||
},
|
||||
{
|
||||
"author": "StartHua",
|
||||
"title": "Comfyui_Gemini2",
|
||||
"reference": "https://github.com/StartHua/Comfyui_Gemini2",
|
||||
"files": [
|
||||
"https://github.com/StartHua/Comfyui_Gemini2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:CXH_Gemini2_TX, CXH_Gemini2_Vision, CXH_Local_Prompt"
|
||||
},
|
||||
{
|
||||
"author": "shannooty",
|
||||
"title": "ComfyUI Timer Nodes",
|
||||
"id": "comfyui-timer-nodes",
|
||||
"reference": "https://github.com/Shannooty/ComfyUI-Timer-Nodes",
|
||||
"files": [
|
||||
"https://github.com/Shannooty/ComfyUI-Timer-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This project provides a set of custom timer nodes for ComfyUI. These nodes allow you to measure and append runtime information to strings or other data during your workflow."
|
||||
},
|
||||
{
|
||||
"author": "HM-RunningHub",
|
||||
"title": "ComfyUI_RH_OminiControl",
|
||||
"reference": "https://github.com/HM-RunningHub/ComfyUI_RH_OminiControl",
|
||||
"files": [
|
||||
"https://github.com/HM-RunningHub/ComfyUI_RH_OminiControl"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI_RH_OminiControl is a ComfyUI plugin based on OminiControl By splitting the pipeline load, the plugin efficiently runs on NVIDIA RTX 4090 GPUs. Additionally, the spatial and fill functionalities are generated using the schnell model, reducing the number of sampling steps and improving overall efficiency."
|
||||
},
|
||||
{
|
||||
"author": "Dr.Lt.Data",
|
||||
"title": "ComfyUI Impact Subpack",
|
||||
@@ -49,7 +283,7 @@
|
||||
"https://github.com/if-ai/ComfyUI-IF_MemoAvatar"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a ComfyUI implementation of MEMO (Memory-Guided Diffusion for Expressive Talking Video Generation), which enables the creation of expressive talking avatar videos from a single image and audio input."
|
||||
"description": "ComfyUI MemoAvatar is a talking head avatar generator using Memory-Guided Diffusion for Expressive Talking Video Generation"
|
||||
},
|
||||
{
|
||||
"author": "DesertPixelAi",
|
||||
@@ -462,241 +696,6 @@
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Collection of nodes supports using comfyUi more quickly and conveniently (Auto download model, image, easy merger ...)"
|
||||
},
|
||||
{
|
||||
"author": "lujiazho",
|
||||
"title": "ComfyUI-CatvtonFluxWrapper",
|
||||
"id": "comfyui-catvton-flux-wrapper",
|
||||
"reference": "https://github.com/lujiazho/ComfyUI-CatvtonFluxWrapper",
|
||||
"files": [
|
||||
"https://github.com/lujiazho/ComfyUI-CatvtonFluxWrapper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-CatvtonFluxWrapper provides ComfyUI nodes for diffusers implementation of Catvton-Flux."
|
||||
},
|
||||
{
|
||||
"author": "lldacing",
|
||||
"title": "ComfyUI_StableHair_ll",
|
||||
"id": "comfyui_stablehair_ll",
|
||||
"reference": "https://github.com/lldacing/ComfyUI_StableHair_ll",
|
||||
"files": [
|
||||
"https://github.com/lldacing/ComfyUI_StableHair_ll"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Hair transfer"
|
||||
},
|
||||
{
|
||||
"author": "Kling AI",
|
||||
"title": "ComfyUI-KLingAI-API",
|
||||
"reference": "https://github.com/KwaiVGI/ComfyUI-KLingAI-API",
|
||||
"files": [
|
||||
"https://github.com/KwaiVGI/ComfyUI-KLingAI-API"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Provide high-quality video and image generation capabilities, meeting creators' needs for creative content production and management through more convenient operations, richer functionalities, professional parameters, and stunning effects."
|
||||
},
|
||||
{
|
||||
"author": "toyxyz",
|
||||
"title": "ComfyUI_rgbx_Wrapper",
|
||||
"reference": "https://github.com/toyxyz/ComfyUI_rgbx_Wrapper",
|
||||
"files": [
|
||||
"https://github.com/toyxyz/ComfyUI_rgbx_Wrapper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is the rgb2x wrapper node for ComfyUI. The required models are automatically downloaded on the first run.\noriginal project : [a/https://github.com/zheng95z/rgbx](original project : https://github.com/zheng95z/rgbx)"
|
||||
},
|
||||
{
|
||||
"author": "itsjustregi",
|
||||
"title": "ComfyUI-EasyPony",
|
||||
"reference": "https://github.com/regiellis/ComfyUI-EasyPony",
|
||||
"files": [
|
||||
"https://github.com/regiellis/ComfyUI-EasyPony"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Easy Pony is a helper node that simplifies the process of adding scoring and other attributes to prompts when using Pony models."
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-LLaMA-Mesh",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-LLaMA-Mesh",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-LLaMA-Mesh"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI nodes for LLaMA-Mesh model."
|
||||
},
|
||||
{
|
||||
"author": "mrhan1993",
|
||||
"title": "ComfyUI-Fooocus",
|
||||
"reference": "https://github.com/mrhan1993/ComfyUI-Fooocus",
|
||||
"files": [
|
||||
"https://github.com/mrhan1993/ComfyUI-Fooocus"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This extension provides image generation features based on Fooocus."
|
||||
},
|
||||
{
|
||||
"author": "steelan9199",
|
||||
"title": "ComfyUI-Teeth",
|
||||
"reference": "https://github.com/steelan9199/ComfyUI-Teeth",
|
||||
"files": [
|
||||
"https://github.com/steelan9199/ComfyUI-Teeth"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Index List, TextSplitByDelimiter"
|
||||
},
|
||||
{
|
||||
"author": "takemetosiberia",
|
||||
"title": "SAMURAI Nodes for ComfyUI",
|
||||
"reference": "https://github.com/takemetosiberia/ComfyUI-SAMURAI--SAM2-",
|
||||
"files": [
|
||||
"https://github.com/takemetosiberia/ComfyUI-SAMURAI--SAM2-"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI nodes for video object segmentation using [a/SAMURAI](https://github.com/yangchris11/samurai) model."
|
||||
},
|
||||
{
|
||||
"author": "motivated3",
|
||||
"title": "ComfyUI MiaoShua Creator",
|
||||
"id": "comfyui-shua-creator",
|
||||
"reference": "https://github.com/motivated3/comfyui-shua-creator",
|
||||
"files": [
|
||||
"https://github.com/motivated3/comfyui-shua-creator"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "With the MiaoShua creator's end, you can use this plugin to upload debugged workflows for consumer end users to use."
|
||||
},
|
||||
{
|
||||
"author": "DoctorDiffusion",
|
||||
"title": "ComfyUI-SnakeOil",
|
||||
"reference": "https://github.com/DoctorDiffusion/ComfyUI-SnakeOil",
|
||||
"files": [
|
||||
"https://github.com/DoctorDiffusion/ComfyUI-SnakeOil"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Use [a/Doctor Diffusion's snake oil nLoRAs](https://civitai.com/models/987843) as well as [a/other negative LoRAs](https://civitai.com/models/186617/doctor-diffusions-negative-xl-lora) easily within ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "duhaifeng",
|
||||
"title": "ComfyUI-Flux-Inpainting",
|
||||
"reference": "https://github.com/rubi-du/ComfyUI-Flux-Inpainting",
|
||||
"files": [
|
||||
"https://github.com/rubi-du/ComfyUI-Flux-Inpainting"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This node wraps the flux fill model as ComfyUI nodes. Use NF4 flux fill model, support for inpainting and outpainting image. Compared to the flux fill dev model, these nodes can use the flux fill model to perform inpainting and outpainting work under lower VRM conditions."
|
||||
},
|
||||
{
|
||||
"author": "purpen",
|
||||
"title": "AIRedoon",
|
||||
"reference": "https://github.com/purpen/ComfyUI-AIRedoon",
|
||||
"files": [
|
||||
"https://github.com/purpen/ComfyUI-AIRedoon"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:AIRedoon Translator, AIRedoon Image Caption"
|
||||
},
|
||||
{
|
||||
"author": "purpen",
|
||||
"title": "ComfyUI-ImageTagger",
|
||||
"reference": "https://github.com/purpen/ComfyUI-ImageTagger",
|
||||
"files": [
|
||||
"https://github.com/purpen/ComfyUI-ImageTagger"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES:AIRedoon Image Caption.\nAnalyze image tagger"
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-SoundHub",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-SoundHub",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-SoundHub"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-SoundHub is a collection of audio processing nodes designed for ComfyUI, enabling seamless audio processing and generation within your ComfyUI workflows."
|
||||
},
|
||||
{
|
||||
"author": "Starnodes2024",
|
||||
"title": "ComfyUI_StarNodes",
|
||||
"reference": "https://github.com/Starnodes2024/ComfyUI_StarNodes",
|
||||
"files": [
|
||||
"https://github.com/Starnodes2024/ComfyUI_StarNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: StarNode Input Image Chooser, SD(XL) Star(t) Settings, SD3.5 Star(t) Settings, Starnode Ollama Helper"
|
||||
},
|
||||
{
|
||||
"author": "bananasss00",
|
||||
"title": "ComfyUI-flux_fill_patcher",
|
||||
"reference": "https://github.com/bananasss00/ComfyUI-flux_fill_patcher",
|
||||
"files": [
|
||||
"https://github.com/bananasss00/ComfyUI-flux_fill_patcher"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "flux patcher for Fill Flux.Dev lora [a/https://civitai.com/models/981615/fluxfill-inpaint-lora](https://civitai.com/models/981615/fluxfill-inpaint-lora)"
|
||||
},
|
||||
{
|
||||
"author": "lldacing",
|
||||
"title": "ComfyUI_StableDelight_ll",
|
||||
"id": "comfyui_stabledelight_ll",
|
||||
"reference": "https://github.com/lldacing/ComfyUI_StableDelight_ll",
|
||||
"files": [
|
||||
"https://github.com/lldacing/ComfyUI_StableDelight_ll"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "StableDelight: Revealing Hidden Textures by Removing Specular Reflections"
|
||||
},
|
||||
{
|
||||
"author": "flycarl",
|
||||
"title": "ComfyUI-Pixelate",
|
||||
"reference": "https://github.com/flycarl/ComfyUI-Pixelate",
|
||||
"files": [
|
||||
"https://github.com/flycarl/ComfyUI-Pixelate"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "[a/sd-webui-pixelart](https://github.com/mrreplicart/sd-webui-pixelart) are referenced by many webui users, this node is mean to use it in ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "SparknightLLC",
|
||||
"title": "ComfyUI-MaskArbiter",
|
||||
"reference": "https://github.com/SparknightLLC/ComfyUI-MaskArbiter",
|
||||
"files": [
|
||||
"https://github.com/SparknightLLC/ComfyUI-MaskArbiter"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A node for ComfyUI that takes a list of masks and returns a single mask based on your criteria. For example, it can be used to mask the leftmost subject in an image containing more than one subject of the same class. The workflow below demonstrates the difference between Mask Arbiter (top) and traditional Grounding DINO masking (bottom.)"
|
||||
},
|
||||
{
|
||||
"author": "tanglup",
|
||||
"title": "Comfyui_Flux_Style_Adjust",
|
||||
"reference": "https://github.com/tanglup/Comfyui_Flux_Style_Adjust",
|
||||
"files": [
|
||||
"https://github.com/tanglup/Comfyui_Flux_Style_Adjust"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "StyleModelApply adds more controls"
|
||||
},
|
||||
{
|
||||
"author": "dymokomi",
|
||||
"title": "comfyui_dygen",
|
||||
"reference": "https://github.com/dymokomi/comfyui_dygen",
|
||||
"files": [
|
||||
"https://github.com/dymokomi/comfyui_dygen"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: DY Image Quantize, DY Image Cluster, DY Image Palette, DY Image Masks, Image List to Grid"
|
||||
},
|
||||
{
|
||||
"author": "exectails",
|
||||
"title": "Info Utils",
|
||||
"id": "et_infoutils",
|
||||
"reference": "https://github.com/exectails/comfyui-et_infoutils",
|
||||
"files": [
|
||||
"https://github.com/exectails/comfyui-et_infoutils"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes that facilitate simpler information providing and gathering, such as Text Box, Show Data and Token Counter nodes."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,3 @@
|
||||
import datetime
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
@@ -15,8 +14,11 @@ glob_path = os.path.join(os.path.dirname(__file__), "glob")
|
||||
sys.path.append(glob_path)
|
||||
|
||||
import security_check
|
||||
from manager_util import *
|
||||
import manager_util
|
||||
import cm_global
|
||||
import manager_downloader
|
||||
from datetime import datetime
|
||||
import folder_paths
|
||||
|
||||
security_check.security_check()
|
||||
|
||||
@@ -71,17 +73,20 @@ cm_global.register_api('cm.register_message_collapse', register_message_collapse
|
||||
cm_global.register_api('cm.is_import_failed_extension', is_import_failed_extension)
|
||||
|
||||
|
||||
comfyui_manager_path = os.path.dirname(__file__)
|
||||
custom_nodes_path = os.path.abspath(os.path.join(comfyui_manager_path, ".."))
|
||||
startup_script_path = os.path.join(comfyui_manager_path, "startup-scripts")
|
||||
restore_snapshot_path = os.path.join(startup_script_path, "restore-snapshot.json")
|
||||
comfyui_manager_path = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
custom_nodes_base_path = folder_paths.get_folder_paths('custom_nodes')[0]
|
||||
manager_files_path = os.path.abspath(os.path.join(folder_paths.get_user_directory(), 'default', 'ComfyUI-Manager'))
|
||||
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
||||
restore_snapshot_path = os.path.join(manager_files_path, "startup-scripts", "restore-snapshot.json")
|
||||
|
||||
git_script_path = os.path.join(comfyui_manager_path, "git_helper.py")
|
||||
pip_overrides_path = os.path.join(comfyui_manager_path, "pip_overrides.json")
|
||||
cm_cli_path = os.path.join(comfyui_manager_path, "cm-cli.py")
|
||||
|
||||
|
||||
cm_global.pip_overrides = {}
|
||||
if os.path.exists(pip_overrides_path):
|
||||
with open(pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||
if os.path.exists(manager_pip_overrides_path):
|
||||
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||
cm_global.pip_overrides = json.load(json_file)
|
||||
cm_global.pip_overrides['numpy'] = 'numpy<2'
|
||||
cm_global.pip_overrides['ultralytics'] = 'ultralytics==8.3.40' # for security
|
||||
@@ -144,15 +149,18 @@ try:
|
||||
postfix = ""
|
||||
|
||||
# Logger setup
|
||||
log_path_base = None
|
||||
if enable_file_logging:
|
||||
if os.path.exists(f"comfyui{postfix}.log"):
|
||||
if os.path.exists(f"comfyui{postfix}.prev.log"):
|
||||
if os.path.exists(f"comfyui{postfix}.prev2.log"):
|
||||
os.remove(f"comfyui{postfix}.prev2.log")
|
||||
os.rename(f"comfyui{postfix}.prev.log", f"comfyui{postfix}.prev2.log")
|
||||
os.rename(f"comfyui{postfix}.log", f"comfyui{postfix}.prev.log")
|
||||
log_path_base = os.path.join(folder_paths.user_directory, 'comfyui')
|
||||
|
||||
log_file = open(f"comfyui{postfix}.log", "w", encoding="utf-8", errors="ignore")
|
||||
if os.path.exists(f"{log_path_base}{postfix}.log"):
|
||||
if os.path.exists(f"{log_path_base}{postfix}.prev.log"):
|
||||
if os.path.exists(f"{log_path_base}{postfix}.prev2.log"):
|
||||
os.remove(f"{log_path_base}{postfix}.prev2.log")
|
||||
os.rename(f"{log_path_base}{postfix}.prev.log", f"{log_path_base}{postfix}.prev2.log")
|
||||
os.rename(f"{log_path_base}{postfix}.log", f"{log_path_base}{postfix}.prev.log")
|
||||
|
||||
log_file = open(f"{log_path_base}{postfix}.log", "w", encoding="utf-8", errors="ignore")
|
||||
|
||||
log_lock = threading.Lock()
|
||||
|
||||
@@ -173,7 +181,7 @@ try:
|
||||
write_stderr = wrapper_stderr
|
||||
|
||||
pat_tqdm = r'\d+%.*\[(.*?)\]'
|
||||
pat_import_fail = r'seconds \(IMPORT FAILED\):.*[/\\]custom_nodes[/\\](.*)$'
|
||||
pat_import_fail = r'seconds \(IMPORT FAILED\):(.*)$'
|
||||
|
||||
is_start_mode = True
|
||||
|
||||
@@ -206,7 +214,7 @@ try:
|
||||
if is_start_mode:
|
||||
match = re.search(pat_import_fail, message)
|
||||
if match:
|
||||
import_failed_extensions.add(match.group(1))
|
||||
import_failed_extensions.add(match.group(1).strip())
|
||||
|
||||
if 'Starting server' in message:
|
||||
is_start_mode = False
|
||||
@@ -228,7 +236,7 @@ try:
|
||||
|
||||
def sync_write(self, message, file_only=False):
|
||||
with log_lock:
|
||||
timestamp = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
||||
timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
||||
if self.last_char != '\n':
|
||||
log_file.write(message)
|
||||
else:
|
||||
@@ -292,7 +300,7 @@ try:
|
||||
if is_start_mode:
|
||||
match = re.search(pat_import_fail, message)
|
||||
if match:
|
||||
import_failed_extensions.add(match.group(1))
|
||||
import_failed_extensions.add(match.group(1).strip())
|
||||
|
||||
if 'Starting server' in message:
|
||||
is_start_mode = False
|
||||
@@ -309,37 +317,36 @@ except Exception as e:
|
||||
|
||||
|
||||
try:
|
||||
import git
|
||||
import git # noqa: F401
|
||||
except ModuleNotFoundError:
|
||||
my_path = os.path.dirname(__file__)
|
||||
requirements_path = os.path.join(my_path, "requirements.txt")
|
||||
|
||||
print(f"## ComfyUI-Manager: installing dependencies. (GitPython)")
|
||||
print("## ComfyUI-Manager: installing dependencies. (GitPython)")
|
||||
try:
|
||||
result = subprocess.check_output([sys.executable, '-s', '-m', 'pip', 'install', '-r', requirements_path])
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"## [ERROR] ComfyUI-Manager: Attempting to reinstall dependencies using an alternative method.")
|
||||
except subprocess.CalledProcessError:
|
||||
print("## [ERROR] ComfyUI-Manager: Attempting to reinstall dependencies using an alternative method.")
|
||||
try:
|
||||
result = subprocess.check_output([sys.executable, '-s', '-m', 'pip', 'install', '--user', '-r', requirements_path])
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"## [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)")
|
||||
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)")
|
||||
|
||||
try:
|
||||
import git
|
||||
print(f"## ComfyUI-Manager: installing dependencies done.")
|
||||
print("## ComfyUI-Manager: installing dependencies done.")
|
||||
except:
|
||||
# maybe we should sys.exit() here? there is at least two screens worth of error messages still being pumped after our error messages
|
||||
print(f"## [ERROR] ComfyUI-Manager: GitPython package seems to be installed, but failed to load somehow. Make sure you have a working git client installed")
|
||||
print("## [ERROR] ComfyUI-Manager: GitPython package seems to be installed, but failed to load somehow. Make sure you have a working git client installed")
|
||||
|
||||
|
||||
print("** ComfyUI startup time:", datetime.datetime.now())
|
||||
print("** ComfyUI startup time:", datetime.now())
|
||||
print("** Platform:", platform.system())
|
||||
print("** Python version:", sys.version)
|
||||
print("** Python executable:", sys.executable)
|
||||
print("** ComfyUI Path:", comfy_path)
|
||||
|
||||
if enable_file_logging:
|
||||
print("** Log path:", os.path.abspath('comfyui.log'))
|
||||
if log_path_base is not None:
|
||||
print("** Log path:", os.path.abspath(f'{log_path_base}.log'))
|
||||
else:
|
||||
print("** Log path: file logging is disabled")
|
||||
|
||||
@@ -374,7 +381,7 @@ def check_bypass_ssl():
|
||||
default_conf = config['default']
|
||||
|
||||
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 ComfyUI-Manager/config.ini)")
|
||||
print("[ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see ComfyUI-Manager/config.ini)")
|
||||
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
|
||||
except Exception:
|
||||
pass
|
||||
@@ -385,8 +392,8 @@ check_bypass_ssl()
|
||||
|
||||
# Perform install
|
||||
processed_install = set()
|
||||
script_list_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "startup-scripts", "install-scripts.txt")
|
||||
pip_fixer = PIPFixer(get_installed_packages())
|
||||
script_list_path = os.path.join(folder_paths.user_directory, "default", "ComfyUI-Manager", "startup-scripts", "install-scripts.txt")
|
||||
pip_fixer = manager_util.PIPFixer(manager_util.get_installed_packages())
|
||||
|
||||
|
||||
def is_installed(name):
|
||||
@@ -405,18 +412,18 @@ def is_installed(name):
|
||||
return True
|
||||
|
||||
if name in cm_global.pip_downgrade_blacklist:
|
||||
pips = get_installed_packages()
|
||||
pips = manager_util.get_installed_packages()
|
||||
|
||||
if match is None:
|
||||
if name in pips:
|
||||
return True
|
||||
elif match.group(2) in ['<=', '==', '<']:
|
||||
if name in pips:
|
||||
if StrictVersion(pips[name]) >= StrictVersion(match.group(3)):
|
||||
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
||||
return True
|
||||
|
||||
pkg = get_installed_packages().get(name.lower())
|
||||
pkg = manager_util.get_installed_packages().get(name.lower())
|
||||
if pkg is None:
|
||||
return False # update if not installed
|
||||
|
||||
@@ -424,9 +431,9 @@ def is_installed(name):
|
||||
return True # don't update if version is not specified
|
||||
|
||||
if match.group(2) in ['>', '>=']:
|
||||
if StrictVersion(pkg) < StrictVersion(match.group(3)):
|
||||
if manager_util.StrictVersion(pkg) < manager_util.StrictVersion(match.group(3)):
|
||||
return False
|
||||
elif StrictVersion(pkg) > StrictVersion(match.group(3)):
|
||||
elif manager_util.StrictVersion(pkg) > manager_util.StrictVersion(match.group(3)):
|
||||
print(f"[SKIP] Downgrading pip package isn't allowed: {name.lower()} (cur={pkg})")
|
||||
|
||||
return True # prevent downgrade
|
||||
@@ -457,63 +464,21 @@ if os.path.exists(restore_snapshot_path):
|
||||
else:
|
||||
print(prefix, msg, end="")
|
||||
|
||||
print(f"[ComfyUI-Manager] Restore snapshot.")
|
||||
cmd_str = [sys.executable, git_script_path, '--apply-snapshot', restore_snapshot_path]
|
||||
|
||||
print("[ComfyUI-Manager] Restore snapshot.")
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
exit_code = process_wrap(cmd_str, custom_nodes_path, handler=msg_capture, env=new_env)
|
||||
|
||||
repository_name = ''
|
||||
for url in cloned_repos:
|
||||
try:
|
||||
repository_name = url.split("/")[-1].strip()
|
||||
repo_path = os.path.join(custom_nodes_path, repository_name)
|
||||
repo_path = os.path.abspath(repo_path)
|
||||
|
||||
requirements_path = os.path.join(repo_path, 'requirements.txt')
|
||||
install_script_path = os.path.join(repo_path, 'install.py')
|
||||
|
||||
this_exit_code = 0
|
||||
|
||||
if os.path.exists(requirements_path):
|
||||
with open(requirements_path, 'r', encoding="UTF-8", errors="ignore") as file:
|
||||
for line in file:
|
||||
package_name = remap_pip_package(line.strip())
|
||||
if package_name and not is_installed(package_name):
|
||||
if not package_name.startswith('#'):
|
||||
if '--index-url' in package_name:
|
||||
s = package_name.split('--index-url')
|
||||
install_cmd = [sys.executable, "-m", "pip", "install", s[0].strip(), '--index-url', s[1].strip()]
|
||||
else:
|
||||
install_cmd = [sys.executable, "-m", "pip", "install", package_name]
|
||||
|
||||
this_exit_code += process_wrap(install_cmd, repo_path)
|
||||
|
||||
if os.path.exists(install_script_path) and f'{repo_path}/install.py' not in processed_install:
|
||||
processed_install.add(f'{repo_path}/install.py')
|
||||
install_cmd = [sys.executable, install_script_path]
|
||||
print(f">>> {install_cmd} / {repo_path}")
|
||||
|
||||
new_env = os.environ.copy()
|
||||
new_env["COMFYUI_PATH"] = comfy_path
|
||||
this_exit_code += process_wrap(install_cmd, repo_path, env=new_env)
|
||||
|
||||
if this_exit_code != 0:
|
||||
print(f"[ComfyUI-Manager] Restoring '{repository_name}' is failed.")
|
||||
|
||||
except Exception as e:
|
||||
print(e)
|
||||
print(f"[ComfyUI-Manager] Restoring '{repository_name}' is failed.")
|
||||
cmd_str = [sys.executable, cm_cli_path, 'restore-snapshot', restore_snapshot_path]
|
||||
exit_code = process_wrap(cmd_str, custom_nodes_base_path, handler=msg_capture, env=new_env)
|
||||
|
||||
if exit_code != 0:
|
||||
print(f"[ComfyUI-Manager] Restore snapshot failed.")
|
||||
print("[ComfyUI-Manager] Restore snapshot failed.")
|
||||
else:
|
||||
print(f"[ComfyUI-Manager] Restore snapshot done.")
|
||||
print("[ComfyUI-Manager] Restore snapshot done.")
|
||||
|
||||
except Exception as e:
|
||||
print(e)
|
||||
print(f"[ComfyUI-Manager] Restore snapshot failed.")
|
||||
print("[ComfyUI-Manager] Restore snapshot failed.")
|
||||
|
||||
os.remove(restore_snapshot_path)
|
||||
|
||||
@@ -548,6 +513,65 @@ def execute_lazy_install_script(repo_path, executable):
|
||||
process_wrap(install_cmd, repo_path, env=new_env)
|
||||
|
||||
|
||||
def execute_lazy_cnr_switch(target, zip_url, from_path, to_path, no_deps, custom_nodes_path):
|
||||
import uuid
|
||||
import shutil
|
||||
|
||||
# 1. download
|
||||
archive_name = f"CNR_temp_{str(uuid.uuid4())}.zip" # should be unpredictable name - security precaution
|
||||
download_path = os.path.join(custom_nodes_path, archive_name)
|
||||
manager_downloader.download_url(zip_url, custom_nodes_path, archive_name)
|
||||
|
||||
# 2. extract files into <node_id>@<cur_ver>
|
||||
extracted = manager_util.extract_package_as_zip(download_path, from_path)
|
||||
os.remove(download_path)
|
||||
|
||||
if extracted is None:
|
||||
if len(os.listdir(from_path)) == 0:
|
||||
shutil.rmtree(from_path)
|
||||
|
||||
print(f'Empty archive file: {target}')
|
||||
return False
|
||||
|
||||
|
||||
# 3. calculate garbage files (.tracking - extracted)
|
||||
tracking_info_file = os.path.join(from_path, '.tracking')
|
||||
prev_files = set()
|
||||
with open(tracking_info_file, 'r') as f:
|
||||
for line in f:
|
||||
prev_files.add(line.strip())
|
||||
garbage = prev_files.difference(extracted)
|
||||
garbage = [os.path.join(custom_nodes_path, x) for x in garbage]
|
||||
|
||||
# 4-1. remove garbage files
|
||||
for x in garbage:
|
||||
if os.path.isfile(x):
|
||||
os.remove(x)
|
||||
|
||||
# 4-2. remove garbage dir if empty
|
||||
for x in garbage:
|
||||
if os.path.isdir(x):
|
||||
if not os.listdir(x):
|
||||
os.rmdir(x)
|
||||
|
||||
# 5. rename dir name <node_id>@<prev_ver> ==> <node_id>@<cur_ver>
|
||||
print(f"'{from_path}' is moved to '{to_path}'")
|
||||
shutil.move(from_path, to_path)
|
||||
|
||||
# 6. create .tracking file
|
||||
tracking_info_file = os.path.join(to_path, '.tracking')
|
||||
with open(tracking_info_file, "w", encoding='utf-8') as file:
|
||||
file.write('\n'.join(list(extracted)))
|
||||
|
||||
|
||||
def execute_migration(moves):
|
||||
import shutil
|
||||
for x in moves:
|
||||
if os.path.exists(x[0]) and not os.path.exists(x[1]):
|
||||
shutil.move(x[0], x[1])
|
||||
print(f"[ComfyUI-Manager] MIGRATION: '{x[0]}' -> '{x[1]}'")
|
||||
|
||||
|
||||
# Check if script_list_path exists
|
||||
if os.path.exists(script_list_path):
|
||||
print("\n#######################################################################")
|
||||
@@ -569,6 +593,13 @@ if os.path.exists(script_list_path):
|
||||
if script[1] == "#LAZY-INSTALL-SCRIPT":
|
||||
execute_lazy_install_script(script[0], script[2])
|
||||
|
||||
elif script[1] == "#LAZY-CNR-SWITCH-SCRIPT":
|
||||
execute_lazy_cnr_switch(script[0], script[2], script[3], script[4], script[5], script[6])
|
||||
execute_lazy_install_script(script[3], script[7])
|
||||
|
||||
elif script[1] == "#LAZY-MIGRATION":
|
||||
execute_migration(script[2])
|
||||
|
||||
elif os.path.exists(script[0]):
|
||||
if script[1] == "#FORCE":
|
||||
del script[1]
|
||||
@@ -602,7 +633,7 @@ pip_fixer.fix_broken()
|
||||
|
||||
del processed_install
|
||||
del pip_fixer
|
||||
clear_pip_cache()
|
||||
manager_util.clear_pip_cache()
|
||||
|
||||
|
||||
def check_windows_event_loop_policy():
|
||||
@@ -618,7 +649,7 @@ def check_windows_event_loop_policy():
|
||||
import asyncio
|
||||
import asyncio.windows_events
|
||||
asyncio.set_event_loop_policy(asyncio.windows_events.WindowsSelectorEventLoopPolicy())
|
||||
print(f"[ComfyUI-Manager] Windows event loop policy mode enabled")
|
||||
print("[ComfyUI-Manager] Windows event loop policy mode enabled")
|
||||
except Exception as e:
|
||||
print(f"[ComfyUI-Manager] WARN: Windows initialization fail: {e}")
|
||||
except Exception:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "comfyui-manager"
|
||||
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||
version = "2.55.5"
|
||||
version = "3.1"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
|
||||
|
||||
|
||||
12
ruff.toml
Normal file
12
ruff.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
# Disable all rules by default
|
||||
lint.ignore = ["ALL"]
|
||||
|
||||
# Enable specific rules
|
||||
lint.select = [
|
||||
"S307", # suspicious-eval-usage
|
||||
# The "F" series in Ruff stands for "Pyflakes" rules, which catch various Python syntax errors and undefined names.
|
||||
# See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f
|
||||
"F",
|
||||
]
|
||||
|
||||
exclude = ["*.ipynb"]
|
||||
@@ -69,7 +69,7 @@ def extract_nodes(code_text):
|
||||
|
||||
try:
|
||||
if parse_cnt % 100 == 0:
|
||||
print(f".", end="", flush=True)
|
||||
print(".", end="", flush=True)
|
||||
parse_cnt += 1
|
||||
|
||||
code_text = re.sub(r'\\[^"\']', '', code_text)
|
||||
@@ -515,7 +515,7 @@ def gen_json(node_info):
|
||||
nodes.sort()
|
||||
data[git_url] = (nodes, metadata_in_url)
|
||||
|
||||
json_path = f"extension-node-map.json"
|
||||
json_path = "extension-node-map.json"
|
||||
with open(json_path, "w", encoding='utf-8') as file:
|
||||
json.dump(data, file, indent=4, sort_keys=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user