-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathscript_output.log
More file actions
6982 lines (6975 loc) · 352 KB
/
script_output.log
File metadata and controls
6982 lines (6975 loc) · 352 KB
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
=== FILTERING BLACKLISTED DEVELOPERS FROM EXISTING CATALOG ===
=== FILTERING NON-CHAT MODELS FROM EXISTING CATALOG ===
=== SEPARATING MMPROJ FROM EXISTING CATALOG ===
=== CLEANING EXISTING CATALOG ===
Duplicate model 'Qwen3.5-35B-A3B-GGUF' found in 2 repos:
- unsloth/Qwen3.5-35B-A3B-GGUF (583579 downloads) [KEPT]
- janhq/Qwen3.5-35B-A3B-GGUF (442 downloads) [KEPT]
Cleanup summary:
- Removed 0 repositories with no valid GGUF files
- Removed 0 duplicate models
- Final catalog size: 1755 models
=== PASS 1: Processing models from Hugging Face API ===
Fetching page 1...
Processing nvidia/LocateAnything-3B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-12B-it
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing LiquidAI/LFM2.5-8B-A1B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive
-> Downloads changed: 2573320 -> 2646756
-> Tool support: True
-> Found 11 text models and 1 mmproj models
-> Updated existing entry
Processing unsloth/gemma-4-12b-it-GGUF
-> New model found
-> Tool support: True
-> Found 21 text models and 3 mmproj models
-> Generated new description
-> Added new entry
Processing google/gemma-4-12B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing openbmb/MiniCPM5-1B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing stepfun-ai/Step-3.7-Flash
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing sapientinc/HRM-Text-1B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing ideogram-ai/ideogram-4-fp8
Processing JetBrains/Mellum2-12B-A2.5B-Thinking
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/Qwen3.6-35B-A3B-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing deepseek-ai/DeepSeek-V4-Pro
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing PaddlePaddle/PaddleOCR-VL-1.6
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/Cosmos3-Nano
Processing ideogram-ai/ideogram-4-nf4
Processing meituan-longcat/LongCat-Video-Avatar-1.5
Processing nvidia/PiD
Processing nvidia/Cosmos3-Super
Processing ByteDance/Bernini-R
Processing SulphurAI/Sulphur-2-base
-> Downloads changed: 1663826 -> 1678259
-> Tool support: True
-> Found 2 text models and 0 mmproj models
-> Updated existing entry
Processing unsloth/Qwen3.6-27B-MTP-GGUF
-> Downloads changed: 982631 -> 1063964
-> Tool support: True
-> Skipping multi-part file: BF16/Qwen3.6-27B-BF16-00001-of-00002.gguf
-> Skipping multi-part file: BF16/Qwen3.6-27B-BF16-00002-of-00002.gguf
-> Found 21 text models and 3 mmproj models
-> Updated existing entry
Processing LiquidAI/LFM2.5-8B-A1B-GGUF
-> Downloads changed: 70865 -> 102119
-> Tool support: True
-> Found 7 text models and 0 mmproj models
-> Updated existing entry
Processing nvidia/Cosmos3-Super-Text2Image
Processing nvidia/Cosmos3-Super-Image2Video
Processing deepseek-ai/DeepSeek-V4-Flash
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing stepfun-ai/Step-3.7-Flash-GGUF
-> Downloads changed: 39258 -> 44434
-> Tool support: True
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00001-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00002-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00003-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00004-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00005-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00006-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00007-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00008-of-00009.gguf
-> Skipping multi-part file: BF16/Step3.7-flash-bf16-00009-of-00009.gguf
-> Skipping multi-part file: IQ3_XXS/Step-3.7-flash-IQ3_XXS-00001-of-00002.gguf
-> Skipping multi-part file: IQ3_XXS/Step-3.7-flash-IQ3_XXS-00002-of-00002.gguf
-> Skipping multi-part file: IQ4_XS/Step-3.7-flash-IQ4_XS-00001-of-00003.gguf
-> Skipping multi-part file: IQ4_XS/Step-3.7-flash-IQ4_XS-00002-of-00003.gguf
-> Skipping multi-part file: IQ4_XS/Step-3.7-flash-IQ4_XS-00003-of-00003.gguf
-> Skipping multi-part file: Q3_K_L/Step-3.7-flash-Q3_K_L-00001-of-00003.gguf
-> Skipping multi-part file: Q3_K_L/Step-3.7-flash-Q3_K_L-00002-of-00003.gguf
-> Skipping multi-part file: Q3_K_L/Step-3.7-flash-Q3_K_L-00003-of-00003.gguf
-> Skipping multi-part file: Q3_K_M/Step-3.7-flash-Q3_K_M-00001-of-00003.gguf
-> Skipping multi-part file: Q3_K_M/Step-3.7-flash-Q3_K_M-00002-of-00003.gguf
-> Skipping multi-part file: Q3_K_M/Step-3.7-flash-Q3_K_M-00003-of-00003.gguf
-> Skipping multi-part file: Q4_K_S/Step-3.7-flash-Q4_K_S-00001-of-00003.gguf
-> Skipping multi-part file: Q4_K_S/Step-3.7-flash-Q4_K_S-00002-of-00003.gguf
-> Skipping multi-part file: Q4_K_S/Step-3.7-flash-Q4_K_S-00003-of-00003.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-flash-Q8_0-00001-of-00005.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-flash-Q8_0-00002-of-00005.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-flash-Q8_0-00003-of-00005.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-flash-Q8_0-00004-of-00005.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-flash-Q8_0-00005-of-00005.gguf
-> Found 3 text models and 1 mmproj models
-> Updated existing entry
Processing nvidia/nemotron-3.5-asr-streaming-0.6b
Processing OpenMOSS-Team/MOSS-TTS-v1.5
Processing NemoStation/Marlin-2B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing MisoLabs/MisoTTS
Processing nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Qwen/Qwen3.6-27B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-31B-it
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Supertone/supertonic-3
Processing baidu/NAVA
Processing pyannote/speaker-diarization-3.1
Processing Qwen/Qwen3.6-35B-A3B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Kwai-Keye/Keye-VL-2.0-30B-A3B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Jackrong/Qwopus3.6-27B-v2-MTP-GGUF
-> Downloads changed: 155959 -> 191400
-> Tool support: False
-> Found 12 text models and 1 mmproj models
-> Updated existing entry
Processing bytedance-research/Lance
Processing circlestone-labs/Anima
Processing google/gemma-4-E4B-it
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-12B-it-assistant
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Comfy-Org/PixelDiT
Processing unsloth/LFM2.5-8B-A1B-GGUF
-> New model found
-> Tool support: True
-> Found 22 text models and 0 mmproj models
-> Generated new description
-> Added new entry
Processing jdopensource/JoyAI-Echo
Processing JetBrains/Mellum2-12B-A2.5B-Instruct
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing openai/privacy-filter
Processing google/magenta-realtime-2
Processing prism-ml/bonsai-image-ternary-4B-gemlite-2bit
Processing black-forest-labs/FLUX.1-dev
Processing Hcompany/Holo-3.1-4B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing bosonai/higgs-audio-v3-tts-4b
-> New model found
-> Not a chat model (pipeline_tag=text-to-speech), skipping
Processing google/gemma-4-26B-A4B-it
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing froggeric/Qwen-Fixed-Chat-Templates
Processing LiconStudio/LTX-2.3-Multiple-Subject-Reference
Processing unsloth/Qwen3.6-35B-A3B-MTP-GGUF
-> Downloads changed: 857734 -> 904860
-> Tool support: True
-> Skipping multi-part file: BF16/Qwen3.6-35B-A3B-BF16-00001-of-00002.gguf
-> Skipping multi-part file: BF16/Qwen3.6-35B-A3B-BF16-00002-of-00002.gguf
-> Found 21 text models and 3 mmproj models
-> Updated existing entry
Processing nvidia/DeepSeek-V4-Pro-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Comfy-Org/Ideogram-4
Processing meta-llama/Llama-3.1-8B-Instruct
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing HauhauCS/Qwen3.5-9B-Uncensored-HauhauCS-Aggressive
-> Downloads changed: 688620 -> 657165
-> Tool support: True
-> Found 4 text models and 1 mmproj models
-> Updated existing entry
Processing facebook/sam3
Processing Jackrong/Qwopus3.5-4B-Coder-MTP-GGUF
-> Downloads changed: 7028 -> 10013
-> Tool support: False
-> Found 12 text models and 1 mmproj models
-> Updated existing entry
Processing Lightricks/LTX-2.3
Processing DavidAU/Qwen3.6-40B-Claude-4.6-Opus-Deckard-Heretic-Uncensored-Thinking-NEO-CODE-Di-IMatrix-MAX-GGUF
-> Downloads changed: 538607 -> 580226
-> Tool support: True
-> Found 10 text models and 3 mmproj models
-> Updated existing entry
Processing VAST-AI/TripoSplat
Processing black-forest-labs/FLUX.2-klein-9B
Processing numind/NuExtract3
-> New model found
-> Not a chat model (pipeline_tag=image-to-text), skipping
Processing stepfun-ai/Step-3.7-Flash-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing moonshotai/Kimi-K2.6
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Jackrong/Qwopus3.6-27B-v2-GGUF
-> Downloads changed: 40637 -> 43492
-> Tool support: True
-> Found 11 text models and 1 mmproj models
-> Updated existing entry
Processing Hcompany/Holo-3.1-35B-A3B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing DavidAU/Qwen3.6-27B-Heretic-Uncensored-FINETUNE-NEO-CODE-Di-IMatrix-MAX-GGUF
-> Downloads changed: 659338 -> 652737
-> Tool support: True
-> Found 10 text models and 3 mmproj models
-> Updated existing entry
Processing WarmBloodAban/Singularity-LTX-2.3_OmniCine_V1
Processing Jackrong/Qwopus3.5-9B-Coder-GGUF
-> Downloads changed: 70616 -> 77906
-> Tool support: True
-> Found 12 text models and 1 mmproj models
-> Updated existing entry
Processing Tongyi-MAI/Z-Image-Turbo
Processing k2-fsa/OmniVoice
Processing openbmb/MiniCPM-V-4.6
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/kokoro-82M-onnx-opt
Processing nvidia/parakeet-tdt-0.6b-v3
Processing tencent/Hy-MT2-30B-A3B
-> New model found
-> Not a chat model (pipeline_tag=translation), skipping
Processing prism-ml/bonsai-image-ternary-4B-mlx-2bit
Processing hexgrad/Kokoro-82M
Processing unsloth/gemma-4-26B-A4B-it-GGUF
-> Downloads changed: 2552237 -> 2409394
-> Tool support: True
-> Skipping multi-part file: BF16/gemma-4-26B-A4B-it-BF16-00001-of-00002.gguf
-> Skipping multi-part file: BF16/gemma-4-26B-A4B-it-BF16-00002-of-00002.gguf
-> Found 20 text models and 3 mmproj models
-> Updated existing entry
Processing OBLITERATUS/Qwen3.6-27B-OBLITERATED
-> Downloads changed: 23999 -> 26482
-> Tool support: True
-> Found 4 text models and 0 mmproj models
-> Updated existing entry
Processing BAAI/bge-m3
Processing RuneXX/LTX-2.3-Workflows
Processing HauhauCS/Gemma-4-E4B-Uncensored-HauhauCS-Aggressive
-> Downloads changed: 690203 -> 693421
-> Tool support: True
-> Found 11 text models and 1 mmproj models
-> Updated existing entry
Processing unsloth/Qwen3.6-35B-A3B-GGUF
-> Downloads changed: 2028598 -> 1924250
-> Tool support: True
-> Skipping multi-part file: BF16/Qwen3.6-35B-A3B-BF16-00001-of-00002.gguf
-> Skipping multi-part file: BF16/Qwen3.6-35B-A3B-BF16-00002-of-00002.gguf
-> Found 23 text models and 3 mmproj models
-> Updated existing entry
Processing MiniMaxAI/MiniMax-M2.7
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing TenStrip/LTX2.3-10Eros
Processing black-forest-labs/FLUX.1-schnell
Processing openbmb/VoxCPM2
Processing antirez/deepseek-v4-gguf
-> Downloads changed: 663316 -> 721136
-> Tool support: True
-> Found 10 text models and 0 mmproj models
-> Updated existing entry
Processing HauhauCS/Gemma4-26B-A4B-Uncensored-HauhauCS-Balanced
-> Downloads changed: 158010 -> 173867
-> Tool support: True
-> Found 12 text models and 1 mmproj models
-> Updated existing entry
Processing Jackrong/Qwopus3.5-9B-Coder-MTP-GGUF
-> Downloads changed: 144425 -> 178191
-> Tool support: False
-> Found 12 text models and 1 mmproj models
-> Updated existing entry
Processing AesSedai/Step-3.7-Flash-GGUF
-> New model found
-> Tool support: True
-> Skipping multi-part file: IQ2_S/Step-3.7-Flash-IQ2_S-00001-of-00003.gguf
-> Skipping multi-part file: IQ2_S/Step-3.7-Flash-IQ2_S-00002-of-00003.gguf
-> Skipping multi-part file: IQ2_S/Step-3.7-Flash-IQ2_S-00003-of-00003.gguf
-> Skipping multi-part file: IQ3_S/Step-3.7-Flash-IQ3_S-00001-of-00003.gguf
-> Skipping multi-part file: IQ3_S/Step-3.7-Flash-IQ3_S-00002-of-00003.gguf
-> Skipping multi-part file: IQ3_S/Step-3.7-Flash-IQ3_S-00003-of-00003.gguf
-> Skipping multi-part file: IQ4_XS/Step-3.7-Flash-IQ4_XS-00001-of-00003.gguf
-> Skipping multi-part file: IQ4_XS/Step-3.7-Flash-IQ4_XS-00002-of-00003.gguf
-> Skipping multi-part file: IQ4_XS/Step-3.7-Flash-IQ4_XS-00003-of-00003.gguf
-> Skipping multi-part file: Q4_K_M/Step-3.7-Flash-Q4_K_M-00001-of-00004.gguf
-> Skipping multi-part file: Q4_K_M/Step-3.7-Flash-Q4_K_M-00002-of-00004.gguf
-> Skipping multi-part file: Q4_K_M/Step-3.7-Flash-Q4_K_M-00003-of-00004.gguf
-> Skipping multi-part file: Q4_K_M/Step-3.7-Flash-Q4_K_M-00004-of-00004.gguf
-> Skipping multi-part file: Q5_K_M/Step-3.7-Flash-Q5_K_M-00001-of-00005.gguf
-> Skipping multi-part file: Q5_K_M/Step-3.7-Flash-Q5_K_M-00002-of-00005.gguf
-> Skipping multi-part file: Q5_K_M/Step-3.7-Flash-Q5_K_M-00003-of-00005.gguf
-> Skipping multi-part file: Q5_K_M/Step-3.7-Flash-Q5_K_M-00004-of-00005.gguf
-> Skipping multi-part file: Q5_K_M/Step-3.7-Flash-Q5_K_M-00005-of-00005.gguf
-> Found 1 text models and 4 mmproj models
-> Generated new description
-> Added new entry
Processing nex-agi/Nex-N2-Pro
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing black-forest-labs/FLUX.2-dev
Processing unsloth/Step-3.7-Flash-GGUF
-> New model found
-> Tool support: True
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00001-of-00008.gguf
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00002-of-00008.gguf
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00003-of-00008.gguf
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00004-of-00008.gguf
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00005-of-00008.gguf
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00006-of-00008.gguf
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00007-of-00008.gguf
-> Skipping multi-part file: BF16/Step-3.7-Flash-BF16-00008-of-00008.gguf
-> Skipping multi-part file: MXFP4_MOE/Step-3.7-Flash-MXFP4_MOE-00001-of-00004.gguf
-> Skipping multi-part file: MXFP4_MOE/Step-3.7-Flash-MXFP4_MOE-00002-of-00004.gguf
-> Skipping multi-part file: MXFP4_MOE/Step-3.7-Flash-MXFP4_MOE-00003-of-00004.gguf
-> Skipping multi-part file: MXFP4_MOE/Step-3.7-Flash-MXFP4_MOE-00004-of-00004.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-Flash-Q8_0-00001-of-00006.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-Flash-Q8_0-00002-of-00006.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-Flash-Q8_0-00003-of-00006.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-Flash-Q8_0-00004-of-00006.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-Flash-Q8_0-00005-of-00006.gguf
-> Skipping multi-part file: Q8_0/Step-3.7-Flash-Q8_0-00006-of-00006.gguf
-> Skipping multi-part file: UD-IQ1_M/Step-3.7-Flash-UD-IQ1_M-00001-of-00003.gguf
-> Skipping multi-part file: UD-IQ1_M/Step-3.7-Flash-UD-IQ1_M-00002-of-00003.gguf
-> Skipping multi-part file: UD-IQ1_M/Step-3.7-Flash-UD-IQ1_M-00003-of-00003.gguf
-> Skipping multi-part file: UD-IQ2_M/Step-3.7-Flash-UD-IQ2_M-00001-of-00003.gguf
-> Skipping multi-part file: UD-IQ2_M/Step-3.7-Flash-UD-IQ2_M-00002-of-00003.gguf
-> Skipping multi-part file: UD-IQ2_M/Step-3.7-Flash-UD-IQ2_M-00003-of-00003.gguf
-> Skipping multi-part file: UD-IQ2_XXS/Step-3.7-Flash-UD-IQ2_XXS-00001-of-00003.gguf
-> Skipping multi-part file: UD-IQ2_XXS/Step-3.7-Flash-UD-IQ2_XXS-00002-of-00003.gguf
-> Skipping multi-part file: UD-IQ2_XXS/Step-3.7-Flash-UD-IQ2_XXS-00003-of-00003.gguf
-> Skipping multi-part file: UD-IQ3_S/Step-3.7-Flash-UD-IQ3_S-00001-of-00003.gguf
-> Skipping multi-part file: UD-IQ3_S/Step-3.7-Flash-UD-IQ3_S-00002-of-00003.gguf
-> Skipping multi-part file: UD-IQ3_S/Step-3.7-Flash-UD-IQ3_S-00003-of-00003.gguf
-> Skipping multi-part file: UD-IQ3_XXS/Step-3.7-Flash-UD-IQ3_XXS-00001-of-00003.gguf
-> Skipping multi-part file: UD-IQ3_XXS/Step-3.7-Flash-UD-IQ3_XXS-00002-of-00003.gguf
-> Skipping multi-part file: UD-IQ3_XXS/Step-3.7-Flash-UD-IQ3_XXS-00003-of-00003.gguf
-> Skipping multi-part file: UD-IQ4_NL/Step-3.7-Flash-UD-IQ4_NL-00001-of-00003.gguf
-> Skipping multi-part file: UD-IQ4_NL/Step-3.7-Flash-UD-IQ4_NL-00002-of-00003.gguf
-> Skipping multi-part file: UD-IQ4_NL/Step-3.7-Flash-UD-IQ4_NL-00003-of-00003.gguf
-> Skipping multi-part file: UD-IQ4_XS/Step-3.7-Flash-UD-IQ4_XS-00001-of-00003.gguf
-> Skipping multi-part file: UD-IQ4_XS/Step-3.7-Flash-UD-IQ4_XS-00002-of-00003.gguf
-> Skipping multi-part file: UD-IQ4_XS/Step-3.7-Flash-UD-IQ4_XS-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q2_K_XL/Step-3.7-Flash-UD-Q2_K_XL-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q2_K_XL/Step-3.7-Flash-UD-Q2_K_XL-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q2_K_XL/Step-3.7-Flash-UD-Q2_K_XL-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q3_K_M/Step-3.7-Flash-UD-Q3_K_M-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q3_K_M/Step-3.7-Flash-UD-Q3_K_M-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q3_K_M/Step-3.7-Flash-UD-Q3_K_M-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q3_K_XL/Step-3.7-Flash-UD-Q3_K_XL-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q3_K_XL/Step-3.7-Flash-UD-Q3_K_XL-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q3_K_XL/Step-3.7-Flash-UD-Q3_K_XL-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q4_K_M/Step-3.7-Flash-UD-Q4_K_M-00001-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_M/Step-3.7-Flash-UD-Q4_K_M-00002-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_M/Step-3.7-Flash-UD-Q4_K_M-00003-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_M/Step-3.7-Flash-UD-Q4_K_M-00004-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_S/Step-3.7-Flash-UD-Q4_K_S-00001-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_S/Step-3.7-Flash-UD-Q4_K_S-00002-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_S/Step-3.7-Flash-UD-Q4_K_S-00003-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_S/Step-3.7-Flash-UD-Q4_K_S-00004-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_XL/Step-3.7-Flash-UD-Q4_K_XL-00001-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_XL/Step-3.7-Flash-UD-Q4_K_XL-00002-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_XL/Step-3.7-Flash-UD-Q4_K_XL-00003-of-00004.gguf
-> Skipping multi-part file: UD-Q4_K_XL/Step-3.7-Flash-UD-Q4_K_XL-00004-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_M/Step-3.7-Flash-UD-Q5_K_M-00001-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_M/Step-3.7-Flash-UD-Q5_K_M-00002-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_M/Step-3.7-Flash-UD-Q5_K_M-00003-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_M/Step-3.7-Flash-UD-Q5_K_M-00004-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_S/Step-3.7-Flash-UD-Q5_K_S-00001-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_S/Step-3.7-Flash-UD-Q5_K_S-00002-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_S/Step-3.7-Flash-UD-Q5_K_S-00003-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_S/Step-3.7-Flash-UD-Q5_K_S-00004-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_XL/Step-3.7-Flash-UD-Q5_K_XL-00001-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_XL/Step-3.7-Flash-UD-Q5_K_XL-00002-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_XL/Step-3.7-Flash-UD-Q5_K_XL-00003-of-00004.gguf
-> Skipping multi-part file: UD-Q5_K_XL/Step-3.7-Flash-UD-Q5_K_XL-00004-of-00004.gguf
-> Skipping multi-part file: UD-Q6_K/Step-3.7-Flash-UD-Q6_K-00001-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K/Step-3.7-Flash-UD-Q6_K-00002-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K/Step-3.7-Flash-UD-Q6_K-00003-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K/Step-3.7-Flash-UD-Q6_K-00004-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K/Step-3.7-Flash-UD-Q6_K-00005-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Step-3.7-Flash-UD-Q6_K_XL-00001-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Step-3.7-Flash-UD-Q6_K_XL-00002-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Step-3.7-Flash-UD-Q6_K_XL-00003-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Step-3.7-Flash-UD-Q6_K_XL-00004-of-00005.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Step-3.7-Flash-UD-Q6_K_XL-00005-of-00005.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Step-3.7-Flash-UD-Q8_K_XL-00001-of-00006.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Step-3.7-Flash-UD-Q8_K_XL-00002-of-00006.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Step-3.7-Flash-UD-Q8_K_XL-00003-of-00006.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Step-3.7-Flash-UD-Q8_K_XL-00004-of-00006.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Step-3.7-Flash-UD-Q8_K_XL-00005-of-00006.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Step-3.7-Flash-UD-Q8_K_XL-00006-of-00006.gguf
-> Found 0 text models and 3 mmproj models
-> Generated new description
-> Added new entry
Processing nomadoor/flux-2-klein-9B-schematic-lora
Processing pyannote/speaker-diarization-community-1
Processing Kijai/LTX2.3_comfy
Processing HauhauCS/Qwen3.6-27B-Uncensored-HauhauCS-Aggressive
-> Downloads changed: 515466 -> 529286
-> Tool support: True
-> Found 10 text models and 1 mmproj models
-> Updated existing entry
Processing TencentARC/Pixal3D
Processing syntropy-ai/Soren-1-Small
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/dvlt
Processing Phr00t/Qwen-Image-Edit-Rapid-AIO
Processing Qwen/Qwen3-ASR-1.7B
Processing ControlLight/ControlLight
Processing Aratako/Irodori-TTS-600M-v3-VoiceDesign
Processing Hcompany/Holo-3.1-35B-A3B-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing sentence-transformers/all-MiniLM-L6-v2
Processing Qwen/Qwen3-TTS-12Hz-1.7B-CustomVoice
Processing Qwen/Qwen3.5-9B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-E2B-it
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing ponpoke/flux2-klein-9b-uncensored-text-encoder
-> New model found
-> Tool support: True
-> Found 4 text models and 0 mmproj models
-> Generated new description
-> Added new entry
Processing datalab-to/surya-ocr-2
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Qwen/Qwen-Image-Bench
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing ggml-org/gemma-4-12B-it-GGUF
-> New model found
-> Tool support: True
-> Found 3 text models and 2 mmproj models
-> Generated new description
-> Added new entry
Processing OpenYourMind/gemma-4-12B-it-abliterated-uncensored
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Kijai/WanVideo_comfy_fp8_scaled
Processing zai-org/GLM-OCR
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing tencent/Hy-MT2-1.8B
-> New model found
-> Not a chat model (pipeline_tag=translation), skipping
Processing bageldotcom/paris2
Processing openai/gpt-oss-20b
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing mistralai/Voxtral-4B-TTS-2603
Processing fal/Qwen-Image-Edit-2511-Multiple-Angles-LoRA
Processing zai-org/GLM-5.1
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-31B-it-assistant
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing ibm-granite/granite-switch-4.1-3b-preview
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing huihui-ai/Huihui-DeepSeek-V4-Flash-abliterated-ds4-GGUF
-> Downloads changed: 11597 -> 15440
-> Tool support: True
-> Found 5 text models and 0 mmproj models
-> Updated existing entry
Processing Jiunsong/supergemma4-26b-uncensored-gguf-v2
-> Downloads changed: 157027 -> 155796
-> Tool support: True
-> Found 1 text models and 0 mmproj models
-> Updated existing entry
Processing microsoft/Lens
Processing nvidia/Cosmos3-Nano-Policy-DROID
Processing Gryphe/Pantheon-Reasoning-27B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing dphn/Dolphin-X1-Trinity-Nano
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing pyannote/segmentation-3.0
Processing openai/whisper-large-v3
Processing Qwen/Qwen3-0.6B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing openai/gpt-oss-120b
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Qwen/Qwen3-Coder-Next
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Qwen/Qwen3.5-4B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-E4B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing XiaomiMiMo/MiMo-V2.5-Pro
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-E2B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing facebook/sam3.1
Processing ibm-granite/granite-speech-4.1-2b
Processing unsloth/Qwen3.6-27B-GGUF
-> Downloads changed: 1502770 -> 1436850
-> Tool support: True
-> Skipping multi-part file: BF16/Qwen3.6-27B-BF16-00001-of-00002.gguf
-> Skipping multi-part file: BF16/Qwen3.6-27B-BF16-00002-of-00002.gguf
-> Found 21 text models and 3 mmproj models
-> Updated existing entry
Processing ibm-granite/granite-switch-4.1-8b-preview
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing ibm-granite/granite-switch-4.1-30b-preview
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing vantagewithai/LTX2.3-10Eros-GGUF
Processing nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-Base-BF16
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing moonshotai/MoonViT-SO-400M
Processing lkzd7/WAN2.2_LoraSet_NSFW
Processing unsloth/LTX-2.3-GGUF
Processing biohub/ESMFold2
Processing KevinJK51/Qwen3.6-12B-IQ-Ultra-Heretic-Uncensored-Thinking-V2-Hightop-GGUF
-> Downloads changed: 45671 -> 51195
-> Tool support: True
-> Found 16 text models and 0 mmproj models
-> Updated existing entry
Processing prism-ml/bonsai-image-binary-4B-mlx-1bit
Processing LiquidAI/LFM2.5-VL-450M-Extract
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing JetBrains/Mellum2-12B-A2.5B-Thinking-SFT
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing latam-gpt/Llama-3.1-70B-LatamGPT-SFT-1.0
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing AEON-7/Gemma-4-12B-it-AEON-Abliterated-K4-BF16
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing deepseek-ai/DeepSeek-R1
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing meituan-longcat/LongCat-Video
Processing microsoft/TRELLIS.2-4B
Processing unsloth/Qwen3-Coder-Next-GGUF
-> Downloads changed: 3071255 -> 3098611
-> Tool support: True
-> Skipping multi-part file: BF16/Qwen3-Coder-Next-BF16-00001-of-00004.gguf
-> Skipping multi-part file: BF16/Qwen3-Coder-Next-BF16-00002-of-00004.gguf
-> Skipping multi-part file: BF16/Qwen3-Coder-Next-BF16-00003-of-00004.gguf
-> Skipping multi-part file: BF16/Qwen3-Coder-Next-BF16-00004-of-00004.gguf
-> Skipping multi-part file: Q4_1/Qwen3-Coder-Next-Q4_1-00001-of-00003.gguf
-> Skipping multi-part file: Q4_1/Qwen3-Coder-Next-Q4_1-00002-of-00003.gguf
-> Skipping multi-part file: Q4_1/Qwen3-Coder-Next-Q4_1-00003-of-00003.gguf
-> Skipping multi-part file: Q5_K_M/Qwen3-Coder-Next-Q5_K_M-00001-of-00003.gguf
-> Skipping multi-part file: Q5_K_M/Qwen3-Coder-Next-Q5_K_M-00002-of-00003.gguf
-> Skipping multi-part file: Q5_K_M/Qwen3-Coder-Next-Q5_K_M-00003-of-00003.gguf
-> Skipping multi-part file: Q5_K_S/Qwen3-Coder-Next-Q5_K_S-00001-of-00003.gguf
-> Skipping multi-part file: Q5_K_S/Qwen3-Coder-Next-Q5_K_S-00002-of-00003.gguf
-> Skipping multi-part file: Q5_K_S/Qwen3-Coder-Next-Q5_K_S-00003-of-00003.gguf
-> Skipping multi-part file: Q6_K/Qwen3-Coder-Next-Q6_K-00001-of-00003.gguf
-> Skipping multi-part file: Q6_K/Qwen3-Coder-Next-Q6_K-00002-of-00003.gguf
-> Skipping multi-part file: Q6_K/Qwen3-Coder-Next-Q6_K-00003-of-00003.gguf
-> Skipping multi-part file: Q8_0/Qwen3-Coder-Next-Q8_0-00001-of-00003.gguf
-> Skipping multi-part file: Q8_0/Qwen3-Coder-Next-Q8_0-00002-of-00003.gguf
-> Skipping multi-part file: Q8_0/Qwen3-Coder-Next-Q8_0-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_M/Qwen3-Coder-Next-UD-Q5_K_M-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_M/Qwen3-Coder-Next-UD-Q5_K_M-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_M/Qwen3-Coder-Next-UD-Q5_K_M-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_S/Qwen3-Coder-Next-UD-Q5_K_S-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_S/Qwen3-Coder-Next-UD-Q5_K_S-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_S/Qwen3-Coder-Next-UD-Q5_K_S-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_XL/Qwen3-Coder-Next-UD-Q5_K_XL-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_XL/Qwen3-Coder-Next-UD-Q5_K_XL-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q5_K_XL/Qwen3-Coder-Next-UD-Q5_K_XL-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q6_K/Qwen3-Coder-Next-UD-Q6_K-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q6_K/Qwen3-Coder-Next-UD-Q6_K-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q6_K/Qwen3-Coder-Next-UD-Q6_K-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Qwen3-Coder-Next-UD-Q6_K_XL-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Qwen3-Coder-Next-UD-Q6_K_XL-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q6_K_XL/Qwen3-Coder-Next-UD-Q6_K_XL-00003-of-00003.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Qwen3-Coder-Next-UD-Q8_K_XL-00001-of-00003.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Qwen3-Coder-Next-UD-Q8_K_XL-00002-of-00003.gguf
-> Skipping multi-part file: UD-Q8_K_XL/Qwen3-Coder-Next-UD-Q8_K_XL-00003-of-00003.gguf
-> Found 26 text models and 0 mmproj models
-> Updated existing entry
Processing HauhauCS/Qwen3.5-4B-Uncensored-HauhauCS-Aggressive
-> Downloads changed: 140693 -> 153312
-> Tool support: True
-> Found 4 text models and 1 mmproj models
-> Updated existing entry
Processing unsloth/gemma-4-E4B-it-GGUF
-> New model found
-> Tool support: True
-> Found 21 text models and 3 mmproj models
-> Generated new description
-> Added new entry
Processing dealignai/Gemma-4-31B-JANG_4M-CRACK
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing barozp/Qwen3.6-28B-REAP20-A3B-GGUF
-> Downloads changed: 9340 -> 12909
-> Tool support: True
-> Found 12 text models and 0 mmproj models
-> Updated existing entry
Processing unsloth/Qwen3.6-27B-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/gemma-4-26B-A4B-it-assistant
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing kohya-ss/Anima-LLLite
Processing llmfan46/Qwen3.6-27B-uncensored-heretic-v2-Native-MTP-Preserved-GGUF
-> Downloads changed: 121523 -> 130411
-> Tool support: False
-> Found 11 text models and 0 mmproj models
-> Updated existing entry
Processing llmfan46/Qwen3.6-35B-A3B-uncensored-heretic-Native-MTP-Preserved-GGUF
-> Downloads changed: 74549 -> 78289
-> Tool support: False
-> Found 10 text models and 0 mmproj models
-> Updated existing entry
Processing stabilityai/stable-audio-3-medium
Processing LuffyTheFox/Qwen3.6-35B-A3B-Uncensored-Genesis-V2-APEX-MTP-GGUF
-> Downloads changed: 51968 -> 57622
-> Tool support: True
-> Found 6 text models and 1 mmproj models
-> Updated existing entry
Processing openbmb/MiniCPM5-1B-GGUF
-> Downloads changed: 25868 -> 29178
-> Tool support: True
-> Found 3 text models and 0 mmproj models
-> Updated existing entry
Processing Abiray/MiniCPM5-1B-GGUF
-> New model found
-> Tool support: True
-> Found 5 text models and 0 mmproj models
-> Generated new description
-> Added new entry
Processing LiquidAI/LFM2.5-VL-1.6B-Extract
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing mudler/parakeet-cpp-gguf
Processing Hcompany/Holo-3.1-9B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing meta-llama/Llama-3.2-3B-Instruct
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing google/medgemma-1.5-4b-it
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing facebook/VGGT-Omega
Processing unsloth/gemma-4-31B-it-GGUF
-> Downloads changed: 815266 -> 740460
-> Tool support: True
-> Skipping multi-part file: BF16/gemma-4-31B-it-BF16-00001-of-00002.gguf
-> Skipping multi-part file: BF16/gemma-4-31B-it-BF16-00002-of-00002.gguf
-> Found 21 text models and 3 mmproj models
-> Updated existing entry
Processing nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16
Processing nvidia/omni-dreams-models
Processing mudler/Qwen3.6-35B-A3B-Claude-4.7-Opus-Reasoning-Distilled-APEX-MTP-GGUF
-> Downloads changed: 39431 -> 44334
-> Tool support: True
-> Found 9 text models and 0 mmproj models
-> Updated existing entry
Processing OpenMOSS-Team/MOSS-SoundEffect-v2.0
Processing Hcompany/Holo-3.1-35B-A3B-GGUF
-> Downloads changed: 0 -> 2276
-> Tool support: True
-> Found 3 text models and 1 mmproj models
-> Updated existing entry
Processing meta-llama/Llama-3.1-8B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing openai/whisper-large-v3-turbo
Processing briaai/RMBG-2.0
Processing Qwen/Qwen3-VL-8B-Instruct
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/nemotron-speech-streaming-en-0.6b
Processing kyutai/pocket-tts
Processing unsloth/Qwen3.5-9B-GGUF
-> Downloads changed: 1132611 -> 1121253
-> Tool support: True
-> Found 22 text models and 3 mmproj models
-> Updated existing entry
Processing nvidia/Nemotron-Labs-Diffusion-8B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing llmfan46/gemma-4-E4B-it-ultra-uncensored-heretic-GGUF
-> Downloads changed: 112956 -> 97673
-> Tool support: True
-> Found 7 text models and 0 mmproj models
-> Updated existing entry
Processing Qwen/Qwen3.6-27B-FP8
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing HiDream-ai/HiDream-O1-Image-Dev-2604
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing SupraLabs/Supra-50M-Instruct
-> Downloads changed: 8903 -> 10905
-> Tool support: False
-> Found 1 text models and 0 mmproj models
-> Updated existing entry
Processing JetBrains/Mellum2-12B-A2.5B-Base
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing spiritbuun/buun-Qwen3.6-chat_template
Processing mlx-community/gemma-4-12B-it-8bit
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing BAAI/bge-reranker-v2-m3
Processing agents-course/notebooks
Processing Qwen/Qwen3-8B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing joyfox/LTX-2.3-Transition-LORA
Processing XiaomiMiMo/MiMo-V2.5
Processing zhifeixie/Mega-ASR
Processing avaturn-live/avtr-1
Processing Jackrong/Qwopus3.5-4B-Coder-GGUF
-> Downloads changed: 6845 -> 8838
-> Tool support: True
-> Found 12 text models and 1 mmproj models
-> Updated existing entry
Processing LiquidAI/LFM2.5-8B-A1B-Base
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Soul-AILab/SoulX-Transcriber
Processing Abiray/Wan22_Bernini_FP8_Scaled
Processing ggerganov/whisper.cpp
Processing stabilityai/stable-diffusion-xl-base-1.0
Processing meta-llama/Llama-3.2-1B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing Kijai/WanVideo_comfy
Processing NousResearch/Hermes-4.3-36B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing nvidia/personaplex-7b-v1
Processing fishaudio/s2-pro
Processing google/gemma-4-31B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing joyfox/LTX2.3-ICEdit-Insight
Processing Jackrong/Qwen3.5-9B-DeepSeek-V4-Flash-GGUF
-> Downloads changed: 583175 -> 591805
-> Tool support: True
-> Found 12 text models and 1 mmproj models
-> Updated existing entry
Processing Jackrong/Qwopus3.6-35B-A3B-v1-GGUF
-> Downloads changed: 443421 -> 470513
-> Tool support: True
-> Found 8 text models and 1 mmproj models
-> Updated existing entry
Processing HiDream-ai/HiDream-O1-Image
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing prism-ml/bonsai-image-binary-4B-gemlite-1bit
Processing stepfun-ai/Step-3.7-Flash-FP8
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing lightx2v/Wan2.2-NVFP4-Sparse
Processing Blazed-Forge/Gemma-4-Sphinsikus-Chronist-31B
Processing unsloth/LFM2.5-8B-A1B
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing 0xSero/Kimi-K2.6-519B-NVFP4
-> New model found
-> Tool support: False
-> No valid model GGUF files found, skipping
Processing lmstudio-community/gemma-4-12B-it-GGUF
-> New model found
-> Tool support: True
-> Found 3 text models and 1 mmproj models
-> Generated new description
-> Added new entry
Processing nvidia/4D-RGPT-8B
Processing General-Instinct/InstinctRazor-Qwen3.5-122B-A10B-GGUF
-> New model found
-> Tool support: True
-> Found 2 text models and 0 mmproj models
-> Generated new description
-> Added new entry
Processing unsloth/NVIDIA-Nemotron-3-Ultra-550B-A55B-GGUF
-> New model found
-> Tool support: True
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00001-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00002-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00003-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00004-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00005-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00006-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00007-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00008-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00009-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00010-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00011-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00012-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00013-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00014-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00015-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00016-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00017-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00018-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00019-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00020-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00021-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00022-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00023-of-00024.gguf
-> Skipping multi-part file: BF16/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16-00024-of-00024.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00001-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00002-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00003-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00004-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00005-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00006-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00007-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00008-of-00009.gguf
-> Skipping multi-part file: MXFP4_MOE/NVIDIA-Nemotron-3-Ultra-550B-A55B-MXFP4_MOE-00009-of-00009.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00001-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00002-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00003-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00004-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00005-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00006-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00007-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00008-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00009-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00010-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00011-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00012-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00013-of-00014.gguf
-> Skipping multi-part file: Q8_0/NVIDIA-Nemotron-3-Ultra-550B-A55B-Q8_0-00014-of-00014.gguf
-> Skipping multi-part file: UD-IQ1_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ1_M-00001-of-00005.gguf
-> Skipping multi-part file: UD-IQ1_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ1_M-00002-of-00005.gguf
-> Skipping multi-part file: UD-IQ1_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ1_M-00003-of-00005.gguf
-> Skipping multi-part file: UD-IQ1_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ1_M-00004-of-00005.gguf
-> Skipping multi-part file: UD-IQ1_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ1_M-00005-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_M-00001-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_M-00002-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_M-00003-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_M-00004-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_M/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_M-00005-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_XXS-00001-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_XXS-00002-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_XXS-00003-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_XXS-00004-of-00005.gguf
-> Skipping multi-part file: UD-IQ2_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ2_XXS-00005-of-00005.gguf
-> Skipping multi-part file: UD-IQ3_S/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_S-00001-of-00007.gguf
-> Skipping multi-part file: UD-IQ3_S/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_S-00002-of-00007.gguf
-> Skipping multi-part file: UD-IQ3_S/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_S-00003-of-00007.gguf
-> Skipping multi-part file: UD-IQ3_S/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_S-00004-of-00007.gguf
-> Skipping multi-part file: UD-IQ3_S/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_S-00005-of-00007.gguf
-> Skipping multi-part file: UD-IQ3_S/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_S-00006-of-00007.gguf
-> Skipping multi-part file: UD-IQ3_S/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_S-00007-of-00007.gguf
-> Skipping multi-part file: UD-IQ3_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_XXS-00001-of-00006.gguf
-> Skipping multi-part file: UD-IQ3_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_XXS-00002-of-00006.gguf
-> Skipping multi-part file: UD-IQ3_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_XXS-00003-of-00006.gguf
-> Skipping multi-part file: UD-IQ3_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_XXS-00004-of-00006.gguf
-> Skipping multi-part file: UD-IQ3_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_XXS-00005-of-00006.gguf
-> Skipping multi-part file: UD-IQ3_XXS/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ3_XXS-00006-of-00006.gguf
-> Skipping multi-part file: UD-IQ4_NL/NVIDIA-Nemotron-3-Ultra-550B-A55B-UD-IQ4_NL-00001-of-00008.gguf