forked from ltdrdata/ComfyUI-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension-node-map.json
1356 lines (1356 loc) · 40.4 KB
/
extension-node-map.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"https://github.com/ArtVentureX/comfyui-animatediff": [
"AnimateDiffCombine",
"AnimateDiffLoader",
"AnimateDiffLoader_v2",
"AnimateDiffUnload"
],
"https://github.com/BadCafeCode/masquerade-nodes-comfyui": [
"Blur",
"Change Channel Count",
"Combine Masks",
"Constant Mask",
"Convert Color Space",
"Create QR Code",
"Create Rect Mask",
"Cut By Mask",
"Get Image Size",
"Image To Mask",
"Make Image Batch",
"Mask By Text",
"Mask Morphology",
"Mask To Region",
"MasqueradeIncrementer",
"Mix Color By Mask",
"Mix Images By Mask",
"Paste By Mask",
"Prune By Mask",
"Separate Mask Components",
"Unary Image Op",
"Unary Mask Op"
],
"https://github.com/Beinsezii/bsz-cui-extras/raw/master/custom_nodes/bsz-auto-hires.py": [
"BSZAbsoluteHires",
"BSZAspectHires",
"BSZCombinedHires"
],
"https://github.com/Bikecicle/ComfyUI-Waveform-Extensions/raw/main/EXT_AudioManipulation.py": [
"BatchJoinAudio",
"CutAudio",
"DuplicateAudio",
"JoinAudio",
"ResampleAudio",
"ReverseAudio",
"StretchAudio"
],
"https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb": [
"BNK_AddCLIPSDXLParams",
"BNK_AddCLIPSDXLRParams",
"BNK_CLIPTextEncodeAdvanced",
"BNK_CLIPTextEncodeSDXLAdvanced"
],
"https://github.com/BlenderNeko/ComfyUI_Cutoff": [
"BNK_CutoffBasePrompt",
"BNK_CutoffRegionsToConditioning",
"BNK_CutoffRegionsToConditioning_ADV",
"BNK_CutoffSetRegions"
],
"https://github.com/BlenderNeko/ComfyUI_Noise": [
"BNK_DuplicateBatchIndex",
"BNK_GetSigma",
"BNK_InjectNoise",
"BNK_NoisyLatentImage",
"BNK_SlerpLatent",
"BNK_Unsampler"
],
"https://github.com/BlenderNeko/ComfyUI_SeeCoder": [
"ConcatConditioning",
"SEECoderImageEncode"
],
"https://github.com/BlenderNeko/ComfyUI_TiledKSampler": [
"BNK_TiledKSampler",
"BNK_TiledKSamplerAdvanced"
],
"https://github.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes": [
"LoadImageFromPath"
],
"https://github.com/Davemane42/ComfyUI_Dave_CustomNode": [
"ABGRemover",
"ConditioningStretch",
"ConditioningUpscale",
"MultiAreaConditioning",
"MultiLatentComposite"
],
"https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes": [
"ABSNode_DF",
"Absolute value",
"Ceil",
"CeilNode_DF",
"Conditioning area scale by ratio",
"ConditioningSetArea with tuples",
"ConditioningSetAreaEXT_DF",
"ConditioningSetArea_DF",
"CosNode_DF",
"Cosines",
"Divide",
"DivideNode_DF",
"EmptyLatentImage_DF",
"Float",
"Float debug print",
"Float2Tuple_DF",
"FloatDebugPrint_DF",
"FloatNode_DF",
"Floor",
"FloorNode_DF",
"Get image size",
"Get latent size",
"GetImageSize_DF",
"GetLatentSize_DF",
"Image scale by ratio",
"Image scale to side",
"ImageScale_Ratio_DF",
"ImageScale_Side_DF",
"Int debug print",
"Int to float",
"Int to tuple",
"Int2Float_DF",
"IntDebugPrint_DF",
"Integer",
"IntegerNode_DF",
"Latent Scale by ratio",
"Latent Scale to side",
"LatentComposite with tuples",
"LatentScale_Ratio_DF",
"LatentScale_Side_DF",
"MultilineStringNode_DF",
"Multiply",
"MultiplyNode_DF",
"PowNode_DF",
"Power",
"Random",
"RandomFloat_DF",
"SinNode_DF",
"Sinus",
"SqrtNode_DF",
"Square root",
"String debug print",
"StringNode_DF",
"Subtract",
"SubtractNode_DF",
"Sum",
"SumNode_DF",
"TanNode_DF",
"Tangent",
"Text",
"Text box",
"Tuple",
"Tuple debug print",
"Tuple multiply",
"Tuple swap",
"Tuple to floats",
"Tuple to ints",
"Tuple2Float_DF",
"TupleDebugPrint_DF",
"TupleNode_DF"
],
"https://github.com/EllangoK/ComfyUI-post-processing-nodes": [
"ArithmeticBlend",
"AsciiArt",
"Blend",
"Blur",
"CannyEdgeMask",
"ChromaticAberration",
"ColorCorrect",
"ColorTint",
"Dissolve",
"Dither",
"DodgeAndBurn",
"FilmGrain",
"Glow",
"HSVThresholdMask",
"KMeansQuantize",
"KuwaharaBlur",
"Parabolize",
"PencilSketch",
"PixelSort",
"Pixelize",
"Quantize",
"Sharpen",
"SineWave",
"Solarize",
"Vignette"
],
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation": [
"KSampler Gradually Adding More Denoise (efficient)"
],
"https://github.com/Fannovel16/comfy_controlnet_preprocessors": [
"AnimeLineArtPreprocessor",
"BAE-NormalMapPreprocessor",
"BinaryPreprocessor",
"CannyEdgePreprocessor",
"ColorPreprocessor",
"FakeScribblePreprocessor",
"HEDPreprocessor",
"InpaintPreprocessor",
"LeReS-DepthMapPreprocessor",
"LineArtPreprocessor",
"M-LSDPreprocessor",
"Manga2Anime-LineArtPreprocessor",
"MediaPipe-FaceMeshPreprocessor",
"MediaPipe-HandPosePreprocessor",
"MiDaS-DepthMapPreprocessor",
"MiDaS-NormalMapPreprocessor",
"OneFormer-ADE20K-SemSegPreprocessor",
"OneFormer-COCO-SemSegPreprocessor",
"OpenposePreprocessor",
"PiDiNetPreprocessor",
"ScribblePreprocessor",
"SemSegPreprocessor",
"ShufflePreprocessor",
"TilePreprocessor",
"UniFormer-SemSegPreprocessor",
"Zoe-DepthMapPreprocessor"
],
"https://github.com/FizzleDorf/AIT": [
"AITemplateControlNetLoader",
"AITemplateEmptyLatentImage",
"AITemplateLatentUpscale",
"AITemplateLoader",
"AITemplateVAEDecode",
"AITemplateVAEEncode",
"AITemplateVAEEncodeForInpaint"
],
"https://github.com/FizzleDorf/ComfyUI_FizzNodes": [
"AbsCosWave",
"AbsSinWave",
"CosWave",
"InvCosWave",
"InvSinWave",
"Lerp",
"PromptSchedule",
"PromptScheduleEncodeSDXL",
"PromptScheduleGLIGEN",
"PromptScheduleNodeFlow",
"PromptScheduleNodeFlowEnd",
"SawtoothWave",
"SinWave",
"SquareWave",
"TriangleWave",
"ValueSchedule"
],
"https://github.com/Gourieff/comfyui-reactor-node": [
"ReActorFaceSwap"
],
"https://github.com/Jcd1230/rembg-comfyui-node": [
"Image Remove Background (rembg)"
],
"https://github.com/Jordach/comfy-plasma": [
"JDC_AutoContrast",
"JDC_BlendImages",
"JDC_BrownNoise",
"JDC_Contrast",
"JDC_EqualizeGrey",
"JDC_GaussianBlur",
"JDC_GreyNoise",
"JDC_Greyscale",
"JDC_ImageLoader",
"JDC_ImageLoaderMeta",
"JDC_PinkNoise",
"JDC_Plasma",
"JDC_PlasmaSampler",
"JDC_PowerImage",
"JDC_RandNoise",
"JDC_ResizeFactor"
],
"https://github.com/Kaharos94/ComfyUI-Saveaswebp": [
"Save_as_webp"
],
"https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet": [
"ControlNetLoaderAdvanced",
"CustomControlNetWeights",
"CustomT2IAdapterWeights",
"DiffControlNetLoaderAdvanced",
"ScaledSoftControlNetWeights",
"SoftControlNetWeights",
"SoftT2IAdapterWeights"
],
"https://github.com/LEv145/images-grid-comfy-plugin": [
"GridAnnotation",
"ImageCombine",
"ImagesGridByColumns",
"ImagesGridByRows",
"LatentCombine"
],
"https://github.com/LucianoCirino/efficiency-nodes-comfyui": [
"Efficient Loader",
"Evaluate Floats",
"Evaluate Integers",
"Evaluate Strings",
"Image Overlay",
"Join XY Inputs of Same Type",
"KSampler (Efficient)",
"KSampler Adv. (Efficient)",
"LoRA Stacker",
"LoRA Stacker Adv.",
"Manual XY Entry Info",
"Simple Eval Examples",
"XY Input: CFG Scale",
"XY Input: Checkpoint",
"XY Input: Clip Skip",
"XY Input: Denoise",
"XY Input: LoRA",
"XY Input: LoRA Adv.",
"XY Input: LoRA Stacks",
"XY Input: Manual XY Entry",
"XY Input: Negative Prompt S/R",
"XY Input: Positive Prompt S/R",
"XY Input: Sampler",
"XY Input: Scheduler",
"XY Input: Seeds++ Batch",
"XY Input: Steps",
"XY Input: VAE",
"XY Plot"
],
"https://github.com/Nourepide/ComfyUI-Allor": [
"AlphaChanelAdd",
"AlphaChanelAddByMask",
"AlphaChanelAsMask",
"AlphaChanelRemove",
"AlphaChanelRestore",
"ClipClamp",
"ClipVisionClamp",
"ClipVisionOutputClamp",
"ConditioningClamp",
"ControlNetClamp",
"GligenClamp",
"ImageBatchFork",
"ImageBatchGet",
"ImageBatchJoin",
"ImageBatchRemove",
"ImageClamp",
"ImageCompositeAbsolute",
"ImageCompositeAbsoluteByContainer",
"ImageCompositeRelative",
"ImageCompositeRelativeByContainer",
"ImageContainer",
"ImageContainerInheritanceAdd",
"ImageContainerInheritanceMax",
"ImageContainerInheritanceScale",
"ImageContainerInheritanceSum",
"ImageDrawArc",
"ImageDrawArcByContainer",
"ImageDrawChord",
"ImageDrawChordByContainer",
"ImageDrawEllipse",
"ImageDrawEllipseByContainer",
"ImageDrawLine",
"ImageDrawLineByContainer",
"ImageDrawPieslice",
"ImageDrawPiesliceByContainer",
"ImageDrawPolygon",
"ImageDrawRectangle",
"ImageDrawRectangleByContainer",
"ImageDrawRectangleRounded",
"ImageDrawRectangleRoundedByContainer",
"ImageEffectsAdjustment",
"ImageEffectsGrayscale",
"ImageEffectsLensBokeh",
"ImageEffectsLensChromaticAberration",
"ImageEffectsLensOpticAxis",
"ImageEffectsLensVignette",
"ImageEffectsLensZoomBurst",
"ImageEffectsNegative",
"ImageEffectsSepia",
"ImageFilterBilateralBlur",
"ImageFilterBlur",
"ImageFilterBoxBlur",
"ImageFilterContour",
"ImageFilterDetail",
"ImageFilterEdgeEnhance",
"ImageFilterEdgeEnhanceMore",
"ImageFilterEmboss",
"ImageFilterFindEdges",
"ImageFilterGaussianBlur",
"ImageFilterGaussianBlurAdvanced",
"ImageFilterMax",
"ImageFilterMedianBlur",
"ImageFilterMin",
"ImageFilterMode",
"ImageFilterRank",
"ImageFilterSharpen",
"ImageFilterSmooth",
"ImageFilterSmoothMore",
"ImageFilterStackBlur",
"ImageNoiseBeta",
"ImageNoiseBinomial",
"ImageNoiseBytes",
"ImageNoiseGaussian",
"ImageSegmentation",
"ImageSegmentationCustom",
"ImageSegmentationCustomAdvanced",
"ImageText",
"ImageTextMultiline",
"ImageTextMultilineOutlined",
"ImageTextOutlined",
"ImageTransformCropAbsolute",
"ImageTransformCropCorners",
"ImageTransformCropRelative",
"ImageTransformPaddingAbsolute",
"ImageTransformPaddingRelative",
"ImageTransformResizeAbsolute",
"ImageTransformResizeRelative",
"ImageTransformRotate",
"ImageTransformTranspose",
"LatentClamp",
"MaskClamp",
"ModelClamp",
"StyleModelClamp",
"UpscaleModelClamp",
"VaeClamp"
],
"https://github.com/Pfaeff/pfaeff-comfyui": [
"AstropulsePixelDetector",
"BackgroundRemover",
"ImagePadForBetterOutpaint",
"Inpainting",
"InpaintingPipelineLoader"
],
"https://github.com/RockOfFire/ComfyUI_Comfyroll_CustomNodes": [
"CR Apply ControlNet",
"CR Aspect Ratio",
"CR Aspect Ratio SDXL",
"CR Clip Input Switch",
"CR Color Tint",
"CR Conditioning Input Switch",
"CR ControlNet Input Switch",
"CR Image Input Switch",
"CR Image Input Switch (4 way)",
"CR Image Output",
"CR Image Pipe Edit",
"CR Image Pipe In",
"CR Image Pipe Out",
"CR Image Size",
"CR Integer Multiple",
"CR Latent Input Switch",
"CR Load LoRA",
"CR Model Input Switch",
"CR Module Input",
"CR Module Output",
"CR Module Pipe Loader",
"CR Pipe Switch",
"CR SDXL Base Prompt Encoder",
"CR SDXL Prompt Mixer",
"CR SDXL Style Text",
"CR Seed to Int"
],
"https://github.com/SLAPaper/ComfyUI-Image-Selector": [
"ImageDuplicator",
"ImageSelector",
"LatentDuplicator",
"LatentSelector"
],
"https://github.com/SOELexicon/ComfyUI-LexMSDBNodes": [
"MSSqlSelectNode",
"MSSqlTableNode"
],
"https://github.com/SadaleNet/CLIPTextEncodeA1111-ComfyUI/raw/master/custom_nodes/clip_text_encoder_a1111.py": [
"CLIPTextEncodeA1111",
"RerouteTextForCLIPTextEncodeA1111"
],
"https://github.com/SeargeDP/SeargeSDXL": [
"SeargeCheckpointLoader",
"SeargeConditioningMuxer5",
"SeargeFloatConstant",
"SeargeFloatMath",
"SeargeFloatPair",
"SeargeGenerated1",
"SeargeImageSave",
"SeargeInput1",
"SeargeInput2",
"SeargeInput3",
"SeargeInput4",
"SeargeInput5",
"SeargeInput6",
"SeargeInput7",
"SeargeIntegerConstant",
"SeargeIntegerMath",
"SeargeIntegerPair",
"SeargeIntegerScaler",
"SeargeLatentMuxer3",
"SeargeLoraLoader",
"SeargeOutput1",
"SeargeOutput2",
"SeargeOutput3",
"SeargeOutput4",
"SeargeOutput5",
"SeargeOutput6",
"SeargeOutput7",
"SeargeParameterProcessor",
"SeargePromptCombiner",
"SeargePromptText",
"SeargeSDXLBasePromptEncoder",
"SeargeSDXLImage2ImageSampler",
"SeargeSDXLPromptEncoder",
"SeargeSDXLRefinerPromptEncoder",
"SeargeSDXLSampler",
"SeargeStylePreprocessor",
"SeargeUpscaleModelLoader",
"SeargeVAELoader"
],
"https://github.com/Ser-Hilary/SDXL_sizing/raw/main/conditioning_sizing_for_SDXL.py": [
"get_aspect_from_image",
"get_aspect_from_ints",
"sizing_node",
"sizing_node_basic",
"sizing_node_unparsed"
],
"https://github.com/TinyTerra/ComfyUI_tinyterraNodes.git": [
"ttN busIN",
"ttN busOUT",
"ttN concat",
"ttN debugInput",
"ttN float",
"ttN hiresfixScale",
"ttN imageOutput",
"ttN imageREMBG",
"ttN int",
"ttN pipe2BASIC",
"ttN pipe2DETAILER",
"ttN pipeEDIT",
"ttN pipeIN",
"ttN pipeKSampler",
"ttN pipeKSamplerAdvanced",
"ttN pipeLoader",
"ttN pipeOUT",
"ttN seed",
"ttN seedDebug",
"ttN text",
"ttN text3BOX_3WAYconcat",
"ttN text7BOX_concat",
"ttN textDebug",
"ttN xyPlot"
],
"https://github.com/WASasquatch/was-node-suite-comfyui": [
"BLIP Analyze Image",
"BLIP Model Loader",
"Blend Latents",
"Bounded Image Blend",
"Bounded Image Blend with Mask",
"Bounded Image Crop",
"Bounded Image Crop with Mask",
"CLIP Input Switch",
"CLIP Vision Input Switch",
"CLIPSeg Batch Masking",
"CLIPSeg Masking",
"CLIPSeg Model Loader",
"CLIPTextEncode (BlenderNeko Advanced + NSP)",
"CLIPTextEncode (NSP)",
"Cache Node",
"Checkpoint Loader",
"Checkpoint Loader (Simple)",
"Conditioning Input Switch",
"Constant Number",
"Control Net Model Input Switch",
"Convert Masks to Images",
"Create Grid Image",
"Create Morph Image",
"Create Morph Image from Path",
"Create Video from Path",
"Debug Number to Console",
"Dictionary to Console",
"Diffusers Hub Model Down-Loader",
"Diffusers Model Loader",
"Export API",
"Image Analyze",
"Image Aspect Ratio",
"Image Batch",
"Image Blank",
"Image Blend",
"Image Blend by Mask",
"Image Blending Mode",
"Image Bloom Filter",
"Image Bounds",
"Image Canny Filter",
"Image Chromatic Aberration",
"Image Color Palette",
"Image Crop Face",
"Image Crop Location",
"Image Crop Square Location",
"Image Displacement Warp",
"Image Dragan Photography Filter",
"Image Edge Detection Filter",
"Image Film Grain",
"Image Filter Adjustments",
"Image Flip",
"Image Generate Gradient",
"Image Gradient Map",
"Image High Pass Filter",
"Image History Loader",
"Image Input Switch",
"Image Levels Adjustment",
"Image Load",
"Image Median Filter",
"Image Mix RGB Channels",
"Image Monitor Effects Filter",
"Image Nova Filter",
"Image Padding",
"Image Paste Crop",
"Image Paste Crop by Location",
"Image Paste Face",
"Image Perlin Noise",
"Image Perlin Power Fractal",
"Image Pixelate",
"Image Power Noise",
"Image Rembg (Remove Background)",
"Image Remove Background (Alpha)",
"Image Remove Color",
"Image Resize",
"Image Rotate",
"Image Rotate Hue",
"Image SSAO (Ambient Occlusion)",
"Image SSDO (Direct Occlusion)",
"Image Save",
"Image Seamless Texture",
"Image Select Channel",
"Image Select Color",
"Image Shadows and Highlights",
"Image Size to Number",
"Image Stitch",
"Image Style Filter",
"Image Threshold",
"Image Tiled",
"Image Transpose",
"Image Voronoi Noise Filter",
"Image fDOF Filter",
"Image to Latent Mask",
"Image to Noise",
"Image to Seed",
"Images to RGB",
"Inset Image Bounds",
"Integer place counter",
"KSampler (WAS)",
"KSampler Cycle",
"LangSAM Masking",
"LangSAM Model Loader",
"Latent Input Switch",
"Latent Noise Injection",
"Latent Size to Number",
"Latent Upscale by Factor (WAS)",
"Load Cache",
"Load Image Batch",
"Load Lora",
"Load Text File",
"Logic Boolean",
"Lora Loader",
"Mask Arbitrary Region",
"Mask Batch",
"Mask Batch to Mask",
"Mask Ceiling Region",
"Mask Crop Dominant Region",
"Mask Crop Minority Region",
"Mask Crop Region",
"Mask Dilate Region",
"Mask Dominant Region",
"Mask Erode Region",
"Mask Fill Holes",
"Mask Floor Region",
"Mask Gaussian Region",
"Mask Invert",
"Mask Minority Region",
"Mask Paste Region",
"Mask Smooth Region",
"Mask Threshold Region",
"Masks Add",
"Masks Combine Batch",
"Masks Combine Regions",
"Masks Subtract",
"MiDaS Depth Approximation",
"MiDaS Mask Image",
"MiDaS Model Loader",
"Model Input Switch",
"Number Counter",
"Number Input Condition",
"Number Input Switch",
"Number Multiple Of",
"Number Operation",
"Number PI",
"Number to Float",
"Number to Int",
"Number to Seed",
"Number to String",
"Number to Text",
"Prompt Multiple Styles Selector",
"Prompt Styles Selector",
"Random Number",
"SAM Image Mask",
"SAM Model Loader",
"SAM Parameters",
"SAM Parameters Combine",
"Samples Passthrough (Stat System)",
"Save Text File",
"Seed",
"String to Text",
"Tensor Batch to Image",
"Text Add Token by Input",
"Text Add Tokens",
"Text Compare",
"Text Concatenate",
"Text Dictionary Update",
"Text File History Loader",
"Text Find and Replace",
"Text Find and Replace Input",
"Text Find and Replace by Dictionary",
"Text Input Switch",
"Text List",
"Text List Concatenate",
"Text Load Line From File",
"Text Multiline",
"Text Parse A1111 Embeddings",
"Text Parse Noodle Soup Prompts",
"Text Parse Tokens",
"Text Random Line",
"Text Random Prompt",
"Text String",
"Text String Truncate",
"Text to Conditioning",
"Text to Console",
"Text to Number",
"Text to String",
"True Random.org Number Generator",
"Upscale Model Loader",
"Upscale Model Switch",
"VAE Input Switch",
"Video Dump Frames",
"Write to GIF",
"Write to Video",
"unCLIP Checkpoint Loader"
],
"https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI": [
"MergeBlockWeighted"
],
"https://github.com/ZaneA/ComfyUI-ImageReward": [
"ImageRewardLoader",
"ImageRewardScore"
],
"https://github.com/adieyal/comfyui-dynamicprompts": [
"DPCombinatorialGenerator",
"DPFeelingLucky",
"DPJinja",
"DPMagicPrompt",
"DPRandomGenerator"
],
"https://github.com/andersxa/comfyui-PromptAttention": [
"CLIPAttentionMaskEncode"
],
"https://github.com/asagi4/comfyui-prompt-control": [
"CondLinearInterpolate",
"ConditioningCutoff",
"EditableCLIPEncode",
"FilterSchedule",
"JinjaRender",
"LoRAScheduler",
"PromptControlSimple",
"PromptToSchedule",
"ScheduleToCond",
"ScheduleToModel",
"StringConcat"
],
"https://github.com/bash-j/mikey_nodes": [
"AddMetaData",
"Batch Resize Image for SDXL",
"Empty Latent Ratio Custom SDXL",
"Empty Latent Ratio Select SDXL",
"HaldCLUT",
"Prompt With SDXL",
"Prompt With Style",
"Prompt With Style V2",
"Prompt With Style V3",
"Resize Image for SDXL",
"Save Image With Prompt Data",
"SaveMetaData",
"Style Conditioner",
"Upscale Tile Calculator",
"VAE Decode 6GB SDXL (deprecated)"
],
"https://github.com/biegert/ComfyUI-CLIPSeg/raw/main/custom_nodes/clipseg.py": [
"CLIPSeg",
"CombineSegMasks"
],
"https://github.com/bvhari/ComfyUI_ImageProcessing": [
"BilateralFilter",
"Brightness",
"Gamma",
"Hue",
"Saturation",
"SigmoidCorrection",
"UnsharpMask"
],
"https://github.com/bvhari/ComfyUI_LatentToRGB": [
"LatentToRGB"
],
"https://github.com/chenbaiyujason/sc-node-comfyui": [
"8 Combine Text String",
"Builder Text String",
"Clean Gradio",
"Combine GPT Prompt",
"Combine Text String",
"Get Gradio",
"Multiple Combine GPT Prompt",
"Multiple Post to GPT",
"Multiple Text String",
"One GPT Builder",
"One Post to GPT",
"Out Gradio",
"Prompt Preview",
"SCSCCLIPTextEncode",
"SCSearch and Replace",
"SCText to Console",
"Single Text String",
"String to ASCII",
"Verb One Post to GPT"
],
"https://github.com/city96/ComfyUI_NetDist": [
"FetchRemote",
"QueueRemote"
],
"https://github.com/civitai/comfy-nodes": [
"CivitAI_Checkpoint_Loader",
"CivitAI_Lora_Loader"
],
"https://github.com/comfyanonymous/ComfyUI_experiments/raw/master/advanced_model_merging.py": [
"ModelMergeBlockNumber"
],
"https://github.com/comfyanonymous/ComfyUI_experiments/raw/master/reference_only.py": [
"ReferenceOnlySimple"
],
"https://github.com/comfyanonymous/ComfyUI_experiments/raw/master/sampler_rescalecfg.py": [
"RescaleClassifierFreeGuidanceTest"
],
"https://github.com/comfyanonymous/ComfyUI_experiments/raw/master/sampler_tonemap.py": [
"ModelSamplerTonemapNoiseTest"
],
"https://github.com/cubiq/ComfyUI_SimpleMath": [
"SimpleMath"
],
"https://github.com/dawangraoming/ComfyUI_ksampler_gpu/raw/main/ksampler_gpu.py": [
"KSamplerAdvancedGPU",
"KSamplerGPU"
],
"https://github.com/daxthin/facedetailer": [
"DZ_Face_Detailer"
],
"https://github.com/diontimmer/ComfyUI-Vextra-Nodes": [
"Add Text To Image",
"Apply Instagram Filter",
"Create Solid Color",
"Flatten Colors",
"Generate Noise Image",
"GlitchThis Effect",
"Hue Rotation",
"Load Picture Index",
"Pixel Sort",
"Play Sound At Execution",
"Prettify Prompt Using distilgpt2",
"Swap Color Mode"
],
"https://github.com/evanspearman/ComfyMath": [
"CM_BoolBinaryOperation",
"CM_BoolToInt",
"CM_BoolUnaryOperation",
"CM_BreakoutVec2",
"CM_BreakoutVec3",
"CM_BreakoutVec4",
"CM_ComposeVec2",
"CM_ComposeVec3",
"CM_ComposeVec4",
"CM_FloatBinaryCondition",
"CM_FloatBinaryOperation",
"CM_FloatToInt",
"CM_FloatToNumber",
"CM_FloatUnaryCondition",
"CM_FloatUnaryOperation",
"CM_IntBinaryCondition",
"CM_IntBinaryOperation",
"CM_IntToBool",
"CM_IntToFloat",
"CM_IntToNumber",
"CM_IntUnaryCondition",
"CM_IntUnaryOperation",
"CM_NumberBinaryCondition",
"CM_NumberBinaryOperation",
"CM_NumberToFloat",
"CM_NumberToInt",
"CM_NumberUnaryCondition",
"CM_NumberUnaryOperation",
"CM_Vec2BinaryCondition",
"CM_Vec2BinaryOperation",
"CM_Vec2ScalarOperation",
"CM_Vec2ToScalarBinaryOperation",
"CM_Vec2ToScalarUnaryOperation",
"CM_Vec2UnaryCondition",
"CM_Vec2UnaryOperation",
"CM_Vec3BinaryCondition",
"CM_Vec3BinaryOperation",
"CM_Vec3ScalarOperation",
"CM_Vec3ToScalarBinaryOperation",
"CM_Vec3ToScalarUnaryOperation",
"CM_Vec3UnaryCondition",
"CM_Vec3UnaryOperation",
"CM_Vec4BinaryCondition",
"CM_Vec4BinaryOperation",
"CM_Vec4ScalarOperation",
"CM_Vec4ToScalarBinaryOperation",
"CM_Vec4ToScalarUnaryOperation",
"CM_Vec4UnaryCondition",
"CM_Vec4UnaryOperation"
],
"https://github.com/filipemeneses/comfy_pixelization": [
"Pixelization"
],
"https://github.com/fitCorder/fcSuite/raw/main/fcSuite.py": [
"fcFloat",
"fcFloatMatic",
"fcInteger"
],
"https://github.com/flyingshutter/As_ComfyUI_CustomNodes": [
"BatchIndex_AS",
"ImageMixMasked_As",
"ImageToMask_AS",
"Increment_AS",
"Int2Any_AS",
"LatentAdd_AS",
"LatentMixMasked_As",
"LatentMix_AS",
"LatentToImages_AS",
"LoadLatent_AS",
"MapRange_AS",
"MaskToImage_AS",
"Math_AS",
"Number2Float_AS",
"Number2Int_AS",
"Number_AS",
"SaveLatent_AS",
"TextToImage_AS"
],
"https://github.com/gamert/ComfyUI_tagger": [
"CLIPTextEncodeTaggerDD",
"ImageTaggerDD",
"LoadImage_Tagger",
"PromptDD"
],
"https://github.com/guoyk93/yk-node-suite-comfyui": [
"YKImagePadForOutpaint",
"YKMaskToImage"
],
"https://github.com/hnmr293/ComfyUI-nodes-hnmr": [
"CLIPIter",
"Dict2Model",
"GridImage",
"ImageBlend2",
"KSamplerOverrided",
"KSamplerSetting",
"KSamplerXYZ",
"LatentToHist",
"LatentToImage",
"ModelIter",
"RandomLatentImage",
"SaveStateDict",
"SaveText",
"StateDictLoader",
"StateDictMerger",
"StateDictMergerBlockWeighted",
"StateDictMergerBlockWeightedMulti",
"VAEDecodeBatched",
"VAEEncodeBatched",
"VAEIter"
],
"https://github.com/imb101/ComfyUI-FaceSwap": [
"FaceSwapNode"
],
"https://github.com/kwaroran/abg-comfyui": [
"Remove Image Background (abg)"
],
"https://github.com/lilly1987/ComfyUI_node_Lilly": [
"CheckpointLoaderSimpleText",
"LoraLoaderText",
"LoraLoaderTextRandom",
"Random_Sampler",
"VAELoaderDecode"
],
"https://github.com/lordgasmic/ComfyUI-Wildcards/raw/master/wildcards.py": [
"CLIPTextEncodeWithWildcards"
],
"https://github.com/lrzjason/ComfyUIJasonNode/raw/main/SDXLMixSampler.py": [
"SDXLMixSampler"
],
"https://github.com/ltdrdata/ComfyUI-Impact-Pack": [
"BasicPipeToDetailerPipe",
"BboxDetectorCombined",
"BboxDetectorCombined_v2",
"BboxDetectorForEach",
"BboxDetectorSEGS",
"BitwiseAndMask",
"BitwiseAndMaskForEach",
"CLIPSegDetectorProvider",
"CfgScheduleHookProvider",
"CombineRegionalPrompts",
"DenoiseScheduleHookProvider",
"DetailerForEach",
"DetailerForEachDebug",
"DetailerForEachDebugPipe",