-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFLUX_for_VastAI_v3.json
1397 lines (1397 loc) · 33.2 KB
/
FLUX_for_VastAI_v3.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
{
"last_node_id": 229,
"last_link_id": 426,
"nodes": [
{
"id": 8,
"type": "VAEDecode",
"pos": {
"0": 1746,
"1": -347
},
"size": {
"0": 210,
"1": 46
},
"flags": {},
"order": 26,
"mode": 0,
"inputs": [
{
"name": "samples",
"type": "LATENT",
"link": 338
},
{
"name": "vae",
"type": "VAE",
"link": 381
}
],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [
246
],
"slot_index": 0
}
],
"properties": {
"Node name for S&R": "VAEDecode"
},
"widgets_values": []
},
{
"id": 213,
"type": "LoraLoader|pysssss",
"pos": {
"0": 721,
"1": -117
},
"size": {
"0": 488.70794677734375,
"1": 253.64068603515625
},
"flags": {},
"order": 20,
"mode": 4,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 405
},
{
"name": "clip",
"type": "CLIP",
"link": 406
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
407
],
"slot_index": 0
},
{
"name": "CLIP",
"type": "CLIP",
"links": [
408
],
"slot_index": 1
},
{
"name": "STRING",
"type": "STRING",
"links": null
}
],
"properties": {
"Node name for S&R": "LoraLoader|pysssss"
},
"widgets_values": [
{
"content": "FLUX-1\\game_Style\\lolsart.safetensors",
"image": "loras/FLUX-1\\game_Style\\lolsart.jpg"
},
0.97,
0.97,
"info.txt",
"This LoRA generates images in the style of League of Legends splash art. Built on the Flux model, it was created in response to community requests on reddit.\n\nTo use: Include \"lolsart style\" in your prompts. Example: \"illustration in lolsart style, A graceful wind sorceress\"\n\nSuitable for creating fan art, champion concepts, and game-inspired illustrations.\n\nI Still have alot of testing to do, but from my early tests it works good with:\nEuler - Simpler\nFlux.D - 30 steps\n1280x720\nDistilled CFG Scale - 3.5\n\n-------------------------------\n\n(+)\nillustration in lolsart style, A seductive void assassin emerges from the shadows, her curvaceous form clad in sleek, dark armor that seems to absorb light, face partially obscured by a mask that leaves only her piercing, otherworldly eyes visible, hair a cascade of starry night, wielding twin daggers that trail wisps of cosmic energy, surrounded by swirling portals that offer glimpses of distant galaxies, the environment around her warping and distorting as reality bends to her will <lora:lolsart:1.0>\n\n\nillustration in lolsart style, A mysterious aquatic enchantress emerges from a swirling whirlpool, her lower body a mass of iridescent tentacles and fins, upper body adorned with bioluminescent coral and shells, long flowing hair composed of shimmering water and seaweed, eyes glowing with ancient power, one hand raised conjuring a sphere of swirling water and sea life, the other grasping a staff made of twisted driftwood and pearls, surrounded by a school of ethereal ghost fish, deep sea creatures lurking in the dark waters below, shafts of sunlight piercing the waves from above, <lora:lolsart:1.0>\n\n\nillustration in lolsart style, A primal earth elemental rises from the ground, body a patchwork of moss-covered stones and gnarled roots, eyes burning with amber fire, massive fists clenched and ready for battle, vines and flowers sprouting from its shoulders and back, wisps of mist curling around its feet, standing in a lush forest clearing with ancient ruins scattered about, shafts of golden sunlight breaking through the canopy, small woodland creatures peeking out from behind its legs, the background a tapestry of vibrant greens and earthy browns, <lora:lolsart:1.0>\n\n\nillustration in lolsart style, A small, round, fluffy creature with big expressive eyes peeks out from behind a massive battle hammer twice its size, its tiny paws barely wrapping around the handle, fur a swirl of pastel colors that shimmer with magical energy, adorable fangs peeking out from its mouth as it grins mischievously, wearing an oversized Viking-style helmet that keeps slipping over its eyes, standing atop a colorful mushroom in an enchanted forest, surrounded by floating wisps of light and curious woodland creatures, the background a riot of whimsical plants and soft, dreamy colors, <lora:lolsart:1.0>\n\n\nillustration in lolsart style, A pocket-sized dragon hatchling with oversized wings and a pot-bellied body, scales a patchwork of soft pastel colors, tiny spiraling horns just starting to grow, snout scrunched up in a adorable sneeze as it accidentally releases a puff of glittery smoke, curled up on a pile of golden coins much too large for its small frame, wearing a comically oversized knight's helmet that covers most of its face, tail wrapped protectively around a glowing gemstone, the background a cozy cave filled with twinkling treasures and warm, inviting light, <lora:lolsart:1.0>"
]
},
{
"id": 9,
"type": "SaveImage",
"pos": {
"0": 2036,
"1": -64
},
"size": {
"0": 654.5431518554688,
"1": 694.1315307617188
},
"flags": {},
"order": 27,
"mode": 0,
"inputs": [
{
"name": "images",
"type": "IMAGE",
"link": 246
}
],
"outputs": [],
"properties": {
"Node name for S&R": "SaveImage"
},
"widgets_values": [
"ComfyUI"
],
"color": "#262626",
"bgcolor": "#121212"
},
{
"id": 200,
"type": "VAEEncode",
"pos": {
"0": 2222,
"1": 999
},
"size": {
"0": 210,
"1": 46
},
"flags": {},
"order": 17,
"mode": 0,
"inputs": [
{
"name": "pixels",
"type": "IMAGE",
"link": 424
},
{
"name": "vae",
"type": "VAE",
"link": 385
}
],
"outputs": [
{
"name": "LATENT",
"type": "LATENT",
"links": [
390
],
"slot_index": 0
}
],
"properties": {
"Node name for S&R": "VAEEncode"
},
"widgets_values": []
},
{
"id": 210,
"type": "LoraLoader|pysssss",
"pos": {
"0": 720,
"1": 180
},
"size": {
"0": 482.8974914550781,
"1": 291.7644958496094
},
"flags": {},
"order": 21,
"mode": 4,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 407
},
{
"name": "clip",
"type": "CLIP",
"link": 408
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
398
],
"slot_index": 0
},
{
"name": "CLIP",
"type": "CLIP",
"links": [
399,
400
],
"slot_index": 1
},
{
"name": "STRING",
"type": "STRING",
"links": null
}
],
"properties": {
"Node name for S&R": "LoraLoader|pysssss"
},
"widgets_values": [
{
"content": "FLUX-1\\Artwork\\ScenicHorizonsFLUX.safetensors",
"image": "loras/FLUX-1\\Artwork\\ScenicHorizonsFLUX.jpg"
},
0.9400000000000001,
0.9400000000000001,
"info.txt",
"This is basically a port of my Scenic Horizons model for PonyXL but with a few key differences, I expanded the dataset and I used a new captioning model that's quite good and I think It really shows. This model is intended for epic landscapes but is also good for general use. As always have fun generating.\n\nTrigger word: sc3n1ch0r1s0ns\n\nStrength: I just leave it at 1 but feel free to experiment\n\nI recommend describing you image in great detail if you don't want to type a lot just use chatGPT to describe an image for you.\n\n\n......................\n\n(+)\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\nin the background a massive glowing eye looms large dominating the scene. the eye is depicted in shades of blue and green with intricate swirling patterns that evoke a sense of otherworldly presence. the surrounding environment is a dark starry night sky with a subtle gradient of deep blues and purples.,\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\nthe image is a digital illustration with a surreal dreamlike quality, a lone figure stands in the foreground facing away from the viewer dressed in a dark blue jacket with the word \"fbi\" emblazoned on the back in bold yellow letters, the figure's face is obscured making it difficult to discern any distinct features, the jacket's sleeves are rolled up and the hands are clasped behind the back giving an air of confidence and authority,in the background a massive glowing eye looms large dominating the scene, the eye is depicted in shades of blue and green with intricate swirling patterns that evoke a sense of otherworldly presence, the surrounding environment is a dark starry night sky with a subtle gradient of deep blues and purples,to the left and right of the figure the landscape is a mix of dry withered grass and sparse twisted branches adding to the eerie atmosphere, the overall mood is one of mystery and foreboding as if the figure is about to uncover a hidden truth or confront an unknown entity\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\nto the left of the house a small figure dressed in a bright red coat stands on the snow-covered ground looking up at the burning house, the figure's face is not visible adding to the sense of mystery, the snow around the house is pristine and untouched except for a faint footprint trail leading from the figure to the house,the sky above is a deep gradient blue with a few wispy clouds scattered across it, the overall atmosphere is one of stark contrast between the cold serene winter landscape and the intense fiery scene unfolding at the center, the style is reminiscent of contemporary digital art\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\nthe image is a vibrant semi-realistic digital painting depicting a dramatic scene. in the foreground a lone figure is perched on a high-voltage transmission tower dressed in a dark outfit with a helmet and safety gear suggesting a utility worker or climber. the figure is positioned on the right side of the image near the top of the tower with one hand grasping the structure and the other holding a tool or equipment.\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\nthis is a whimsical semi-realistic digital illustration featuring a serene and dreamy scene, the image depicts a man and a small dog standing in a lush open field at sunset, the man dressed in a dark suit and hat is standing on the driver's side of an old worn-out pickup truck which is parked on the left side of the image, he is holding a phone to his ear suggesting he is engaged in a conversation, the dog a small breed with a brown coat stands beside the truck looking up at the man with a curious expression,the sky above is ablaze with hues of orange pink and purple indicating a breathtaking sunset, soft fluffy clouds are scattered across the sky adding to the serene atmosphere, the truck with its vintage design and worn paint blends harmoniously with the natural surroundings, the illustration style is characterized by soft brushstrokes and subtle color gradations giving the scene a warm nostalgic feel, the overall mood is peaceful and contemplative inviting the viewer to pause and appreciate the tranquil moment\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\nthis is a digital illustration in a fantasy art style depicting a serene and mystical forest scene, the central figure is a majestic ethereal deer with large intricately detailed antlers and a slender luminescent coat that glows with a soft blue light, the deer's body appears to be made of a glowing iridescent material giving it an otherworldly appearance, the light emanating from its body illuminates the surrounding environment casting a subtle glow on the dark forest floor,the background is a dense misty forest with tall trees their trunks and branches silhouetted against the dark sky, the foliage is lush and vibrant with various shades of green and purple hues adding to the mystical atmosphere, the forest floor is carpeted with a variety of plants including ferns and wildflowers which add texture and depth to the scene,the overall mood is peaceful and enchanting with the glowing deer serving as the focal point, the color palette is predominantly dark blues and greens with touches of purple and white creating a dreamy magical ambiance\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\n__My wildcards/Lora wildcards/Scenic horizons/SCENICHORIZONSFLUXV2__\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\n__My wildcards/Lora wildcards/Scenic horizons/SCENICHORIZONSFLUXV2__\n\n\n<lora:ScenicHorizonsFLUX:1> sc3n1ch0r1s0ns,\n__My wildcards/Lora wildcards/Scenic horizons/SCENICHORIZONSFLUXV2__"
]
},
{
"id": 222,
"type": "LoadImage",
"pos": {
"0": 1676,
"1": 1811
},
"size": {
"0": 659.7216186523438,
"1": 585.1889038085938
},
"flags": {},
"order": 0,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [
423
],
"slot_index": 0
},
{
"name": "MASK",
"type": "MASK",
"links": null
}
],
"properties": {
"Node name for S&R": "LoadImage"
},
"widgets_values": [
"ComfyUI_05880_.png",
"image"
],
"color": "#666060",
"bgcolor": "#524c4c"
},
{
"id": 214,
"type": "ImageUpscaleWithModel",
"pos": {
"0": 2420,
"1": 1540
},
"size": {
"0": 340.20001220703125,
"1": 46
},
"flags": {},
"order": 14,
"mode": 4,
"inputs": [
{
"name": "upscale_model",
"type": "UPSCALE_MODEL",
"link": 411
},
{
"name": "image",
"type": "IMAGE",
"link": 409
}
],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [],
"slot_index": 0
}
],
"properties": {
"Node name for S&R": "ImageUpscaleWithModel"
},
"widgets_values": []
},
{
"id": 199,
"type": "LoadImage",
"pos": {
"0": 1672,
"1": 1179
},
"size": {
"0": 659.7216186523438,
"1": 585.1889038085938
},
"flags": {},
"order": 1,
"mode": 4,
"inputs": [],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [
409
],
"slot_index": 0
},
{
"name": "MASK",
"type": "MASK",
"links": null
}
],
"properties": {
"Node name for S&R": "LoadImage"
},
"widgets_values": [
"ComfyUI_05831_.png",
"image"
],
"color": "#666060",
"bgcolor": "#524c4c"
},
{
"id": 216,
"type": "UpscaleModelLoader",
"pos": {
"0": 2440,
"1": 1650
},
"size": {
"0": 315,
"1": 58
},
"flags": {},
"order": 2,
"mode": 4,
"inputs": [],
"outputs": [
{
"name": "UPSCALE_MODEL",
"type": "UPSCALE_MODEL",
"links": [
411
]
}
],
"properties": {
"Node name for S&R": "UpscaleModelLoader"
},
"widgets_values": [
"newer\\4xNomosWebPhoto_RealPLKSR.pth"
]
},
{
"id": 198,
"type": "Note",
"pos": {
"0": 672,
"1": 514
},
"size": {
"0": 402.7461853027344,
"1": 195.7793731689453
},
"flags": {},
"order": 3,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "Ötletek",
"properties": {},
"widgets_values": [
""
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 106,
"type": "VAELoader",
"pos": {
"0": 130,
"1": -200
},
"size": {
"0": 315,
"1": 58
},
"flags": {},
"order": 4,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "VAE",
"type": "VAE",
"links": [
381,
385
],
"slot_index": 0,
"shape": 3
}
],
"properties": {
"Node name for S&R": "VAELoader"
},
"widgets_values": [
"ae.safetensors"
]
},
{
"id": 197,
"type": "DualCLIPLoaderGGUF",
"pos": {
"0": 130,
"1": -70
},
"size": {
"0": 320,
"1": 110
},
"flags": {
"collapsed": false
},
"order": 5,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "CLIP",
"type": "CLIP",
"links": [
402
],
"slot_index": 0,
"shape": 3
}
],
"properties": {
"Node name for S&R": "DualCLIPLoaderGGUF"
},
"widgets_values": [
"ViT-L-14-BEST-smooth-GmP-TE-only-HF-format.safetensors",
"t5-v1_1-xxl-encoder-Q8_0.gguf",
"flux"
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 78,
"type": "EmptyLatentImage",
"pos": {
"0": 1650,
"1": 590
},
"size": {
"0": 315,
"1": 106
},
"flags": {},
"order": 6,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "LATENT",
"type": "LATENT",
"links": [],
"slot_index": 0
}
],
"properties": {
"Node name for S&R": "EmptyLatentImage"
},
"widgets_values": [
960,
1344,
1
],
"shape": 1
},
{
"id": 204,
"type": "ImageResizeKJ",
"pos": {
"0": 2433,
"1": 1222
},
"size": {
"0": 315,
"1": 266
},
"flags": {},
"order": 13,
"mode": 0,
"inputs": [
{
"name": "image",
"type": "IMAGE",
"link": 423
},
{
"name": "get_image_size",
"type": "IMAGE",
"link": null,
"shape": 7
},
{
"name": "width_input",
"type": "INT",
"link": null,
"widget": {
"name": "width_input"
},
"shape": 7
},
{
"name": "height_input",
"type": "INT",
"link": null,
"widget": {
"name": "height_input"
},
"shape": 7
}
],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [
421,
424
],
"slot_index": 0
},
{
"name": "width",
"type": "INT",
"links": null,
"slot_index": 1
},
{
"name": "height",
"type": "INT",
"links": null
}
],
"properties": {
"Node name for S&R": "ImageResizeKJ"
},
"widgets_values": [
1600,
904,
"lanczos",
true,
64,
0,
0,
"disabled"
]
},
{
"id": 221,
"type": "PreviewImage",
"pos": {
"0": 2893,
"1": 115
},
"size": {
"0": 656.72509765625,
"1": 404.84356689453125
},
"flags": {},
"order": 16,
"mode": 0,
"inputs": [
{
"name": "images",
"type": "IMAGE",
"link": 421
}
],
"outputs": [],
"properties": {
"Node name for S&R": "PreviewImage"
},
"widgets_values": []
},
{
"id": 217,
"type": "LoraLoader|pysssss",
"pos": {
"0": 735,
"1": -732
},
"size": {
"0": 478.8631896972656,
"1": 280.5846252441406
},
"flags": {},
"order": 18,
"mode": 4,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 413
},
{
"name": "clip",
"type": "CLIP",
"link": 414
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
415
],
"slot_index": 0
},
{
"name": "CLIP",
"type": "CLIP",
"links": [
416
],
"slot_index": 1
},
{
"name": "STRING",
"type": "STRING",
"links": null
}
],
"properties": {
"Node name for S&R": "LoraLoader|pysssss"
},
"widgets_values": [
{
"content": "ScenicHorizonsFLUX/ScenicHorizonsFLUX.safetensors",
"image": "loras/ScenicHorizonsFLUX/ScenicHorizonsFLUX.jpg"
},
0.8300000000000001,
0.8300000000000001,
"[none]"
]
},
{
"id": 164,
"type": "UnetLoaderGGUFAdvanced",
"pos": {
"0": 129,
"1": -504
},
"size": {
"0": 315,
"1": 130
},
"flags": {},
"order": 7,
"mode": 4,
"inputs": [],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [],
"slot_index": 0,
"shape": 3
}
],
"properties": {
"Node name for S&R": "UnetLoaderGGUFAdvanced"
},
"widgets_values": [
"fluxDEVDEDISTILLED_q80GUGG.gguf",
"default",
"default",
true
]
},
{
"id": 211,
"type": "LoraLoader|pysssss",
"pos": {
"0": 733,
"1": -1053
},
"size": {
"0": 500.275390625,
"1": 286.39031982421875
},
"flags": {},
"order": 15,
"mode": 4,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 426
},
{
"name": "clip",
"type": "CLIP",
"link": 402
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
413
],
"slot_index": 0
},
{
"name": "CLIP",
"type": "CLIP",
"links": [
414
],
"slot_index": 1
},
{
"name": "STRING",
"type": "STRING",
"links": null
}
],
"properties": {
"Node name for S&R": "LoraLoader|pysssss"
},
"widgets_values": [
{
"content": "Ayami_Kojima_Style_V3_30/Ayami_Kojima_Style_V3_30.safetensors",
"image": "loras/Ayami_Kojima_Style_V3_30/Ayami_Kojima_Style_V3_30.jpg"
},
0.72,
0.72,
"[none]"
]
},
{
"id": 212,
"type": "LoraLoader|pysssss",
"pos": {
"0": 720,
"1": -411
},
"size": {
"0": 491.87017822265625,
"1": 256.8396911621094
},
"flags": {},
"order": 19,
"mode": 0,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 415
},
{
"name": "clip",
"type": "CLIP",
"link": 416
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
405
],
"slot_index": 0
},
{
"name": "CLIP",
"type": "CLIP",
"links": [
406
],
"slot_index": 1
},
{
"name": "STRING",
"type": "STRING",
"links": null
}
],
"properties": {
"Node name for S&R": "LoraLoader|pysssss"
},
"widgets_values": [
{
"content": "Fr4z3tt4_Flux/Fr4z3tt4_Flux.safetensors",
"image": "loras/Fr4z3tt4_Flux/Fr4z3tt4_Flux.jpg"
},
1,
1,
"[none]"
]
},
{
"id": 224,
"type": "UNETLoader",
"pos": {
"0": 130,
"1": -340
},
"size": {
"0": 315,
"1": 82
},
"flags": {},
"order": 8,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
426
],
"slot_index": 0,
"shape": 3
}
],
"properties": {
"Node name for S&R": "UNETLoader"
},
"widgets_values": [
"fluxDEVDEDISTILLED_fp8.safetensors",
"default"
]
},
{
"id": 226,
"type": "Bookmark (rgthree)",
"pos": {
"0": 1014,
"1": -151
},
"size": {
"0": 210,
"1": 62
},
"flags": {
"collapsed": true
},
"order": 9,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "🔖",
"properties": {},
"widgets_values": [
"5",
1.2000000000000002
]
},
{
"id": 193,
"type": "DynamicThresholdingFull",
"pos": {
"0": 1232,
"1": -152
},
"size": {
"0": 315,
"1": 298
},
"flags": {},
"order": 22,
"mode": 0,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 398
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
376
],
"slot_index": 0,
"shape": 3
}
],
"properties": {
"Node name for S&R": "DynamicThresholdingFull"
},
"widgets_values": [
3,
0.998,
"Constant",
0,
"Constant",
0,
1,
"enable",
"MEAN",
"STD",
1
]
},
{
"id": 174,
"type": "CLIPTextEncode",
"pos": {
"0": 1216,
"1": 184
},
"size": {
"0": 400,
"1": 200
},
"flags": {},
"order": 23,
"mode": 0,
"inputs": [
{
"name": "clip",
"type": "CLIP",
"link": 399
}
],
"outputs": [
{
"name": "CONDITIONING",
"type": "CONDITIONING",
"links": [
335
],
"slot_index": 0,
"shape": 3
}
],
"properties": {
"Node name for S&R": "CLIPTextEncode"
},
"widgets_values": [
"sc3n1ch0r1s0ns, ccc, cowboy shot, fr4z3tt4, medium close-up, Tzarina Katarin from Kislev, she is holding an ice sword in front of her and an ice staff next to her, ice crown, beautiful woman tzarina, warhammer character artwork, purple dress with gold ornaments and turquoise gemstones, looking to the left side, determined face, white pale face, fur trim on her cape, glowing light blue eyes, eyeshadow, Kislev Lord, open snowy field in the background like a snowy tundra terrain, artwork, concept art, oil painting, brush strokes, illustration, ultra wide angle, fisheye,"
]
},
{