Date: 2025/02/14 10:54:59 UTC-08:00
Type: Swarm Debug Log
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
2025-02-14 16:00:24.169 [Init] === SwarmUI v0.9.5.0 Starting at 2025-02-14 16:00:24 ===
2025-02-14 16:00:24.475 [Init] Prepping extension: SwarmUI.Builtin_ScorersExtension.ScorersExtension...
2025-02-14 16:00:24.484 [Init] Prepping extension: SwarmUI.Builtin_ImageBatchToolExtension.ImageBatchToolExtension...
2025-02-14 16:00:24.485 [Init] Prepping extension: SwarmUI.Builtin_GridGeneratorExtension.GridGeneratorExtension...
2025-02-14 16:00:24.487 [Init] Prepping extension: SwarmUI.Builtin_DynamicThresholding.DynamicThresholdingExtension...
2025-02-14 16:00:24.487 [Init] Prepping extension: SwarmUI.Builtin_ComfyUIBackend.ComfyUIBackendExtension...
2025-02-14 16:00:24.488 [Init] Prepping extension: SwarmUI.Builtin_AutoWebUIExtension.AutoWebUIBackendExtension...
2025-02-14 16:00:24.535 [Init] Parsing command line...
2025-02-14 16:00:24.538 [Init] Loading settings file...
2025-02-14 16:00:24.574 [Init] Re-saving settings file...
2025-02-14 16:00:24.589 [Init] Applying command line settings...
2025-02-14 16:00:24.596 [Init] SwarmUI was installed 2025-02-13 (1 days ago) with version 0.9.5.0
2025-02-14 16:00:24.950 [Init] Prepping options...
2025-02-14 16:00:24.986 [Init] Current git commit marked as date 2025-02-13 11:00:01
2025-02-14 16:00:25.341 [Init] Loading models list...
2025-02-14 16:00:25.461 [Init] CPU Cores: 32 | RAM: 31.63 GiB total, 11.05 GiB available, 83.63 GiB total page file, 44.61 GiB available page file
2025-02-14 16:00:25.462 [Init] GPU 0: NVIDIA GeForce RTX 4090 Laptop GPU | Temp 49C | Util 14% GPU, 15% Memory | VRAM 15.99 GiB total, 11.32 GiB free, 4.36 GiB used
2025-02-14 16:00:25.463 [Init] Will use GPU accelerations specific to NVIDIA GeForce RTX 40xx series and newer.
2025-02-14 16:00:26.042 [Init] Swarm is up to date! You have version 0.9.5.0, and 0.9.5-Beta is the latest.
2025-02-14 16:00:26.131 [Init] Loading backends...
2025-02-14 16:00:26.133 [Init] Loading backends from file...
2025-02-14 16:00:26.146 [Init] Prepping API...
2025-02-14 16:00:26.147 [Init] Initializing backend #0 - ComfyUI Self-Starting...
2025-02-14 16:00:26.148 [Init] Prepping webserver...
2025-02-14 16:00:26.149 [Init] Backend request handler loop ready...
2025-02-14 16:00:26.237 [Init] Scan for web extensions...
2025-02-14 16:00:26.454 [Init] Readying extensions for launch...
2025-02-14 16:00:26.454 [Init] Launching server...
2025-02-14 16:00:26.456 [Init] Starting webserver on http://localhost:7801
2025-02-14 16:00:26.532 [Init] Program is running.
2025-02-14 16:00:27.036 [Init] Launch web browser...
2025-02-14 16:00:27.427 [Init] Self-Start ComfyUI-0 on port 7821 is loading...
2025-02-14 16:00:27.598 [Info] Creating new admin session 'local' for ::1
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path diffusion_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\diffusion_models
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path gligen E:\studio Dropbox\studio\ai\libs\diffusion-models\models\gligen
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path ipadapter E:\studio Dropbox\studio\ai\libs\diffusion-models\models\ipadapter
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path yolov8 E:\studio Dropbox\studio\ai\libs\diffusion-models\models\yolov8
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path tensorrt E:\studio Dropbox\studio\ai\libs\diffusion-models\models\tensorrt
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path clipseg E:\studio Dropbox\studio\ai\libs\diffusion-models\models\clipseg
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path style_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\style_models
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\DLNodes
2025-02-14 16:00:27.711 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes
2025-02-14 16:00:28.439 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:00:33.552 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:00:38.654 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:00:43.777 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:00:46.323 [Info] User local requested 1 image with model 'SDXL/base/SDXL_base.safetensors'...
2025-02-14 16:00:46.331 [Debug] [BackendHandler] Backend request #1 for model SDXL/base/SDXL_base.safetensors, maxWait=7.00:00:00.
2025-02-14 16:00:48.872 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:00:53.987 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:00:59.089 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:04.198 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:09.299 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:09.311 [Debug] [ComfyUI-0/STDERR] Checkpoint files will always be loaded safely.
2025-02-14 16:01:09.575 [Debug] [ComfyUI-0/STDERR] Total VRAM 16376 MB, total RAM 32387 MB
2025-02-14 16:01:09.575 [Debug] [ComfyUI-0/STDERR] pytorch version: 2.6.0+cu126
2025-02-14 16:01:09.576 [Debug] [ComfyUI-0/STDERR] Set vram state to: NORMAL_VRAM
2025-02-14 16:01:09.576 [Debug] [ComfyUI-0/STDERR] Device: cuda:0 NVIDIA GeForce RTX 4090 Laptop GPU : cudaMallocAsync
2025-02-14 16:01:11.453 [Debug] [ComfyUI-0/STDERR] Using pytorch attention
2025-02-14 16:01:14.376 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 port 7821 waiting for server...
2025-02-14 16:01:14.376 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:19.480 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:24.568 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:29.691 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:34.781 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:39.863 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:43.937 [Debug] Comfy backend 0 has failed to load value set repeatedly. Ignoring errors of HttpRequestException: No connection could be made because the target machine actively refused it. (localhost:7821)
2025-02-14 16:01:44.946 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:45.266 [Debug] [ComfyUI-0/STDERR] ComfyUI version: 0.3.14
2025-02-14 16:01:45.486 [Debug] [ComfyUI-0/STDERR] Using existing copy of specific frontend version tag: Comfy-Org/[email protected]
2025-02-14 16:01:45.486 [Debug] [ComfyUI-0/STDERR] [Prompt Server] web root: E:\SwarmUI\dlbackend\comfy\ComfyUI\web_custom_versions\Comfy-Org_ComfyUI_frontend\1.7.14
2025-02-14 16:01:50.053 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:55.144 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 16:01:56.902 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:01:56.902 [Debug] [ComfyUI-0/STDERR] Import times for custom nodes:
2025-02-14 16:01:56.902 [Debug] [ComfyUI-0/STDERR] 0.0 seconds: E:\SwarmUI\dlbackend\comfy\ComfyUI\custom_nodes\websocket_image_save.py
2025-02-14 16:01:56.902 [Debug] [ComfyUI-0/STDERR] 0.0 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\DLNodes\ComfyUI-SAI_API
2025-02-14 16:01:56.903 [Debug] [ComfyUI-0/STDERR] 0.5 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes\SwarmComfyCommon
2025-02-14 16:01:56.903 [Debug] [ComfyUI-0/STDERR] 7.1 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes\SwarmComfyExtra
2025-02-14 16:01:56.903 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:01:56.923 [Debug] [ComfyUI-0/STDERR] Starting server
2025-02-14 16:01:56.923 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:01:56.924 [Debug] [ComfyUI-0/STDERR] To see the GUI go to: http://127.0.0.1:7821
2025-02-14 16:01:57.280 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-02-14 16:01:57.302 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-02-14 16:01:57.302 [Debug] [Load ComfyUI Self-Starting #0] Done! Started!
2025-02-14 16:01:57.302 [Init] Self-Start ComfyUI-0 on port 7821 started.
2025-02-14 16:01:57.310 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 self-start port 7821 loop ending (should now be alive)
2025-02-14 16:01:58.056 [Debug] [BackendHandler] backend #0 will load a model: E:/studio Dropbox/studio/ai/libs/diffusion-models/models/checkpoints/SDXL/base/SDXL_base.safetensors, with 1 requests waiting for 0 seconds
2025-02-14 16:01:58.817 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-02-14 16:01:58.817 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-02-14 16:01:58.842 [Debug] Have 61 Stable-Diffusion models.
2025-02-14 16:01:58.845 [Debug] Have 6 VAE models.
2025-02-14 16:01:59.022 [Debug] Have 515 LoRA models.
2025-02-14 16:01:59.025 [Debug] Have 14 Embedding models.
2025-02-14 16:01:59.048 [Debug] Have 64 ControlNet models.
2025-02-14 16:01:59.054 [Debug] Have 12 Clip models.
2025-02-14 16:01:59.058 [Debug] Have 9 ClipVision models.
2025-02-14 16:01:59.087 [Debug] Data refreshed!
2025-02-14 16:02:00.271 [Debug] [ComfyUI-0/STDERR] got prompt
2025-02-14 16:02:01.898 [Debug] [ComfyUI-0/STDERR] model weight dtype torch.float16, manual cast: None
2025-02-14 16:02:01.922 [Debug] [ComfyUI-0/STDERR] model_type EPS
2025-02-14 16:02:08.231 [Info] User local requested 1 image with model 'SDXL/base/SDXL_base.safetensors'...
2025-02-14 16:02:08.237 [Debug] [BackendHandler] Backend request #2 for model SDXL/base/SDXL_base.safetensors, maxWait=7.00:00:00.
2025-02-14 16:02:15.896 [Debug] [ComfyUI-0/STDERR] Using pytorch attention in VAE
2025-02-14 16:02:15.901 [Debug] [ComfyUI-0/STDERR] Using pytorch attention in VAE
2025-02-14 16:02:16.282 [Debug] [ComfyUI-0/STDERR] VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2025-02-14 16:02:16.884 [Debug] [ComfyUI-0/STDERR] Requested to load SDXLClipModel
2025-02-14 16:02:16.954 [Debug] [ComfyUI-0/STDERR] loaded completely 9.5367431640625e+25 1560.802734375 True
2025-02-14 16:02:16.975 [Debug] [ComfyUI-0/STDERR] CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cuda:0, dtype: torch.float16
2025-02-14 16:02:21.240 [Debug] [ComfyUI-0/STDERR] loaded diffusion model directly to GPU
2025-02-14 16:02:21.241 [Debug] [ComfyUI-0/STDERR] Requested to load SDXL
2025-02-14 16:02:21.417 [Debug] [ComfyUI-0/STDERR] loaded completely 9.5367431640625e+25 4897.0483474731445 True
2025-02-14 16:02:24.067 [Debug] [ComfyUI-0/STDERR] Prompt executed in 23.79 seconds
2025-02-14 16:02:24.323 [Debug] [BackendHandler] backend #0 loaded model, returning to pool
2025-02-14 16:02:24.411 [Debug] [BackendHandler] Backend request #1 found correct model on #0
2025-02-14 16:02:24.412 [Debug] [BackendHandler] Backend request #1 finished.
2025-02-14 16:02:24.423 [Debug] [ComfyUI-0/STDERR] got prompt
2025-02-14 16:02:24.423 [Debug] [BackendHandler] Backend request #2 found correct model on #0
2025-02-14 16:02:24.423 [Debug] [BackendHandler] Backend request #2 finished.
2025-02-14 16:02:25.815 [Debug] [ComfyUI-0/STDERR] Requested to load SDXL
2025-02-14 16:02:25.979 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:02:26.464 [Debug] [ComfyUI-0/STDERR] 0%| | 0/20 [00:00<?, ?it/s]got prompt
2025-02-14 16:02:27.564 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:02:27.769 [Debug] [ComfyUI-0/STDERR] 5%|5 | 1/20 [00:01<00:30, 1.58s/it]
2025-02-14 16:02:28.137 [Debug] [ComfyUI-0/STDERR] 10%|# | 2/20 [00:01<00:13, 1.29it/s]
2025-02-14 16:02:28.433 [Debug] [ComfyUI-0/STDERR] 15%|#5 | 3/20 [00:02<00:10, 1.70it/s]
2025-02-14 16:02:28.717 [Debug] [ComfyUI-0/STDERR] 20%|## | 4/20 [00:02<00:07, 2.11it/s]
2025-02-14 16:02:29.111 [Debug] [ComfyUI-0/STDERR] 25%|##5 | 5/20 [00:02<00:06, 2.47it/s]
2025-02-14 16:02:29.422 [Debug] [ComfyUI-0/STDERR] 30%|### | 6/20 [00:03<00:05, 2.49it/s]
2025-02-14 16:02:29.789 [Debug] [ComfyUI-0/STDERR] 35%|###5 | 7/20 [00:03<00:04, 2.69it/s]
2025-02-14 16:02:30.173 [Debug] [ComfyUI-0/STDERR] 40%|#### | 8/20 [00:03<00:04, 2.70it/s]
2025-02-14 16:02:30.509 [Debug] [ComfyUI-0/STDERR] 45%|####5 | 9/20 [00:04<00:04, 2.67it/s]
2025-02-14 16:02:30.838 [Debug] [ComfyUI-0/STDERR] 50%|##### | 10/20 [00:04<00:03, 2.76it/s]
2025-02-14 16:02:31.177 [Debug] [ComfyUI-0/STDERR] 55%|#####5 | 11/20 [00:04<00:03, 2.84it/s]
2025-02-14 16:02:31.561 [Debug] [ComfyUI-0/STDERR] 60%|###### | 12/20 [00:05<00:02, 2.87it/s]
2025-02-14 16:02:31.929 [Debug] [ComfyUI-0/STDERR] 65%|######5 | 13/20 [00:05<00:02, 2.78it/s]
2025-02-14 16:02:32.242 [Debug] [ComfyUI-0/STDERR] 70%|####### | 14/20 [00:05<00:02, 2.76it/s]
2025-02-14 16:02:32.627 [Debug] [ComfyUI-0/STDERR] 75%|#######5 | 15/20 [00:06<00:01, 2.88it/s]
2025-02-14 16:02:33.002 [Debug] [ComfyUI-0/STDERR] 80%|######## | 16/20 [00:06<00:01, 2.79it/s]
2025-02-14 16:02:33.383 [Debug] [ComfyUI-0/STDERR] 85%|########5 | 17/20 [00:07<00:01, 2.75it/s]
2025-02-14 16:02:33.780 [Debug] [ComfyUI-0/STDERR] 90%|######### | 18/20 [00:07<00:00, 2.71it/s]
2025-02-14 16:02:34.171 [Debug] [ComfyUI-0/STDERR] 95%|#########5| 19/20 [00:07<00:00, 2.65it/s]
2025-02-14 16:02:34.171 [Debug] [ComfyUI-0/STDERR] 100%|##########| 20/20 [00:08<00:00, 2.62it/s]
2025-02-14 16:02:34.171 [Debug] [ComfyUI-0/STDERR] 100%|##########| 20/20 [00:08<00:00, 2.44it/s]
2025-02-14 16:02:34.178 [Debug] [ComfyUI-0/STDERR] Requested to load AutoencoderKL
2025-02-14 16:02:34.291 [Debug] [ComfyUI-0/STDERR] loaded completely 3559.9759979248047 159.55708122253418 True
2025-02-14 16:02:35.329 [Debug] [ComfyUI-0/STDERR] Prompt executed in 10.90 seconds
2025-02-14 16:02:35.723 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:02:36.102 [Debug] [ComfyUI-0/STDERR] 0%| | 0/20 [00:00<?, ?it/s]
2025-02-14 16:02:36.478 [Debug] [ComfyUI-0/STDERR] 5%|5 | 1/20 [00:00<00:07, 2.64it/s]
2025-02-14 16:02:36.856 [Debug] [ComfyUI-0/STDERR] 10%|# | 2/20 [00:00<00:06, 2.65it/s]
2025-02-14 16:02:37.226 [Debug] [ComfyUI-0/STDERR] 15%|#5 | 3/20 [00:01<00:06, 2.65it/s]
2025-02-14 16:02:37.556 [Debug] [ComfyUI-0/STDERR] 20%|## | 4/20 [00:01<00:05, 2.67it/s]
2025-02-14 16:02:37.939 [Debug] [ComfyUI-0/STDERR] 25%|##5 | 5/20 [00:01<00:05, 2.79it/s]
2025-02-14 16:02:38.281 [Info] Generated an image in 98.09 sec (prep) and 11.22 sec (gen)
2025-02-14 16:02:38.314 [Debug] [ComfyUI-0/STDERR] 30%|### | 6/20 [00:02<00:05, 2.73it/s]
2025-02-14 16:02:38.701 [Debug] [ComfyUI-0/STDERR] 35%|###5 | 7/20 [00:02<00:04, 2.71it/s]
2025-02-14 16:02:39.093 [Debug] [ComfyUI-0/STDERR] 40%|#### | 8/20 [00:02<00:04, 2.67it/s]
2025-02-14 16:02:39.456 [Debug] [ComfyUI-0/STDERR] 45%|####5 | 9/20 [00:03<00:04, 2.63it/s]
2025-02-14 16:02:39.819 [Debug] [ComfyUI-0/STDERR] 50%|##### | 10/20 [00:03<00:03, 2.67it/s]
2025-02-14 16:02:40.183 [Debug] [ComfyUI-0/STDERR] 55%|#####5 | 11/20 [00:04<00:03, 2.69it/s]
2025-02-14 16:02:40.540 [Debug] [ComfyUI-0/STDERR] 60%|###### | 12/20 [00:04<00:02, 2.71it/s]
2025-02-14 16:02:40.874 [Debug] [ComfyUI-0/STDERR] 65%|######5 | 13/20 [00:04<00:02, 2.74it/s]
2025-02-14 16:02:41.200 [Debug] [ComfyUI-0/STDERR] 70%|####### | 14/20 [00:05<00:02, 2.81it/s]
2025-02-14 16:02:41.513 [Debug] [ComfyUI-0/STDERR] 75%|#######5 | 15/20 [00:05<00:01, 2.88it/s]
2025-02-14 16:02:41.834 [Debug] [ComfyUI-0/STDERR] 80%|######## | 16/20 [00:05<00:01, 2.97it/s]
2025-02-14 16:02:42.188 [Debug] [ComfyUI-0/STDERR] 85%|########5 | 17/20 [00:06<00:00, 3.01it/s]
2025-02-14 16:02:42.539 [Debug] [ComfyUI-0/STDERR] 90%|######### | 18/20 [00:06<00:00, 2.95it/s]
2025-02-14 16:02:42.896 [Debug] [ComfyUI-0/STDERR] 95%|#########5| 19/20 [00:06<00:00, 2.92it/s]
2025-02-14 16:02:42.896 [Debug] [ComfyUI-0/STDERR] 100%|##########| 20/20 [00:07<00:00, 2.89it/s]
2025-02-14 16:02:42.896 [Debug] [ComfyUI-0/STDERR] 100%|##########| 20/20 [00:07<00:00, 2.79it/s]
2025-02-14 16:02:43.260 [Debug] [ComfyUI-0/STDERR] Prompt executed in 7.58 seconds
2025-02-14 16:02:44.059 [Info] Generated an image in 27.44 sec (prep) and 7.64 sec (gen)
2025-02-14 16:03:10.917 [Info] [GridGenerator] Have 1 unique value sets, will go into Output/local/Grids/test
2025-02-14 16:03:10.926 [Info] [GridGenerator] Skipped 0 files, will run 1 files, for 1 total steps
2025-02-14 16:03:10.942 [Info] Building final web data...
2025-02-14 16:03:11.016 [Info] Web file is now at Output/local/Grids/test/index.html
2025-02-14 16:03:11.024 [Debug] [GridGenerator] Pre-prepping 1/1 ... Set: Steps=1, file 1
2025-02-14 16:03:11.028 [Debug] Grid Gen micro-pausing to maintain order as 0 < 20
2025-02-14 16:03:11.029 [Debug] [BackendHandler] Backend request #3 for model SDXL/base/SDXL_base.safetensors, maxWait=7.00:00:00.
2025-02-14 16:03:11.029 [Debug] [BackendHandler] Backend request #3 found correct model on #0
2025-02-14 16:03:11.029 [Debug] [BackendHandler] Backend request #3 finished.
2025-02-14 16:03:11.031 [Debug] [ComfyUI-0/STDERR] got prompt
2025-02-14 16:03:11.062 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:03:11.600 [Debug] [ComfyUI-0/STDERR] 0%| | 0/1 [00:00<?, ?it/s]
2025-02-14 16:03:11.600 [Debug] [ComfyUI-0/STDERR] 100%|##########| 1/1 [00:00<00:00, 1.87it/s]
2025-02-14 16:03:11.600 [Debug] [ComfyUI-0/STDERR] 100%|##########| 1/1 [00:00<00:00, 1.86it/s]
2025-02-14 16:03:12.084 [Debug] [ComfyUI-0/STDERR] Prompt executed in 1.05 seconds
2025-02-14 16:03:13.749 [Info] Completed gen #1 (of 1) ... Set: 'Steps=1', file '1'
2025-02-14 16:03:13.763 [Info] Generated an image in 0.00 sec (prep) and 1.36 sec (gen)
2025-02-14 16:03:14.778 [Info] Grid Generator completed successfully
2025-02-14 16:03:50.698 [Info] [GridGenerator] Have 1 unique value sets, will go into Output/local/Grids/test
2025-02-14 16:03:50.706 [Info] [GridGenerator] Skipped 1 files, will run 0 files, for 0 total steps
2025-02-14 16:03:50.710 [Info] Building final web data...
2025-02-14 16:03:50.731 [Info] Web file is now at Output/local/Grids/test/index.html
2025-02-14 16:03:51.720 [Info] Grid Generator completed successfully
2025-02-14 16:04:15.026 [Info] [GridGenerator] Have 2 unique value sets, will go into Output/local/Grids/test
2025-02-14 16:04:15.031 [Info] [GridGenerator] Skipped 1 files, will run 1 files, for 2 total steps
2025-02-14 16:04:15.036 [Info] Building final web data...
2025-02-14 16:04:15.061 [Info] Web file is now at Output/local/Grids/test/index.html
2025-02-14 16:04:15.066 [Debug] [GridGenerator] Pre-prepping 1/1 ... Set: Steps=2, file 2
2025-02-14 16:04:15.066 [Debug] Grid Gen micro-pausing to maintain order as 0 < 20
2025-02-14 16:04:15.066 [Debug] [BackendHandler] Backend request #4 for model SDXL/base/SDXL_base.safetensors, maxWait=7.00:00:00.
2025-02-14 16:04:15.066 [Debug] [BackendHandler] Backend request #4 found correct model on #0
2025-02-14 16:04:15.066 [Debug] [BackendHandler] Backend request #4 finished.
2025-02-14 16:04:15.068 [Debug] [ComfyUI-0/STDERR] got prompt
2025-02-14 16:04:15.105 [Debug] [ComfyUI-0/STDERR]
2025-02-14 16:04:15.560 [Debug] [ComfyUI-0/STDERR] 0%| | 0/2 [00:00<?, ?it/s]
2025-02-14 16:04:16.017 [Debug] [ComfyUI-0/STDERR] 50%|##### | 1/2 [00:00<00:00, 2.19it/s]
2025-02-14 16:04:16.017 [Debug] [ComfyUI-0/STDERR] 100%|##########| 2/2 [00:00<00:00, 2.19it/s]
2025-02-14 16:04:16.017 [Debug] [ComfyUI-0/STDERR] 100%|##########| 2/2 [00:00<00:00, 2.19it/s]
2025-02-14 16:04:16.400 [Debug] [ComfyUI-0/STDERR] Prompt executed in 1.33 seconds
2025-02-14 16:04:18.642 [Info] Completed gen #1 (of 1) ... Set: 'Steps=2', file '2'
2025-02-14 16:04:18.680 [Info] Generated an image in 0.00 sec (prep) and 1.66 sec (gen)
2025-02-14 16:04:19.698 [Info] Grid Generator completed successfully
2025-02-14 16:04:43.673 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-02-14 16:04:43.673 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-02-14 16:04:43.689 [Debug] Have 61 Stable-Diffusion models.
2025-02-14 16:04:43.691 [Debug] Have 6 VAE models.
2025-02-14 16:04:43.793 [Debug] Have 515 LoRA models.
2025-02-14 16:04:43.796 [Debug] Have 14 Embedding models.
2025-02-14 16:04:43.810 [Debug] Have 64 ControlNet models.
2025-02-14 16:04:43.815 [Debug] Have 12 Clip models.
2025-02-14 16:04:43.819 [Debug] Have 9 ClipVision models.
2025-02-14 16:04:43.844 [Debug] Data refreshed!
2025-02-14 16:29:02.656 [Info] Creating new admin session 'local' for ::1
2025-02-14 16:29:04.756 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-02-14 16:29:04.757 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-02-14 16:29:04.776 [Debug] Have 61 Stable-Diffusion models.
2025-02-14 16:29:04.779 [Debug] Have 6 VAE models.
2025-02-14 16:29:04.861 [Debug] Have 515 LoRA models.
2025-02-14 16:29:04.862 [Debug] Have 14 Embedding models.
2025-02-14 16:29:04.875 [Debug] Have 64 ControlNet models.
2025-02-14 16:29:04.878 [Debug] Have 12 Clip models.
2025-02-14 16:29:04.880 [Debug] Have 9 ClipVision models.
2025-02-14 16:29:04.935 [Debug] Data refreshed!
2025-02-14 19:44:09.765 [Warning] User local requested add-new-backend of type comfyui_selfstart.
2025-02-14 19:44:09.766 [Debug] [Load ComfyUI Self-Starting #1] Waiting to load...
2025-02-14 19:44:09.766 [Debug] [Load ComfyUI Self-Starting #1] Will now load...
2025-02-14 19:44:09.766 [Init] Initializing backend #1 - ComfyUI Self-Starting...
2025-02-14 19:44:09.767 [Debug] [Load ComfyUI Self-Starting #1] Starting init...
2025-02-14 19:44:09.767 [Debug] [Load ComfyUI Self-Starting #1] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:44:09.767 [Debug] [Load ComfyUI Self-Starting #1] Will track node repo load task...
2025-02-14 19:44:09.767 [Debug] [Load ComfyUI Self-Starting #1] Waiting on git tasks to complete...
2025-02-14 19:44:09.818 [Debug] [Load ComfyUI Self-Starting #1] Will ensure all node repos...
2025-02-14 19:44:09.818 [Debug] [Load ComfyUI Self-Starting #1] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:44:09.818 [Debug] [Load ComfyUI Self-Starting #1] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:44:10.388 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:44:10.442 [Debug] [Load ComfyUI Self-Starting #1] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:44:10.887 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:44:10.887 [Debug] [Load ComfyUI Self-Starting #1] Done ensuring all node repos.
2025-02-14 19:44:10.887 [Debug] [Load ComfyUI Self-Starting #1] All tasks done.
2025-02-14 19:44:10.888 [Debug] [Load ComfyUI Self-Starting #1] Starting self-start ComfyUI process...
2025-02-14 19:44:10.888 [Debug] [Load ComfyUI Self-Starting #1] Cancelling start of ComfyUI-1 as it has an empty start script.
2025-02-14 19:44:17.333 [Info] Saving backends...
2025-02-14 19:44:18.286 [Warning] User local requested edit of backend 1.
2025-02-14 19:44:18.289 [Info] ComfyUI backend 1 shutting down...
2025-02-14 19:44:18.291 [Debug] [Load ComfyUI Self-Starting #1] Waiting to load...
2025-02-14 19:44:18.919 [Debug] [Load ComfyUI Self-Starting #1] Will now load...
2025-02-14 19:44:18.919 [Init] Initializing backend #1 - ComfyUI Self-Starting...
2025-02-14 19:44:18.920 [Debug] [Load ComfyUI Self-Starting #1] Starting init...
2025-02-14 19:44:18.920 [Debug] [Load ComfyUI Self-Starting #1] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:44:18.920 [Debug] [Load ComfyUI Self-Starting #1] Start script 'https://n92rnurgz8wei5-7777.proxy.runpod.net' looks wrong
2025-02-14 19:44:18.920 [Warning] ComfyUI start script is 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which looks wrong - did you forget to append 'main.py' on the end?
2025-02-14 19:44:18.922 [Debug] [Load ComfyUI Self-Starting #1] Will track node repo load task...
2025-02-14 19:44:18.922 [Debug] [Load ComfyUI Self-Starting #1] Will track comfy git pull auto-update task...
2025-02-14 19:44:18.922 [Debug] [Load ComfyUI Self-Starting #1] Waiting on git tasks to complete...
2025-02-14 19:44:18.922 [Debug] [Load ComfyUI Self-Starting #1] Running git pull in comfy folder...
2025-02-14 19:44:18.932 [Debug] [Load ComfyUI Self-Starting #1] Auto-update comfy backend failed.
2025-02-14 19:44:18.956 [Error] Failed to auto-update comfy backend: System.ComponentModel.Win32Exception (267): An error occurred trying to start process 'git' with working directory 'E:\SwarmUI\https:'. The directory name is invalid.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at SwarmUI.Utils.Utilities.RunGitProcess(String args, String dir, Boolean canRetry) in E:\SwarmUI\src\Utils\Utilities.cs:line 1048
at SwarmUI.Builtin_ComfyUIBackend.ComfyUISelfStartBackend.<>c__DisplayClass20_0.<<Init>b__0>d.MoveNext() in E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ComfyUISelfStartBackend.cs:line 317
2025-02-14 19:44:18.980 [Debug] [Load ComfyUI Self-Starting #1] Will ensure all node repos...
2025-02-14 19:44:18.980 [Debug] [Load ComfyUI Self-Starting #1] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:44:18.980 [Debug] [Load ComfyUI Self-Starting #1] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:44:19.447 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:44:19.510 [Debug] [Load ComfyUI Self-Starting #1] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:44:19.936 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:44:19.936 [Debug] [Load ComfyUI Self-Starting #1] Done ensuring all node repos.
2025-02-14 19:44:19.936 [Debug] [Load ComfyUI Self-Starting #1] All tasks done.
2025-02-14 19:44:19.936 [Debug] [Load ComfyUI Self-Starting #1] Starting self-start ComfyUI process...
2025-02-14 19:44:19.936 [Debug] [Load ComfyUI Self-Starting #1] Requested generic launch of https://n92rnurgz8wei5-7777.proxy.runpod.net on GPU 0 from ComfyUI-1
2025-02-14 19:44:19.936 [Error] Refusing init of ComfyUI-1 with non-script target. Please verify your start script location. Path was 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which does not end in the expected 'py', 'bat', or 'sh'.
2025-02-14 19:44:27.357 [Info] Saving backends...
2025-02-14 19:44:58.582 [Info] User local requested 1 image with model 'flux/flux1-dev.safetensors'...
2025-02-14 19:44:58.583 [Debug] [BackendHandler] Backend request #5 for model flux/flux1-dev.safetensors, maxWait=7.00:00:00.
2025-02-14 19:44:58.583 [Debug] [BackendHandler] backend #0 will load a model: E:/studio Dropbox/studio/ai/libs/diffusion-models/models/diffusion_models/flux/flux1-dev.safetensors, with 1 requests waiting for 0 seconds
2025-02-14 19:45:00.707 [Debug] [ComfyUI-0/STDERR] got prompt
2025-02-14 19:45:01.024 [Debug] [ComfyUI-0/STDERR] Using pytorch attention in VAE
2025-02-14 19:45:01.032 [Debug] [ComfyUI-0/STDERR] Using pytorch attention in VAE
2025-02-14 19:45:01.256 [Debug] [ComfyUI-0/STDERR] VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2025-02-14 19:45:01.543 [Debug] [ComfyUI-0/STDERR] Requested to load FluxClipModel_
2025-02-14 19:45:01.550 [Debug] [ComfyUI-0/STDERR] loaded completely 9.5367431640625e+25 4777.53759765625 True
2025-02-14 19:45:01.558 [Debug] [ComfyUI-0/STDERR] CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cuda:0, dtype: torch.float16
2025-02-14 19:45:11.681 [Debug] [ComfyUI-0/STDERR] clip missing: ['text_projection.weight']
2025-02-14 19:45:17.430 [Debug] [ComfyUI-0/STDERR] model weight dtype torch.float8_e4m3fn, manual cast: torch.bfloat16
2025-02-14 19:45:17.455 [Debug] [ComfyUI-0/STDERR] model_type FLUX
2025-02-14 19:45:44.754 [Debug] [ComfyUI-0/STDERR] Prompt executed in 44.01 seconds
2025-02-14 19:45:44.758 [Debug] [BackendHandler] backend #0 loaded model, returning to pool
2025-02-14 19:45:45.018 [Debug] [BackendHandler] Backend request #5 found correct model on #0
2025-02-14 19:45:45.018 [Debug] [BackendHandler] Backend request #5 finished.
2025-02-14 19:45:46.648 [Debug] [ComfyUI-0/STDERR] got prompt
2025-02-14 19:45:48.463 [Debug] [ComfyUI-0/STDERR] Requested to load Flux
2025-02-14 19:46:37.888 [Debug] [ComfyUI-0/STDERR] loaded completely 13220.994919891358 11350.067443847656 True
2025-02-14 19:46:37.980 [Debug] [ComfyUI-0/STDERR]
2025-02-14 19:47:12.094 [Warning] User local requested add-new-backend of type swarmswarmbackend.
2025-02-14 19:47:12.120 [Debug] [Load Swarm-API-Backend #2] Waiting to load...
2025-02-14 19:47:12.126 [Debug] [Load Swarm-API-Backend #2] Will now load...
2025-02-14 19:47:12.126 [Init] Initializing backend #2 - Swarm-API-Backend...
2025-02-14 19:47:12.158 [Debug] [ComfyUI-0/STDERR] 0%| | 0/20 [00:00<?, ?it/s]
2025-02-14 19:47:17.473 [Info] Saving backends...
2025-02-14 19:47:36.922 [Warning] User local requested restart of backend all.
2025-02-14 19:47:36.931 [Info] ComfyUI backend 0 shutting down...
2025-02-14 19:47:36.951 [Info] Shutting down self-start ComfyUI (port=7821) process #5496...
2025-02-14 19:47:37.263 [Debug] [ComfyUI-0/STDERR] 5%|5 | 1/20 [00:34<10:49, 34.18s/it]
2025-02-14 19:47:37.263 [Info] Self-Start ComfyUI-0 exited properly from disabling.
2025-02-14 19:47:37.268 [Debug] Status of ComfyUI-0 after process end is DISABLED
2025-02-14 19:47:37.310 [Debug] Failed to process comfy workflow for inputs T2IParamInput(prompt: profile of sh1n woman white and dots makeup on face, pulled back hair black lipstick, posing in white studio background soft lighting, model: flux/flux1-dev, seed: 938848566, steps: 20, cfgscale: 1, aspectratio: Custom, width: 1024, height: 1280, sampler: euler, scheduler: normal, fluxguidancescale: 2.1, initimagecreativity: 1, maskblur: 4, automaticvae: True, negativeprompt: ) with raw workflow { "4": { "class_type": "UNETLoader", "inputs": { "unet_name": "flux\\flux1-dev.safetensors", "weight_dtype": "fp8_e4m3fn_fast" } }, "100": { "class_type": "DualCLIPLoader", "inputs": { "clip_name1": "t5xxl_enconly.safetensors", "clip_name2": "clip_l.safetensors", "type": "flux" } }, "101": { "class_type": "VAELoader", "inputs": { "vae_name": "flux\\ae.safetensors" } }, "5": { "class_type": "EmptySD3LatentImage", "inputs": { "batch_size": 1, "height": 1280, "width": 1024 } }, "6": { "class_type": "SwarmClipTextEncodeAdvanced", "inputs": { "clip": [ "100", 0 ], "steps": 20, "prompt": "profile of sh1n woman white and dots makeup on face, pulled back hair black lipstick, posing in white studio background soft lighting", "width": 1536, "height": 1920, "target_width": 1024, "target_height": 1280, "guidance": 2.1 } }, "7": { "class_type": "SwarmClipTextEncodeAdvanced", "inputs": { "clip": [ "100", 0 ], "steps": 20, "prompt": "", "width": 832, "height": 1024, "target_width": 1024, "target_height": 1280, "guidance": 2.1 } }, "10": { "class_type": "SwarmKSampler", "inputs": { "model": [ "4", 0 ], "noise_seed": 938848566, "steps": 20, "cfg": 1, "sampler_name": "euler", "scheduler": "normal", "positive": [ "6", 0 ], "negative": [ "7", 0 ], "latent_image": [ "5", 0 ], "start_at_step": 0, "end_at_step": 10000, "return_with_leftover_noise": "disable", "add_noise": "enable", "control_after_generate": "fixed", "var_seed": 0, "var_seed_strength": 0, "sigma_min": -1, "sigma_max": -1, "rho": 7, "previews": "default", "tile_sample": False, "tile_size": 1024 } }, "8": { "class_type": "VAEDecode", "inputs": { "vae": [ "101", 0 ], "samples": [ "10", 0 ] } }, "9": { "class_type": "SwarmSaveImageWS", "inputs": { "images": [ "8", 0 ], "bit_depth": "8bit" } } }
2025-02-14 19:47:37.314 [Error] Internal error processing T2I request: System.Net.WebSockets.WebSocketException (0x80004005): The remote party closed the WebSocket connection without completing the close handshake.
---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host..
---> System.Net.Sockets.SocketException (10054): An existing connection was forcibly closed by the remote host.
--- End of inner exception stack trace ---
at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken)
at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource<System.Int32>.GetResult(Int16 token)
at System.Net.Http.HttpConnection.ReadBufferedAsyncCore(Memory`1 destination)
at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
at System.Net.Http.HttpConnection.RawConnectionStream.ReadAsync(Memory`1 buffer, CancellationToken cancellationToken)
at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
at System.IO.Stream.ReadAtLeastAsyncCore(Memory`1 buffer, Int32 minimumBytes, Boolean throwOnEndOfStream, CancellationToken cancellationToken)
at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
at System.Net.WebSockets.ManagedWebSocket.EnsureBufferContainsAsync(Int32 minimumRequiredBytes, CancellationToken cancellationToken)
at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)
at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TResult](Memory`1 payloadBuffer, CancellationToken cancellationToken)
at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TResult](Memory`1 payloadBuffer, CancellationToken cancellationToken)
at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource<TResult>.GetResult(Int16 token)
at System.Threading.Tasks.ValueTask`1.ValueTaskSourceAsTask.<>c.<.cctor>b__4_0(Object state)
--- End of stack trace from previous location ---
at SwarmUI.Utils.Utilities.ReceiveData(WebSocket socket, Int32 maxBytes, CancellationToken limit) in E:\SwarmUI\src\Utils\Utilities.cs:line 267
at SwarmUI.Builtin_ComfyUIBackend.ComfyUIAPIAbstractBackend.AwaitJobLive(String workflow, String batchId, Action`1 takeOutput, T2IParamInput user_input, CancellationToken interrupt) in E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ComfyUIAPIAbstractBackend.cs:line 291
at SwarmUI.Builtin_ComfyUIBackend.ComfyUIAPIAbstractBackend.GenerateLive(T2IParamInput user_input, String batchId, Action`1 takeOutput) in E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ComfyUIAPIAbstractBackend.cs:line 789
at SwarmUI.Text2Image.T2IEngine.CreateImageTask(T2IParamInput user_input, String batchId, GenClaim claim, Action`1 output, Action`1 setError, Boolean isWS, Single backendTimeoutMin, Action`2 saveImages, Boolean canCallTools) in E:\SwarmUI\src\Text2Image\T2IEngine.cs:line 269
2025-02-14 19:47:37.353 [Debug] Refused to generate image for local: Something went wrong while generating images.
2025-02-14 19:47:38.539 [Debug] [Load ComfyUI Self-Starting #0] Waiting to load...
2025-02-14 19:47:38.539 [Info] ComfyUI backend 1 shutting down...
2025-02-14 19:47:38.543 [Debug] [Load ComfyUI Self-Starting #1] Waiting to load...
2025-02-14 19:47:40.267 [Debug] [Load ComfyUI Self-Starting #0] Will now load...
2025-02-14 19:47:40.267 [Init] Initializing backend #0 - ComfyUI Self-Starting...
2025-02-14 19:47:40.279 [Debug] [Load ComfyUI Self-Starting #0] Starting init...
2025-02-14 19:47:40.279 [Debug] [Load ComfyUI Self-Starting #0] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:47:40.286 [Debug] [Load ComfyUI Self-Starting #0] Will track node repo load task...
2025-02-14 19:47:40.286 [Debug] [Load ComfyUI Self-Starting #0] Will track comfy git pull auto-update task...
2025-02-14 19:47:40.286 [Debug] [Load ComfyUI Self-Starting #0] Waiting on git tasks to complete...
2025-02-14 19:47:40.286 [Debug] [Load ComfyUI Self-Starting #0] Running git pull in comfy folder...
2025-02-14 19:47:40.345 [Debug] [Load ComfyUI Self-Starting #0] Will ensure all node repos...
2025-02-14 19:47:40.345 [Debug] [Load ComfyUI Self-Starting #0] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:47:40.345 [Debug] [Load ComfyUI Self-Starting #0] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:47:40.900 [Debug] [Load ComfyUI Self-Starting #0] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:47:40.906 [Debug] [Load ComfyUI Self-Starting #0] Comfy git pull response: Already up to date.
2025-02-14 19:47:40.953 [Debug] [Load ComfyUI Self-Starting #0] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:47:41.400 [Debug] [Load ComfyUI Self-Starting #0] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:47:41.400 [Debug] [Load ComfyUI Self-Starting #0] Done ensuring all node repos.
2025-02-14 19:47:41.400 [Debug] [Load ComfyUI Self-Starting #0] All tasks done.
2025-02-14 19:47:41.400 [Debug] [Load ComfyUI Self-Starting #0] Will validate required libs...
2025-02-14 19:47:41.410 [Debug] [Load ComfyUI Self-Starting #0] Done validating required libs.
2025-02-14 19:47:41.410 [Debug] [Load ComfyUI Self-Starting #0] Starting self-start ComfyUI process...
2025-02-14 19:47:41.410 [Debug] [Load ComfyUI Self-Starting #0] Requested generic launch of dlbackend/comfy/ComfyUI/main.py on GPU 0 from ComfyUI-0
2025-02-14 19:47:41.412 [Debug] Python paths left: E:\ComfyUI_dataset\ComfyUI_windows_portable\python_embeded\Scripts
2025-02-14 19:47:41.412 [Debug] (ComfyUI-0 launch) Adding path E:\SwarmUI\dlbackend\comfy\python_embeded
2025-02-14 19:47:41.412 [Debug] [Load ComfyUI Self-Starting #0] (ComfyUI-0 launch) Will use python: E:\SwarmUI\dlbackend\comfy\python_embeded\python.exe
2025-02-14 19:47:41.412 [Debug] [Load ComfyUI Self-Starting #0] Will start process...
2025-02-14 19:47:41.418 [Init] Self-Start ComfyUI-0 on port 7822 is loading...
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path checkpoints E:\studio Dropbox\studio\ai\libs\diffusion-models\models\checkpoints
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path vae E:\studio Dropbox\studio\ai\libs\diffusion-models\models\VAE
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras E:\studio Dropbox\studio\ai\libs\diffusion-models\models\loras
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras E:\studio Dropbox\studio\ai\libs\diffusion-models\models\Lora
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras E:\studio Dropbox\studio\ai\libs\diffusion-models\models\LyCORIS
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\ESRGAN
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\RealESRGAN
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\SwinIR
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\upscale-models
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\upscale_models
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path embeddings E:\studio Dropbox\studio\ai\libs\diffusion-models\models\Embeddings
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path hypernetworks E:\studio Dropbox\studio\ai\libs\diffusion-models\models\hypernetworks
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path controlnet E:\studio Dropbox\studio\ai\libs\diffusion-models\models\controlnet
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path clip E:\studio Dropbox\studio\ai\libs\diffusion-models\models\clip
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path clip_vision E:\studio Dropbox\studio\ai\libs\diffusion-models\models\clip_vision
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path unet E:\studio Dropbox\studio\ai\libs\diffusion-models\models\unet
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path diffusion_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\diffusion_models
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path gligen E:\studio Dropbox\studio\ai\libs\diffusion-models\models\gligen
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path ipadapter E:\studio Dropbox\studio\ai\libs\diffusion-models\models\ipadapter
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path yolov8 E:\studio Dropbox\studio\ai\libs\diffusion-models\models\yolov8
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path tensorrt E:\studio Dropbox\studio\ai\libs\diffusion-models\models\tensorrt
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path clipseg E:\studio Dropbox\studio\ai\libs\diffusion-models\models\clipseg
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path style_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\style_models
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\DLNodes
2025-02-14 19:47:41.531 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes
2025-02-14 19:47:42.434 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:47:43.995 [Debug] [ComfyUI-0/STDERR] Checkpoint files will always be loaded safely.
2025-02-14 19:47:44.150 [Debug] [ComfyUI-0/STDERR] Total VRAM 16376 MB, total RAM 32387 MB
2025-02-14 19:47:44.150 [Debug] [ComfyUI-0/STDERR] pytorch version: 2.6.0+cu126
2025-02-14 19:47:44.150 [Debug] [ComfyUI-0/STDERR] Set vram state to: NORMAL_VRAM
2025-02-14 19:47:44.150 [Debug] [ComfyUI-0/STDERR] Device: cuda:0 NVIDIA GeForce RTX 4090 Laptop GPU : cudaMallocAsync
2025-02-14 19:47:47.057 [Warning] User local requested delete of backend 2.
2025-02-14 19:47:47.068 [Info] Swarm-API-Backend 2 shutting down...
2025-02-14 19:47:47.531 [Info] Saving backends...
2025-02-14 19:47:47.546 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:47:48.773 [Debug] [ComfyUI-0/STDERR] Using pytorch attention
2025-02-14 19:47:52.657 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:47:57.770 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:47:58.852 [Debug] [ComfyUI-0/STDERR] ComfyUI version: 0.3.14
2025-02-14 19:47:59.060 [Debug] [ComfyUI-0/STDERR] Using existing copy of specific frontend version tag: Comfy-Org/[email protected]
2025-02-14 19:47:59.060 [Debug] [ComfyUI-0/STDERR] [Prompt Server] web root: E:\SwarmUI\dlbackend\comfy\ComfyUI\web_custom_versions\Comfy-Org_ComfyUI_frontend\1.7.14
2025-02-14 19:48:02.883 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:48:07.979 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:48:09.323 [Debug] [ComfyUI-0/STDERR]
2025-02-14 19:48:09.323 [Debug] [ComfyUI-0/STDERR] Import times for custom nodes:
2025-02-14 19:48:09.323 [Debug] [ComfyUI-0/STDERR] 0.0 seconds: E:\SwarmUI\dlbackend\comfy\ComfyUI\custom_nodes\websocket_image_save.py
2025-02-14 19:48:09.323 [Debug] [ComfyUI-0/STDERR] 0.0 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\DLNodes\ComfyUI-SAI_API
2025-02-14 19:48:09.323 [Debug] [ComfyUI-0/STDERR] 0.5 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes\SwarmComfyCommon
2025-02-14 19:48:09.323 [Debug] [ComfyUI-0/STDERR] 7.1 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes\SwarmComfyExtra
2025-02-14 19:48:09.324 [Debug] [ComfyUI-0/STDERR]
2025-02-14 19:48:09.340 [Debug] [ComfyUI-0/STDERR] Starting server
2025-02-14 19:48:09.340 [Debug] [ComfyUI-0/STDERR]
2025-02-14 19:48:09.341 [Debug] [ComfyUI-0/STDERR] To see the GUI go to: http://127.0.0.1:7822
2025-02-14 19:48:10.126 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-02-14 19:48:10.129 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-02-14 19:48:10.129 [Debug] [Load ComfyUI Self-Starting #0] Done! Started!
2025-02-14 19:48:10.129 [Init] Self-Start ComfyUI-0 on port 7822 started.
2025-02-14 19:48:10.136 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 self-start port 7822 loop ending (should now be alive)
2025-02-14 19:48:10.137 [Debug] [Load ComfyUI Self-Starting #1] Will now load...
2025-02-14 19:48:10.137 [Init] Initializing backend #1 - ComfyUI Self-Starting...
2025-02-14 19:48:10.143 [Debug] [Load ComfyUI Self-Starting #1] Starting init...
2025-02-14 19:48:10.143 [Debug] [Load ComfyUI Self-Starting #1] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:48:10.143 [Debug] [Load ComfyUI Self-Starting #1] Start script 'https://n92rnurgz8wei5-7777.proxy.runpod.net' looks wrong
2025-02-14 19:48:10.143 [Warning] ComfyUI start script is 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which looks wrong - did you forget to append 'main.py' on the end?
2025-02-14 19:48:10.148 [Debug] [Load ComfyUI Self-Starting #1] Will track node repo load task...
2025-02-14 19:48:10.148 [Debug] [Load ComfyUI Self-Starting #1] Will track comfy git pull auto-update task...
2025-02-14 19:48:10.148 [Debug] [Load ComfyUI Self-Starting #1] Waiting on git tasks to complete...
2025-02-14 19:48:10.148 [Debug] [Load ComfyUI Self-Starting #1] Running git pull in comfy folder...
2025-02-14 19:48:10.150 [Debug] [Load ComfyUI Self-Starting #1] Auto-update comfy backend failed.
2025-02-14 19:48:10.151 [Error] Failed to auto-update comfy backend: System.ComponentModel.Win32Exception (267): An error occurred trying to start process 'git' with working directory 'E:\SwarmUI\https:'. The directory name is invalid.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at SwarmUI.Utils.Utilities.RunGitProcess(String args, String dir, Boolean canRetry) in E:\SwarmUI\src\Utils\Utilities.cs:line 1048
at SwarmUI.Builtin_ComfyUIBackend.ComfyUISelfStartBackend.<>c__DisplayClass20_0.<<Init>b__0>d.MoveNext() in E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ComfyUISelfStartBackend.cs:line 317
2025-02-14 19:48:10.207 [Debug] [Load ComfyUI Self-Starting #1] Will ensure all node repos...
2025-02-14 19:48:10.207 [Debug] [Load ComfyUI Self-Starting #1] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:48:10.207 [Debug] [Load ComfyUI Self-Starting #1] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:48:10.869 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:10.921 [Debug] [Load ComfyUI Self-Starting #1] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:48:11.386 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:11.386 [Debug] [Load ComfyUI Self-Starting #1] Done ensuring all node repos.
2025-02-14 19:48:11.386 [Debug] [Load ComfyUI Self-Starting #1] All tasks done.
2025-02-14 19:48:11.386 [Debug] [Load ComfyUI Self-Starting #1] Starting self-start ComfyUI process...
2025-02-14 19:48:11.386 [Debug] [Load ComfyUI Self-Starting #1] Requested generic launch of https://n92rnurgz8wei5-7777.proxy.runpod.net on GPU 0 from ComfyUI-1
2025-02-14 19:48:11.386 [Error] Refusing init of ComfyUI-1 with non-script target. Please verify your start script location. Path was 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which does not end in the expected 'py', 'bat', or 'sh'.
2025-02-14 19:48:28.281 [Warning] User local requested toggle of backend 1, enabled=False.
2025-02-14 19:48:35.964 [Warning] User local requested restart of backend all.
2025-02-14 19:48:35.970 [Info] ComfyUI backend 0 shutting down...
2025-02-14 19:48:35.975 [Info] Shutting down self-start ComfyUI (port=7822) process #13036...
2025-02-14 19:48:36.033 [Info] Self-Start ComfyUI-0 exited properly from disabling.
2025-02-14 19:48:36.037 [Debug] Status of ComfyUI-0 after process end is DISABLED
2025-02-14 19:48:36.090 [Debug] [Load ComfyUI Self-Starting #0] Waiting to load...
2025-02-14 19:48:36.090 [Info] ComfyUI backend 1 shutting down...
2025-02-14 19:48:36.097 [Debug] [Load ComfyUI Self-Starting #1] Waiting to load...
2025-02-14 19:48:37.473 [Debug] [Load ComfyUI Self-Starting #0] Will now load...
2025-02-14 19:48:37.473 [Init] Initializing backend #0 - ComfyUI Self-Starting...
2025-02-14 19:48:37.479 [Debug] [Load ComfyUI Self-Starting #0] Starting init...
2025-02-14 19:48:37.479 [Debug] [Load ComfyUI Self-Starting #0] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:48:37.479 [Debug] [Load ComfyUI Self-Starting #0] Will track node repo load task...
2025-02-14 19:48:37.479 [Debug] [Load ComfyUI Self-Starting #0] Will track comfy git pull auto-update task...
2025-02-14 19:48:37.479 [Debug] [Load ComfyUI Self-Starting #0] Waiting on git tasks to complete...
2025-02-14 19:48:37.479 [Debug] [Load ComfyUI Self-Starting #0] Running git pull in comfy folder...
2025-02-14 19:48:37.536 [Debug] [Load ComfyUI Self-Starting #0] Will ensure all node repos...
2025-02-14 19:48:37.536 [Debug] [Load ComfyUI Self-Starting #0] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:48:37.536 [Debug] [Load ComfyUI Self-Starting #0] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:48:37.582 [Info] Saving backends...
2025-02-14 19:48:37.949 [Debug] [Load ComfyUI Self-Starting #0] Comfy git pull response: Already up to date.
2025-02-14 19:48:38.045 [Debug] [Load ComfyUI Self-Starting #0] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:38.108 [Debug] [Load ComfyUI Self-Starting #0] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] Done ensuring all node repos.
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] All tasks done.
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] Will validate required libs...
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] Done validating required libs.
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] Starting self-start ComfyUI process...
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] Requested generic launch of dlbackend/comfy/ComfyUI/main.py on GPU 0 from ComfyUI-0
2025-02-14 19:48:38.546 [Debug] Python paths left: E:\ComfyUI_dataset\ComfyUI_windows_portable\python_embeded\Scripts
2025-02-14 19:48:38.546 [Debug] (ComfyUI-0 launch) Adding path E:\SwarmUI\dlbackend\comfy\python_embeded
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] (ComfyUI-0 launch) Will use python: E:\SwarmUI\dlbackend\comfy\python_embeded\python.exe
2025-02-14 19:48:38.546 [Debug] [Load ComfyUI Self-Starting #0] Will start process...
2025-02-14 19:48:38.549 [Init] Self-Start ComfyUI-0 on port 7823 is loading...
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path checkpoints E:\studio Dropbox\studio\ai\libs\diffusion-models\models\checkpoints
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path vae E:\studio Dropbox\studio\ai\libs\diffusion-models\models\VAE
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras E:\studio Dropbox\studio\ai\libs\diffusion-models\models\loras
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras E:\studio Dropbox\studio\ai\libs\diffusion-models\models\Lora
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path loras E:\studio Dropbox\studio\ai\libs\diffusion-models\models\LyCORIS
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\ESRGAN
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\RealESRGAN
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\SwinIR
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\upscale-models
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path upscale_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\upscale_models
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path embeddings E:\studio Dropbox\studio\ai\libs\diffusion-models\models\Embeddings
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path hypernetworks E:\studio Dropbox\studio\ai\libs\diffusion-models\models\hypernetworks
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path controlnet E:\studio Dropbox\studio\ai\libs\diffusion-models\models\controlnet
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path clip E:\studio Dropbox\studio\ai\libs\diffusion-models\models\clip
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path clip_vision E:\studio Dropbox\studio\ai\libs\diffusion-models\models\clip_vision
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path unet E:\studio Dropbox\studio\ai\libs\diffusion-models\models\unet
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path diffusion_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\diffusion_models
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path gligen E:\studio Dropbox\studio\ai\libs\diffusion-models\models\gligen
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path ipadapter E:\studio Dropbox\studio\ai\libs\diffusion-models\models\ipadapter
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path yolov8 E:\studio Dropbox\studio\ai\libs\diffusion-models\models\yolov8
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path tensorrt E:\studio Dropbox\studio\ai\libs\diffusion-models\models\tensorrt
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path clipseg E:\studio Dropbox\studio\ai\libs\diffusion-models\models\clipseg
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path style_models E:\studio Dropbox\studio\ai\libs\diffusion-models\models\style_models
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\DLNodes
2025-02-14 19:48:38.616 [Debug] [ComfyUI-0/STDERR] Adding extra search path custom_nodes E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes
2025-02-14 19:48:39.570 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:48:39.828 [Debug] [ComfyUI-0/STDERR] Checkpoint files will always be loaded safely.
2025-02-14 19:48:39.941 [Debug] [ComfyUI-0/STDERR] Total VRAM 16376 MB, total RAM 32387 MB
2025-02-14 19:48:39.941 [Debug] [ComfyUI-0/STDERR] pytorch version: 2.6.0+cu126
2025-02-14 19:48:39.942 [Debug] [ComfyUI-0/STDERR] Set vram state to: NORMAL_VRAM
2025-02-14 19:48:39.942 [Debug] [ComfyUI-0/STDERR] Device: cuda:0 NVIDIA GeForce RTX 4090 Laptop GPU : cudaMallocAsync
2025-02-14 19:48:40.735 [Debug] [ComfyUI-0/STDERR] Using pytorch attention
2025-02-14 19:48:43.302 [Debug] [ComfyUI-0/STDERR] ComfyUI version: 0.3.14
2025-02-14 19:48:43.478 [Debug] [ComfyUI-0/STDERR] Using existing copy of specific frontend version tag: Comfy-Org/[email protected]
2025-02-14 19:48:43.478 [Debug] [ComfyUI-0/STDERR] [Prompt Server] web root: E:\SwarmUI\dlbackend\comfy\ComfyUI\web_custom_versions\Comfy-Org_ComfyUI_frontend\1.7.14
2025-02-14 19:48:44.680 [Debug] [Load ComfyUI Self-Starting #0] Will attempt to load value set...
2025-02-14 19:48:45.580 [Debug] [ComfyUI-0/STDERR]
2025-02-14 19:48:45.580 [Debug] [ComfyUI-0/STDERR] Import times for custom nodes:
2025-02-14 19:48:45.580 [Debug] [ComfyUI-0/STDERR] 0.0 seconds: E:\SwarmUI\dlbackend\comfy\ComfyUI\custom_nodes\websocket_image_save.py
2025-02-14 19:48:45.580 [Debug] [ComfyUI-0/STDERR] 0.0 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\DLNodes\ComfyUI-SAI_API
2025-02-14 19:48:45.580 [Debug] [ComfyUI-0/STDERR] 0.0 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes\SwarmComfyExtra
2025-02-14 19:48:45.580 [Debug] [ComfyUI-0/STDERR] 0.4 seconds: E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ExtraNodes\SwarmComfyCommon
2025-02-14 19:48:45.581 [Debug] [ComfyUI-0/STDERR]
2025-02-14 19:48:45.597 [Debug] [ComfyUI-0/STDERR] Starting server
2025-02-14 19:48:45.597 [Debug] [ComfyUI-0/STDERR]
2025-02-14 19:48:45.598 [Debug] [ComfyUI-0/STDERR] To see the GUI go to: http://127.0.0.1:7823
2025-02-14 19:48:46.811 [Debug] [Load ComfyUI Self-Starting #0] Got valid value set, will parse...
2025-02-14 19:48:46.812 [Debug] [Load ComfyUI Self-Starting #0] Done parsing value set.
2025-02-14 19:48:46.812 [Debug] [Load ComfyUI Self-Starting #0] Done! Started!
2025-02-14 19:48:46.812 [Init] Self-Start ComfyUI-0 on port 7823 started.
2025-02-14 19:48:46.819 [Debug] [Load ComfyUI Self-Starting #0] ComfyUI-0 self-start port 7823 loop ending (should now be alive)
2025-02-14 19:48:50.458 [Warning] User local requested toggle of backend 0, enabled=False.
2025-02-14 19:48:50.465 [Info] ComfyUI backend 0 shutting down...
2025-02-14 19:48:50.471 [Info] Shutting down self-start ComfyUI (port=7823) process #680...
2025-02-14 19:48:50.544 [Info] Self-Start ComfyUI-0 exited properly from disabling.
2025-02-14 19:48:50.547 [Debug] Status of ComfyUI-0 after process end is DISABLED
2025-02-14 19:48:51.552 [Warning] User local requested toggle of backend 1, enabled=True.
2025-02-14 19:48:52.838 [Debug] [Load ComfyUI Self-Starting #1] Will now load...
2025-02-14 19:48:52.838 [Init] Initializing backend #1 - ComfyUI Self-Starting...
2025-02-14 19:48:52.843 [Debug] [Load ComfyUI Self-Starting #1] Starting init...
2025-02-14 19:48:52.843 [Debug] [Load ComfyUI Self-Starting #1] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:48:52.843 [Debug] [Load ComfyUI Self-Starting #1] Start script 'https://n92rnurgz8wei5-7777.proxy.runpod.net' looks wrong
2025-02-14 19:48:52.843 [Warning] ComfyUI start script is 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which looks wrong - did you forget to append 'main.py' on the end?
2025-02-14 19:48:52.848 [Debug] [Load ComfyUI Self-Starting #1] Will track node repo load task...
2025-02-14 19:48:52.848 [Debug] [Load ComfyUI Self-Starting #1] Will track comfy git pull auto-update task...
2025-02-14 19:48:52.848 [Debug] [Load ComfyUI Self-Starting #1] Waiting on git tasks to complete...
2025-02-14 19:48:52.848 [Debug] [Load ComfyUI Self-Starting #1] Running git pull in comfy folder...
2025-02-14 19:48:52.858 [Debug] [Load ComfyUI Self-Starting #1] Auto-update comfy backend failed.
2025-02-14 19:48:52.859 [Error] Failed to auto-update comfy backend: System.ComponentModel.Win32Exception (267): An error occurred trying to start process 'git' with working directory 'E:\SwarmUI\https:'. The directory name is invalid.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at SwarmUI.Utils.Utilities.RunGitProcess(String args, String dir, Boolean canRetry) in E:\SwarmUI\src\Utils\Utilities.cs:line 1048
at SwarmUI.Builtin_ComfyUIBackend.ComfyUISelfStartBackend.<>c__DisplayClass20_0.<<Init>b__0>d.MoveNext() in E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ComfyUISelfStartBackend.cs:line 317
2025-02-14 19:48:52.900 [Debug] [Load ComfyUI Self-Starting #1] Will ensure all node repos...
2025-02-14 19:48:52.901 [Debug] [Load ComfyUI Self-Starting #1] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:48:52.901 [Debug] [Load ComfyUI Self-Starting #1] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:48:53.366 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:53.426 [Debug] [Load ComfyUI Self-Starting #1] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:48:53.867 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:53.867 [Debug] [Load ComfyUI Self-Starting #1] Done ensuring all node repos.
2025-02-14 19:48:53.867 [Debug] [Load ComfyUI Self-Starting #1] All tasks done.
2025-02-14 19:48:53.867 [Debug] [Load ComfyUI Self-Starting #1] Starting self-start ComfyUI process...
2025-02-14 19:48:53.867 [Debug] [Load ComfyUI Self-Starting #1] Requested generic launch of https://n92rnurgz8wei5-7777.proxy.runpod.net on GPU 0 from ComfyUI-1
2025-02-14 19:48:53.867 [Error] Refusing init of ComfyUI-1 with non-script target. Please verify your start script location. Path was 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which does not end in the expected 'py', 'bat', or 'sh'.
2025-02-14 19:48:53.947 [Warning] User local requested restart of backend all.
2025-02-14 19:48:53.954 [Info] ComfyUI backend 1 shutting down...
2025-02-14 19:48:53.961 [Debug] [Load ComfyUI Self-Starting #1] Waiting to load...
2025-02-14 19:48:55.876 [Debug] [Load ComfyUI Self-Starting #1] Will now load...
2025-02-14 19:48:55.876 [Init] Initializing backend #1 - ComfyUI Self-Starting...
2025-02-14 19:48:55.884 [Debug] [Load ComfyUI Self-Starting #1] Starting init...
2025-02-14 19:48:55.884 [Debug] [Load ComfyUI Self-Starting #1] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:48:55.884 [Debug] [Load ComfyUI Self-Starting #1] Start script 'https://n92rnurgz8wei5-7777.proxy.runpod.net' looks wrong
2025-02-14 19:48:55.884 [Warning] ComfyUI start script is 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which looks wrong - did you forget to append 'main.py' on the end?
2025-02-14 19:48:55.890 [Debug] [Load ComfyUI Self-Starting #1] Will track node repo load task...
2025-02-14 19:48:55.890 [Debug] [Load ComfyUI Self-Starting #1] Will track comfy git pull auto-update task...
2025-02-14 19:48:55.890 [Debug] [Load ComfyUI Self-Starting #1] Waiting on git tasks to complete...
2025-02-14 19:48:55.890 [Debug] [Load ComfyUI Self-Starting #1] Running git pull in comfy folder...
2025-02-14 19:48:55.892 [Debug] [Load ComfyUI Self-Starting #1] Auto-update comfy backend failed.
2025-02-14 19:48:55.892 [Error] Failed to auto-update comfy backend: System.ComponentModel.Win32Exception (267): An error occurred trying to start process 'git' with working directory 'E:\SwarmUI\https:'. The directory name is invalid.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at SwarmUI.Utils.Utilities.RunGitProcess(String args, String dir, Boolean canRetry) in E:\SwarmUI\src\Utils\Utilities.cs:line 1048
at SwarmUI.Builtin_ComfyUIBackend.ComfyUISelfStartBackend.<>c__DisplayClass20_0.<<Init>b__0>d.MoveNext() in E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ComfyUISelfStartBackend.cs:line 317
2025-02-14 19:48:55.954 [Debug] [Load ComfyUI Self-Starting #1] Will ensure all node repos...
2025-02-14 19:48:55.954 [Debug] [Load ComfyUI Self-Starting #1] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:48:55.954 [Debug] [Load ComfyUI Self-Starting #1] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:48:56.417 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:56.481 [Debug] [Load ComfyUI Self-Starting #1] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:48:56.944 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:48:56.944 [Debug] [Load ComfyUI Self-Starting #1] Done ensuring all node repos.
2025-02-14 19:48:56.944 [Debug] [Load ComfyUI Self-Starting #1] All tasks done.
2025-02-14 19:48:56.944 [Debug] [Load ComfyUI Self-Starting #1] Starting self-start ComfyUI process...
2025-02-14 19:48:56.944 [Debug] [Load ComfyUI Self-Starting #1] Requested generic launch of https://n92rnurgz8wei5-7777.proxy.runpod.net on GPU 0 from ComfyUI-1
2025-02-14 19:48:56.944 [Error] Refusing init of ComfyUI-1 with non-script target. Please verify your start script location. Path was 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which does not end in the expected 'py', 'bat', or 'sh'.
2025-02-14 19:48:57.603 [Info] Saving backends...
2025-02-14 19:49:47.288 [Warning] User local requested add-new-backend of type comfyui_api.
2025-02-14 19:49:47.296 [Debug] [Load ComfyUI API By URL #3] Waiting to load...
2025-02-14 19:49:47.296 [Debug] [Load ComfyUI API By URL #3] Will now load...
2025-02-14 19:49:47.296 [Init] Initializing backend #3 - ComfyUI API By URL...
2025-02-14 19:49:47.668 [Info] Saving backends...
2025-02-14 19:49:53.704 [Warning] User local requested edit of backend 3.
2025-02-14 19:49:53.711 [Info] ComfyUI backend 3 shutting down...
2025-02-14 19:49:53.718 [Debug] [Load ComfyUI API By URL #3] Waiting to load...
2025-02-14 19:49:53.718 [Debug] [Load ComfyUI API By URL #3] Will now load...
2025-02-14 19:49:53.718 [Init] Initializing backend #3 - ComfyUI API By URL...
2025-02-14 19:49:53.721 [Debug] [Load ComfyUI API By URL #3] Will attempt to load value set...
2025-02-14 19:49:54.700 [Warning] User local requested toggle of backend 1, enabled=False.
2025-02-14 19:49:54.812 [Debug] [Load ComfyUI API By URL #3] Load failed, will retry...
2025-02-14 19:49:54.812 [Error] Error #2 while initializing backend #3 - ComfyUI API By URL - will retry
2025-02-14 19:49:56.626 [Warning] User local requested restart of backend all.
2025-02-14 19:49:56.633 [Info] ComfyUI backend 1 shutting down...
2025-02-14 19:49:56.637 [Debug] [Load ComfyUI Self-Starting #1] Waiting to load...
2025-02-14 19:49:57.330 [Debug] [Load ComfyUI API By URL #3] Will now load...
2025-02-14 19:49:57.330 [Init] Initializing backend #3 - ComfyUI API By URL...
2025-02-14 19:49:57.338 [Debug] [Load ComfyUI API By URL #3] Will attempt to load value set...
2025-02-14 19:49:57.688 [Info] Saving backends...
2025-02-14 19:49:57.831 [Debug] [Load ComfyUI API By URL #3] Load failed, will retry...
2025-02-14 19:49:57.831 [Error] Error #3 while initializing backend #3 - ComfyUI API By URL - will retry
2025-02-14 19:49:58.839 [Debug] [Load ComfyUI API By URL #3] Will now load...
2025-02-14 19:49:58.839 [Init] Initializing backend #3 - ComfyUI API By URL...
2025-02-14 19:49:58.844 [Debug] [Load ComfyUI API By URL #3] Will attempt to load value set...
2025-02-14 19:49:59.749 [Error] Final error (4) while initializing backend #3 - ComfyUI API By URL, giving up: Failed to read JSON '<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error 404: File Not Found - SwarmUI</title>
<link rel="stylesheet" id="bs_theme_header" href="css/bootstrap.min.css" />
<link class="theme_sheet_header" rel="stylesheet" href="css/themes/modern.css?vary=0.9.5.0.GIT-392c36d9" />
<link class="theme_sheet_header" rel="stylesheet" href="css/themes/modern_dark.css?vary=0.9.5.0.GIT-392c36d9" />
<link rel="stylesheet" href="css/select2.min.css" />
<link rel="stylesheet" href="css/select2_bootstrap.min.css" />
<link rel="stylesheet" id="sitecssheader" href="css/site.css?vary=0.9.5.0.GIT-392c36d9" />
<link id="favicon" rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="ExtensionFile/GridGeneratorExtension/Assets/grid_gen.css?vary=0.9.5.0.GIT-392c36d9" /><link rel="stylesheet" href="ExtensionFile/ComfyUIBackendExtension/Assets/comfy_workflow_editor.css?vary=0.9.5.0.GIT-392c36d9" />
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/select2.min.js"></script>
<script src="js/util.js?vary=0.9.5.0.GIT-392c36d9"></script>
<script src="js/translator.js?vary=0.9.5.0.GIT-392c36d9"></script>
</head>
<body>
<div class="top-status-bar-wrapper"><div class="top-status-bar" id="top_status_bar"></div></div>
<div class="center-toast toast-error-box" id="center_toast">
<div class="toast hide" role="alert" aria-live="assertive" aria-atomic="true" id="error_toast_box">
<div class="toast-header">
<strong class="me-auto translate">Error</strong>
<small class="translate"></small>
<button type="button" class="btn-close ms-2 mb-1" data-bs-dismiss="toast" aria-label="Close">
<span aria-hidden="true"></span>
</button>
</div>
<div class="toast-body" id="error_toast_content">
</div>
</div>
</div>
<center>
<h1>Error 404: File Not Found</h1>
<h4>That request doesn't seem to lead anywhere, unfortunately.</h4>
</center>
<script src="js/permissions.js?vary=0.9.5.0.GIT-392c36d9"></script>
<script src="js/site.js?vary=0.9.5.0.GIT-392c36d9"></script>
<div id="version_display" class="version-display">SwarmUI v<span>0.9.5.0</span><span> (2025-02-14 03:37:15)</span></div>
</body>
</html>
' with message: Unexpected character encountered while parsing value: <. Path '', line 0, position 0.
2025-02-14 19:50:09.491 [Warning] User local requested add-new-backend of type comfyui_api.
2025-02-14 19:50:09.497 [Debug] [Load ComfyUI API By URL #4] Waiting to load...
2025-02-14 19:50:09.497 [Debug] [Load ComfyUI API By URL #4] Will now load...
2025-02-14 19:50:09.497 [Init] Initializing backend #4 - ComfyUI API By URL...
2025-02-14 19:50:17.733 [Info] Saving backends...
2025-02-14 19:50:18.882 [Warning] User local requested edit of backend 4.
2025-02-14 19:50:18.891 [Info] ComfyUI backend 4 shutting down...
2025-02-14 19:50:18.901 [Debug] [Load ComfyUI API By URL #4] Waiting to load...
2025-02-14 19:50:18.901 [Debug] [Load ComfyUI API By URL #4] Will now load...
2025-02-14 19:50:18.901 [Init] Initializing backend #4 - ComfyUI API By URL...
2025-02-14 19:50:18.905 [Debug] [Load ComfyUI API By URL #4] Will attempt to load value set...
2025-02-14 19:50:20.017 [Debug] [Load ComfyUI API By URL #4] Load failed, will retry...
2025-02-14 19:50:20.017 [Error] Error #2 while initializing backend #4 - ComfyUI API By URL - will retry
2025-02-14 19:50:21.526 [Debug] [Load ComfyUI API By URL #4] Will now load...
2025-02-14 19:50:21.526 [Init] Initializing backend #4 - ComfyUI API By URL...
2025-02-14 19:50:21.532 [Debug] [Load ComfyUI API By URL #4] Will attempt to load value set...
2025-02-14 19:50:21.791 [Warning] User local requested toggle of backend 3, enabled=False.
2025-02-14 19:50:22.015 [Debug] [Load ComfyUI API By URL #4] Load failed, will retry...
2025-02-14 19:50:22.015 [Error] Error #3 while initializing backend #4 - ComfyUI API By URL - will retry
2025-02-14 19:50:23.036 [Debug] [Load ComfyUI API By URL #4] Will now load...
2025-02-14 19:50:23.036 [Init] Initializing backend #4 - ComfyUI API By URL...
2025-02-14 19:50:23.040 [Debug] [Load ComfyUI API By URL #4] Will attempt to load value set...
2025-02-14 19:50:24.098 [Error] Final error (4) while initializing backend #4 - ComfyUI API By URL, giving up: Failed to read JSON '<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error 404: File Not Found - SwarmUI</title>
<link rel="stylesheet" id="bs_theme_header" href="css/bootstrap.min.css" />
<link class="theme_sheet_header" rel="stylesheet" href="css/themes/modern.css?vary=0.9.5.0.GIT-392c36d9" />
<link class="theme_sheet_header" rel="stylesheet" href="css/themes/modern_dark.css?vary=0.9.5.0.GIT-392c36d9" />
<link rel="stylesheet" href="css/select2.min.css" />
<link rel="stylesheet" href="css/select2_bootstrap.min.css" />
<link rel="stylesheet" id="sitecssheader" href="css/site.css?vary=0.9.5.0.GIT-392c36d9" />
<link id="favicon" rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="ExtensionFile/GridGeneratorExtension/Assets/grid_gen.css?vary=0.9.5.0.GIT-392c36d9" /><link rel="stylesheet" href="ExtensionFile/ComfyUIBackendExtension/Assets/comfy_workflow_editor.css?vary=0.9.5.0.GIT-392c36d9" />
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/select2.min.js"></script>
<script src="js/util.js?vary=0.9.5.0.GIT-392c36d9"></script>
<script src="js/translator.js?vary=0.9.5.0.GIT-392c36d9"></script>
</head>
<body>
<div class="top-status-bar-wrapper"><div class="top-status-bar" id="top_status_bar"></div></div>
<div class="center-toast toast-error-box" id="center_toast">
<div class="toast hide" role="alert" aria-live="assertive" aria-atomic="true" id="error_toast_box">
<div class="toast-header">
<strong class="me-auto translate">Error</strong>
<small class="translate"></small>
<button type="button" class="btn-close ms-2 mb-1" data-bs-dismiss="toast" aria-label="Close">
<span aria-hidden="true"></span>
</button>
</div>
<div class="toast-body" id="error_toast_content">
</div>
</div>
</div>
<center>
<h1>Error 404: File Not Found</h1>
<h4>That request doesn't seem to lead anywhere, unfortunately.</h4>
</center>
<script src="js/permissions.js?vary=0.9.5.0.GIT-392c36d9"></script>
<script src="js/site.js?vary=0.9.5.0.GIT-392c36d9"></script>
<div id="version_display" class="version-display">SwarmUI v<span>0.9.5.0</span><span> (2025-02-14 03:37:15)</span></div>
</body>
</html>
' with message: Unexpected character encountered while parsing value: <. Path '', line 0, position 0.
2025-02-14 19:50:24.197 [Warning] User local requested restart of backend all.
2025-02-14 19:50:24.201 [Info] ComfyUI backend 3 shutting down...
2025-02-14 19:50:24.206 [Debug] [Load ComfyUI API By URL #3] Waiting to load...
2025-02-14 19:50:24.206 [Info] ComfyUI backend 4 shutting down...
2025-02-14 19:50:24.210 [Debug] [Load ComfyUI API By URL #4] Waiting to load...
2025-02-14 19:50:24.210 [Debug] [Load ComfyUI API By URL #4] Will now load...
2025-02-14 19:50:24.210 [Init] Initializing backend #4 - ComfyUI API By URL...
2025-02-14 19:50:24.212 [Debug] [Load ComfyUI API By URL #4] Will attempt to load value set...
2025-02-14 19:50:24.701 [Error] Final error (5) while initializing backend #4 - ComfyUI API By URL, giving up: Failed to read JSON '<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error 404: File Not Found - SwarmUI</title>
<link rel="stylesheet" id="bs_theme_header" href="css/bootstrap.min.css" />
<link class="theme_sheet_header" rel="stylesheet" href="css/themes/modern.css?vary=0.9.5.0.GIT-392c36d9" />
<link class="theme_sheet_header" rel="stylesheet" href="css/themes/modern_dark.css?vary=0.9.5.0.GIT-392c36d9" />
<link rel="stylesheet" href="css/select2.min.css" />
<link rel="stylesheet" href="css/select2_bootstrap.min.css" />
<link rel="stylesheet" id="sitecssheader" href="css/site.css?vary=0.9.5.0.GIT-392c36d9" />
<link id="favicon" rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="ExtensionFile/GridGeneratorExtension/Assets/grid_gen.css?vary=0.9.5.0.GIT-392c36d9" /><link rel="stylesheet" href="ExtensionFile/ComfyUIBackendExtension/Assets/comfy_workflow_editor.css?vary=0.9.5.0.GIT-392c36d9" />
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/select2.min.js"></script>
<script src="js/util.js?vary=0.9.5.0.GIT-392c36d9"></script>
<script src="js/translator.js?vary=0.9.5.0.GIT-392c36d9"></script>
</head>
<body>
<div class="top-status-bar-wrapper"><div class="top-status-bar" id="top_status_bar"></div></div>
<div class="center-toast toast-error-box" id="center_toast">
<div class="toast hide" role="alert" aria-live="assertive" aria-atomic="true" id="error_toast_box">
<div class="toast-header">
<strong class="me-auto translate">Error</strong>
<small class="translate"></small>
<button type="button" class="btn-close ms-2 mb-1" data-bs-dismiss="toast" aria-label="Close">
<span aria-hidden="true"></span>
</button>
</div>
<div class="toast-body" id="error_toast_content">
</div>
</div>
</div>
<center>
<h1>Error 404: File Not Found</h1>
<h4>That request doesn't seem to lead anywhere, unfortunately.</h4>
</center>
<script src="js/permissions.js?vary=0.9.5.0.GIT-392c36d9"></script>
<script src="js/site.js?vary=0.9.5.0.GIT-392c36d9"></script>
<div id="version_display" class="version-display">SwarmUI v<span>0.9.5.0</span><span> (2025-02-14 03:37:15)</span></div>
</body>
</html>
' with message: Unexpected character encountered while parsing value: <. Path '', line 0, position 0.
2025-02-14 19:50:27.747 [Info] Saving backends...
2025-02-14 19:50:42.879 [Warning] User local requested delete of backend 4.
2025-02-14 19:50:42.884 [Info] ComfyUI backend 4 shutting down...
2025-02-14 19:50:44.531 [Warning] User local requested delete of backend 3.
2025-02-14 19:50:44.537 [Info] ComfyUI backend 3 shutting down...
2025-02-14 19:50:47.768 [Info] Saving backends...
2025-02-14 19:51:25.563 [Warning] User local requested toggle of backend 1, enabled=True.
2025-02-14 19:51:26.334 [Debug] [Load ComfyUI Self-Starting #1] Will now load...
2025-02-14 19:51:26.334 [Init] Initializing backend #1 - ComfyUI Self-Starting...
2025-02-14 19:51:26.340 [Debug] [Load ComfyUI Self-Starting #1] Starting init...
2025-02-14 19:51:26.340 [Debug] [Load ComfyUI Self-Starting #1] Will add args: --extra-model-paths-config E:\SwarmUI\Data/comfy-auto-model.yaml --fast --preview-method latent2rgb --front-end-version Comfy-Org/[email protected]
2025-02-14 19:51:26.340 [Debug] [Load ComfyUI Self-Starting #1] Start script 'https://n92rnurgz8wei5-7777.proxy.runpod.net' looks wrong
2025-02-14 19:51:26.340 [Warning] ComfyUI start script is 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which looks wrong - did you forget to append 'main.py' on the end?
2025-02-14 19:51:26.344 [Debug] [Load ComfyUI Self-Starting #1] Will track node repo load task...
2025-02-14 19:51:26.344 [Debug] [Load ComfyUI Self-Starting #1] Will track comfy git pull auto-update task...
2025-02-14 19:51:26.344 [Debug] [Load ComfyUI Self-Starting #1] Waiting on git tasks to complete...
2025-02-14 19:51:26.344 [Debug] [Load ComfyUI Self-Starting #1] Running git pull in comfy folder...
2025-02-14 19:51:26.346 [Debug] [Load ComfyUI Self-Starting #1] Auto-update comfy backend failed.
2025-02-14 19:51:26.347 [Error] Failed to auto-update comfy backend: System.ComponentModel.Win32Exception (267): An error occurred trying to start process 'git' with working directory 'E:\SwarmUI\https:'. The directory name is invalid.
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at SwarmUI.Utils.Utilities.RunGitProcess(String args, String dir, Boolean canRetry) in E:\SwarmUI\src\Utils\Utilities.cs:line 1048
at SwarmUI.Builtin_ComfyUIBackend.ComfyUISelfStartBackend.<>c__DisplayClass20_0.<<Init>b__0>d.MoveNext() in E:\SwarmUI\src\BuiltinExtensions\ComfyUIBackend\ComfyUISelfStartBackend.cs:line 317
2025-02-14 19:51:26.397 [Debug] [Load ComfyUI Self-Starting #1] Will ensure all node repos...
2025-02-14 19:51:26.398 [Debug] [Load ComfyUI Self-Starting #1] Will ensure node repo 'https://github.com/Stability-AI/ComfyUI-SAI_API'...
2025-02-14 19:51:26.398 [Debug] [Load ComfyUI Self-Starting #1] Node folder 'ComfyUI-SAI_API' exists, will git pull it...
2025-02-14 19:51:26.887 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:51:26.940 [Debug] [Load ComfyUI Self-Starting #1] Ensure node repos - Will git pull for ComfyUI-SAI_API...
2025-02-14 19:51:27.363 [Debug] [Load ComfyUI Self-Starting #1] Node pull response for ComfyUI-SAI_API: Already up to date.
2025-02-14 19:51:27.363 [Debug] [Load ComfyUI Self-Starting #1] Done ensuring all node repos.
2025-02-14 19:51:27.363 [Debug] [Load ComfyUI Self-Starting #1] All tasks done.
2025-02-14 19:51:27.363 [Debug] [Load ComfyUI Self-Starting #1] Starting self-start ComfyUI process...
2025-02-14 19:51:27.363 [Debug] [Load ComfyUI Self-Starting #1] Requested generic launch of https://n92rnurgz8wei5-7777.proxy.runpod.net on GPU 0 from ComfyUI-1
2025-02-14 19:51:27.363 [Error] Refusing init of ComfyUI-1 with non-script target. Please verify your start script location. Path was 'https://n92rnurgz8wei5-7777.proxy.runpod.net', which does not end in the expected 'py', 'bat', or 'sh'.
2025-02-14 19:51:27.793 [Info] Saving backends...
2025-02-14 19:54:09.572 [Warning] User local requested add-new-backend of type swarmswarmbackend.
2025-02-14 19:54:09.579 [Debug] [Load Swarm-API-Backend #5] Waiting to load...
2025-02-14 19:54:09.579 [Debug] [Load Swarm-API-Backend #5] Will now load...
2025-02-14 19:54:09.579 [Init] Initializing backend #5 - Swarm-API-Backend...
2025-02-14 19:54:12.140 [Warning] User local requested edit of backend 5.
2025-02-14 19:54:12.146 [Info] Swarm-API-Backend 5 shutting down...
2025-02-14 19:54:12.152 [Debug] [Load Swarm-API-Backend #5] Waiting to load...
2025-02-14 19:54:12.152 [Debug] [Load Swarm-API-Backend #5] Will now load...
2025-02-14 19:54:12.152 [Init] Initializing backend #5 - Swarm-API-Backend...
2025-02-14 19:54:12.169 [Debug] [Load Swarm-API-Backend #5] Load failed, will retry...
2025-02-14 19:54:12.169 [Error] Error #2 while initializing backend #5 - Swarm-API-Backend - will retry
2025-02-14 19:54:13.609 [Debug] [Load Swarm-API-Backend #5] Will now load...
2025-02-14 19:54:13.609 [Init] Initializing backend #5 - Swarm-API-Backend...
2025-02-14 19:54:13.615 [Debug] [Load Swarm-API-Backend #5] Load failed, will retry...
2025-02-14 19:54:13.615 [Error] Error #3 while initializing backend #5 - Swarm-API-Backend - will retry
2025-02-14 19:54:13.851 [Warning] User local requested toggle of backend 1, enabled=False.
2025-02-14 19:54:14.624 [Debug] [Load Swarm-API-Backend #5] Will now load...
2025-02-14 19:54:14.624 [Init] Initializing backend #5 - Swarm-API-Backend...
2025-02-14 19:54:14.631 [Error] Final error (4) while initializing backend #5 - Swarm-API-Backend, giving up: System.InvalidOperationException: An invalid request URI was provided. Either the request URI must be an absolute URI or BaseAddress must be set.
at System.Net.Http.HttpClient.PrepareRequestMessage(HttpRequestMessage request)
at System.Net.Http.HttpClient.SendAsync(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationToken cancellationToken)
at SwarmUI.Utils.Utilities.PostJson(HttpClient client, String url, JObject data, Action`1 adaptFunc) in E:\SwarmUI\src\Utils\Utilities.cs:line 312
at SwarmUI.Backends.SwarmSwarmBackend.ValidateAndBuild() in E:\SwarmUI\src\Backends\SwarmSwarmBackend.cs:line 107
at SwarmUI.Backends.SwarmSwarmBackend.Init() in E:\SwarmUI\src\Backends\SwarmSwarmBackend.cs:line 351
at SwarmUI.Backends.SwarmSwarmBackend.Init() in E:\SwarmUI\src\Backends\SwarmSwarmBackend.cs:line 385
at SwarmUI.Backends.BackendHandler.LoadBackendDirect(T2IBackendData data) in E:\SwarmUI\src\Backends\BackendHandler.cs:line 496
2025-02-14 19:54:17.938 [Info] Saving backends...
2025-02-14 19:54:59.514 [Info] User local is submitted logs above level Debug to pastebin...