File size: 67,253 Bytes
23b413b | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "HomePilot Model Catalog - Curated models for all providers",
"version": "1.0.0",
"last_updated": "2026-01-28",
"_comment": "\ud83e\uddea EXPERIMENTAL: Add Civitai models using scripts/download.py --add-civitai --version-id <ID> --type <image|video>",
"_experimental_example": {
"civitai_model_template": {
"id": "model_file_name.safetensors",
"label": "Model Name (Civitai)",
"description": "Model description from Civitai",
"size_gb": 2.0,
"download_url": "https://civitai.com/api/download/models/<version_id>",
"install_path": "checkpoints/",
"civitai_version_id": "version_id_here",
"civitai_model_id": "model_id_here"
},
"usage": "Run: python scripts/download.py --add-civitai --version-id 128713 --type image"
},
"providers": {
"ollama": {
"chat": [
{
"id": "llama3:8b",
"label": "Llama 3 8B",
"recommended": true,
"protected": true,
"description": "Fast, efficient 8B parameter model. Great for general-purpose tasks.",
"size_gb": 4.7,
"context_window": 8192
},
{
"id": "llama3:70b",
"label": "Llama 3 70B",
"description": "High-quality 70B parameter model. Excellent reasoning and coding.",
"size_gb": 40,
"context_window": 8192
},
{
"id": "llama3.1",
"label": "Llama 3.1 (8B)",
"recommended": true,
"description": "Fast general-purpose chat model. Standard smart assistant baseline.",
"size_gb": 4.7,
"context_window": 131072
},
{
"id": "llama3.1:70b",
"label": "Llama 3.1 70B",
"description": "Latest 70B model with 128K context window.",
"size_gb": 40,
"context_window": 131072
},
{
"id": "llama3.2",
"label": "Llama 3.2 (3B)",
"recommended": true,
"description": "Very fast, lightweight model for low-latency voice.",
"size_gb": 2.0,
"context_window": 131072
},
{
"id": "mistral:7b",
"label": "Mistral 7B",
"description": "Efficient 7B model from Mistral AI.",
"size_gb": 4.1,
"context_window": 8192
},
{
"id": "mistral-nemo",
"label": "Mistral Nemo (12B)",
"recommended": true,
"description": "Balanced quality; good instruction following. Best 'Smart' model for 12GB.",
"size_gb": 7.0,
"context_window": 131072
},
{
"id": "mixtral:8x7b",
"label": "Mixtral 8x7B",
"description": "Mixture of Experts model with excellent performance.",
"size_gb": 26,
"context_window": 32768
},
{
"id": "qwen2.5",
"label": "Qwen 2.5 (7B)",
"recommended": true,
"description": "Fast and capable general model with strong multilingual support.",
"size_gb": 4.0,
"context_window": 131072
},
{
"id": "gemma2",
"label": "Gemma 2 (9B)",
"description": "Strong for writing, creative prose and tone.",
"size_gb": 5.5,
"context_window": 8192
},
{
"id": "phi3:3.8b",
"label": "Phi-3 3.8B",
"description": "Microsoft's compact model with strong reasoning.",
"size_gb": 2.3,
"context_window": 4096
},
{
"id": "phi4",
"label": "Phi-4 (14B)",
"description": "Logic-heavy model from Microsoft; may be slower in voice.",
"size_gb": 8.0,
"context_window": 16384
},
{
"id": "deepseek-r1:latest",
"label": "DeepSeek R1 (7B)",
"description": "Thinking model with chain-of-thought reasoning. Needs 300 tokens for voice.",
"size_gb": 4.7,
"context_window": 131072
},
{
"id": "dolphin3",
"label": "Dolphin 3.0 (8B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Latest Dolphin on Llama 3.1. Uncensored, coding, math, function calling.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true
},
{
"id": "dolphin-llama3",
"label": "Dolphin Llama 3 (8B)",
"nsfw": true,
"description": "Dolphin 2.9 based on Llama 3. Uncensored chat & coding.",
"size_gb": 4.7,
"context_window": 8192,
"uncensored": true
},
{
"id": "dolphin-mistral",
"label": "Dolphin Mistral (7B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Fast uncensored Dolphin on Mistral 2.8. Reliable for voice.",
"size_gb": 4.1,
"context_window": 32768,
"uncensored": true
},
{
"id": "dolphin-mixtral:8x7b",
"label": "Dolphin Mixtral (8x7B MoE)",
"nsfw": true,
"description": "Powerful MoE for coding. Needs ~26GB RAM but fits 12GB VRAM.",
"size_gb": 26.0,
"context_window": 32768,
"uncensored": true
},
{
"id": "hermes3",
"label": "Hermes 3 (8B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Best for roleplay & creative writing. Coherent long-form outputs.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true
},
{
"id": "solar",
"label": "Solar (10.7B)",
"nsfw": true,
"description": "Good mid-sized uncensored chat model. Test latency for voice.",
"size_gb": 6.5,
"context_window": 4096,
"uncensored": true
},
{
"id": "wizardlm2",
"label": "WizardLM2 (7B)",
"nsfw": true,
"description": "Solid uncensored chat model. Validate voice pacing.",
"size_gb": 4.0,
"context_window": 8192,
"uncensored": true
},
{
"id": "llama2-uncensored",
"label": "Llama 2 Uncensored (7B)",
"nsfw": true,
"description": "Original uncensored Llama 2. Lightweight & fast.",
"size_gb": 3.8,
"context_window": 4096,
"uncensored": true
},
{
"id": "wizardlm-uncensored",
"label": "WizardLM Uncensored (13B)",
"nsfw": true,
"description": "Eric Hartford's WizardLM uncensored. Good for chat.",
"size_gb": 7.4,
"context_window": 4096,
"uncensored": true
},
{
"id": "wizard-vicuna-uncensored",
"label": "Wizard Vicuna Uncensored (7B)",
"nsfw": true,
"description": "Hartford classic. Great for natural conversations.",
"size_gb": 3.8,
"context_window": 4096,
"uncensored": true
},
{
"id": "mannix/llama3.1-8b-abliterated",
"label": "Llama 3.1 Abliterated (8B)",
"nsfw": true,
"description": "Llama 3.1 with safety brakes removed via abliteration.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "mannix/dolphin-2.9-llama3-8b",
"label": "Dolphin 2.9 Llama 3 (8B)",
"nsfw": true,
"description": "Dolphin 2.9 on Llama 3 by Mannix.",
"size_gb": 4.7,
"context_window": 8192,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/qwen3-abliterated",
"label": "Qwen3 Abliterated",
"nsfw": true,
"recommended_nsfw": true,
"description": "Qwen3 abliterated. Highly recommended for uncensored use.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/qwen3-abliterated:8b",
"label": "Qwen3 Abliterated (8B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "8B version. Best balance of speed and quality.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/qwen3-abliterated:4b",
"label": "Qwen3 Abliterated (4B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "4B version. Super fast for voice applications.",
"size_gb": 2.5,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/qwen3-coder-abliterated",
"label": "Qwen3 Coder Abliterated",
"nsfw": true,
"description": "Best uncensored coder. Abliterated Qwen3 for code.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/qwen3-next-abliterated",
"label": "Qwen3-Next Abliterated",
"nsfw": true,
"description": "Latest Qwen3-Next with abliteration.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/dolphin3-abliterated",
"label": "Dolphin 3 Abliterated (8B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Dolphin 3.0 + abliteration = Maximum compliance.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/huihui-moe-abliterated",
"label": "Huihui MoE Abliterated",
"nsfw": true,
"description": "MoE architecture for efficient inference. Abliterated.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/gpt-oss-abliterated",
"label": "GPT-OSS Abliterated",
"nsfw": true,
"description": "OpenAI's GPT-OSS abliterated (experimental).",
"size_gb": 12.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "goekdenizguelmez/JOSIEFIED-Qwen3",
"label": "JOSIEFIED Qwen3",
"nsfw": true,
"recommended_nsfw": true,
"description": "BEST OVERALL. 10/10 UGI Adherence. Abliterated + fine-tuned.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "goekdenizguelmez/JOSIEFIED-Qwen3:8b",
"label": "JOSIEFIED Qwen3 (8B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "#1 Pick. Best coherence + uncensored for 12GB VRAM.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "goekdenizguelmez/JOSIEFIED-Qwen2.5",
"label": "JOSIEFIED Qwen2.5",
"nsfw": true,
"description": "Qwen2.5 JOSIEFIED. Abliterated + fine-tuned for coherence.",
"size_gb": 4.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "goekdenizguelmez/JOSIEFIED-Qwen2.5:7b",
"label": "JOSIEFIED Qwen2.5 (7B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Fast 7B uncensored. Great for voice latency.",
"size_gb": 4.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "goekdenizguelmez/JOSIEFIED-Qwen2.5:14b",
"label": "JOSIEFIED Qwen2.5 (14B)",
"nsfw": true,
"description": "Best quality 14B. Fits 12GB with Q4 quantization.",
"size_gb": 8.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "goekdenizguelmez/JOSIEFIED-Qwen2.5:3b",
"label": "JOSIEFIED Qwen2.5 (3B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Ultra fast 3B. Minimal VRAM, great for voice.",
"size_gb": 1.8,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/qwen3-vl-abliterated:8b-instruct",
"label": "Qwen3 Vision Abliterated (8B)",
"nsfw": true,
"description": "Vision-Language abliterated. Analyzes any image without restrictions.",
"size_gb": 5.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true,
"vision": true
},
{
"id": "yarn-mistral",
"label": "Yarn Mistral (7B)",
"nsfw": true,
"description": "Extended context uncensored Mistral variant.",
"size_gb": 4.1,
"context_window": 131072,
"uncensored": true
},
{
"id": "openhermes",
"label": "OpenHermes (7B)",
"nsfw": true,
"description": "Uncensored Hermes variant. Good general chat.",
"size_gb": 4.1,
"context_window": 8192,
"uncensored": true
},
{
"id": "neural-chat",
"label": "Neural Chat (7B)",
"nsfw": true,
"description": "Intel's uncensored chat model. Good conversational flow.",
"size_gb": 4.1,
"context_window": 8192,
"uncensored": true
},
{
"id": "huihui_ai/llama3.2-abliterate:3b",
"label": "Llama 3.2 Abliterated (3B)",
"nsfw": true,
"description": "Fast 3B Llama abliterated. Ultra-lightweight for voice.",
"size_gb": 2.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/gemma3-abliterated",
"label": "Gemma 3 Abliterated",
"nsfw": true,
"description": "Google Gemma 3 with abliteration. Good writing quality.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/deepseek-r1-abliterated:8b",
"label": "DeepSeek R1 Abliterated (8B)",
"nsfw": true,
"description": "DeepSeek R1 thinking + uncensored. Chain-of-thought without filters.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/deepseek-r1-abliterated:14b",
"label": "DeepSeek R1 Abliterated (14B)",
"nsfw": true,
"description": "Larger DeepSeek R1 abliterated. Better reasoning, needs more VRAM.",
"size_gb": 8.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "huihui_ai/deepseek-r1-abliterated:1.5b",
"label": "DeepSeek R1 Abliterated (1.5B)",
"nsfw": true,
"description": "Tiny fast DeepSeek R1 abliterated. Minimal VRAM.",
"size_gb": 1.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "dolphincoder",
"label": "Dolphin Coder (7B)",
"nsfw": true,
"description": "Uncensored coding model based on CodeLlama. No content filters on code.",
"size_gb": 4.7,
"context_window": 16384,
"uncensored": true
},
{
"id": "goekdenizguelmez/JOSIEFIED-Llama",
"label": "JOSIEFIED Llama",
"nsfw": true,
"recommended_nsfw": true,
"description": "JOSIEFIED Llama series. Abliterated + fine-tuned for coherence.",
"size_gb": 4.7,
"context_window": 131072,
"uncensored": true,
"abliterated": true
},
{
"id": "samantha-mistral",
"label": "Samantha Mistral (7B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Uncensored companion model. Warm, conversational personality.",
"size_gb": 4.1,
"context_window": 8192,
"uncensored": true
}
],
"multimodal": [
{
"id": "moondream",
"label": "Moondream",
"recommended": true,
"description": "Ultra-light vision captioning + OCR. Instant responses, minimal RAM.",
"size_gb": 1.6,
"context_window": 8192,
"vision": true
},
{
"id": "gemma3:4b",
"label": "Gemma 3 Vision (4B)",
"recommended": true,
"description": "Best overall edge multimodal model. Fast, accurate image understanding.",
"size_gb": 3.0,
"context_window": 131072,
"vision": true
},
{
"id": "llava:7b",
"label": "LLaVA 1.6 (7B)",
"recommended": true,
"description": "Strong general-purpose vision model. Good balance of quality and speed.",
"size_gb": 4.7,
"context_window": 32768,
"vision": true
},
{
"id": "minicpm-v:latest",
"label": "MiniCPM-V 2.6",
"description": "Strong multi-image reasoning. Good for documents and charts.",
"size_gb": 5.0,
"context_window": 131072,
"vision": true
},
{
"id": "llama3.2-vision:11b",
"label": "Llama 3.2 Vision (11B)",
"description": "Best reasoning near the RAM limit. High-quality image understanding.",
"size_gb": 7.0,
"context_window": 131072,
"vision": true
},
{
"id": "huihui_ai/qwen3-vl-abliterated:8b-instruct",
"label": "Qwen3-VL Abliterated (8B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Vision-Language abliterated. Unfiltered image descriptions without restrictions.",
"size_gb": 5.0,
"context_window": 131072,
"uncensored": true,
"abliterated": true,
"vision": true
},
{
"id": "internvl3:8b",
"label": "InternVL3 8B",
"nsfw": true,
"recommended_nsfw": true,
"description": "Detailed scene analysis. Strong at understanding complex visual content.",
"size_gb": 7.0,
"context_window": 131072,
"uncensored": true,
"vision": true
},
{
"id": "smolvlm2:latest",
"label": "SmolVLM2 (2.2B)",
"nsfw": true,
"recommended_nsfw": true,
"description": "Fast unrestricted captioning. Ultra-lightweight vision model.",
"size_gb": 2.0,
"context_window": 8192,
"uncensored": true,
"vision": true
}
]
},
"comfyui": {
"image": [
{
"id": "sd_xl_base_1.0.safetensors",
"label": "SDXL Base 1.0",
"recommended": true,
"protected": true,
"nsfw": false,
"description": "Stable Diffusion XL base model. Best balance of quality and speed.",
"size_gb": 6.94,
"resolution": "1024x1024",
"download_url": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors",
"install_path": "checkpoints/"
},
{
"id": "flux1-schnell.safetensors",
"label": "Flux.1 Schnell",
"protected": true,
"nsfw": false,
"description": "Fast Flux model optimized for speed. 4-step generation. Note: Requires additional files (CLIP, VAE).",
"size_gb": 23.8,
"resolution": "1024x1024",
"download_url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/flux1-schnell.safetensors",
"install_path": "unet/"
},
{
"id": "flux1-dev.safetensors",
"label": "Flux.1 Dev",
"nsfw": false,
"description": "High-quality Flux model for detailed generations. Note: Requires additional files (CLIP, VAE).",
"size_gb": 23.8,
"resolution": "1024x1024",
"download_url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/flux1-dev.safetensors",
"install_path": "unet/"
},
{
"id": "ponyDiffusionV6XL.safetensors",
"label": "Pony Diffusion v6 XL",
"nsfw": true,
"description": "SDXL-based model fine-tuned for anime/illustration. Uncensored, supports NSFW content.",
"size_gb": 6.46,
"resolution": "1024x1024",
"download_url": "https://civitai.com/api/download/models/290640",
"install_path": "checkpoints/"
},
{
"id": "sd15.safetensors",
"label": "Stable Diffusion 1.5",
"nsfw": false,
"description": "Classic SD 1.5 model. Fast, lightweight.",
"size_gb": 4.27,
"resolution": "512x512",
"download_url": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors",
"install_path": "checkpoints/"
},
{
"id": "realisticVisionV51.safetensors",
"label": "Realistic Vision v5.1",
"nsfw": false,
"description": "Photorealistic SD 1.5 model.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/130072",
"install_path": "checkpoints/"
},
{
"id": "dreamshaper_8.safetensors",
"label": "DreamShaper 8",
"nsfw": true,
"recommended_nsfw": true,
"description": "Versatile model for artistic and realistic styles. Uncensored, excellent for NSFW content.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/128713",
"install_path": "checkpoints/"
},
{
"id": "deliberate_v3.safetensors",
"label": "Deliberate v3",
"nsfw": true,
"description": "High-quality photorealistic model. Uncensored, great for adult content generation.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/156110",
"install_path": "checkpoints/"
},
{
"id": "epicrealism_pureEvolution.safetensors",
"label": "epiCRealism Pure Evolution",
"nsfw": true,
"recommended_nsfw": true,
"description": "Ultra-realistic model for photorealistic generations. Fully uncensored for adult content.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/143906",
"install_path": "checkpoints/"
},
{
"id": "cyberrealistic_v42.safetensors",
"label": "CyberRealistic v4.2",
"nsfw": true,
"description": "Photorealistic model optimized for portraits and figures. Uncensored NSFW support.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/138176",
"install_path": "checkpoints/"
},
{
"id": "absolutereality_v181.safetensors",
"label": "AbsoluteReality v1.8.1",
"nsfw": true,
"description": "Highly realistic model for lifelike images. Full NSFW capability.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/132760",
"install_path": "checkpoints/"
},
{
"id": "aZovyaRPGArtist_v5.safetensors",
"label": "aZovya RPG Artist v5",
"nsfw": true,
"description": "Fantasy/RPG style artwork model. Supports uncensored adult content.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/119009",
"install_path": "checkpoints/"
},
{
"id": "unstableDiffusion.safetensors",
"label": "Unstable Diffusion",
"nsfw": true,
"description": "Community model trained without content restrictions. Designed for adult content.",
"size_gb": 4.27,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/75754",
"install_path": "checkpoints/"
},
{
"id": "majicmixRealistic_v7.safetensors",
"label": "MajicMix Realistic v7",
"nsfw": true,
"description": "Asian-focused photorealistic model. Uncensored for NSFW generations.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/176425",
"install_path": "checkpoints/"
},
{
"id": "bbmix_v4.safetensors",
"label": "BBMix v4",
"nsfw": true,
"description": "Versatile model for realistic and semi-realistic styles. Full NSFW support.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/89927",
"install_path": "checkpoints/"
},
{
"id": "realisian_v50.safetensors",
"label": "Realisian v5.0",
"nsfw": true,
"description": "Photorealistic model with excellent skin textures. Uncensored adult content support.",
"size_gb": 2.13,
"resolution": "512x512",
"download_url": "https://civitai.com/api/download/models/115942",
"install_path": "checkpoints/"
},
{
"id": "abyssOrangeMix3_aom3a1b.safetensors",
"label": "AbyssOrangeMix3 (AOM3)",
"nsfw": true,
"recommended_nsfw": true,
"anime": true,
"description": "Japanese aesthetic anime model. Painterly style with realistic textures. Beautiful linework. SD 1.5 based, ~4GB VRAM.",
"size_gb": 2.13,
"resolution": "512x768",
"download_url": "https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3A1B_orangemixs.safetensors",
"download_url_fallback": "https://civitai.com/api/download/models/17233",
"civitai_model_id": "9942",
"civitai_version_id": "17233",
"install_path": "checkpoints/"
},
{
"id": "counterfeit_v30.safetensors",
"label": "Counterfeit V3.0",
"nsfw": true,
"anime": true,
"description": "High-quality anime model with vibrant colors. Great for detailed character art and fan service illustrations.",
"size_gb": 2.13,
"resolution": "512x512",
"civitai_model_id": "4468",
"civitai_version_id": "57618",
"download_url": "https://civitai.com/api/download/models/57618",
"install_path": "checkpoints/"
},
{
"id": "anything_v5PrtRE.safetensors",
"label": "Anything V5 (Prt-RE)",
"nsfw": true,
"anime": true,
"description": "Classic anime model with vivid colors. Prt-RE is the recommended trimmed+repaired version. Great LoRA compatibility.",
"size_gb": 2.0,
"resolution": "512x768",
"download_url": "https://civitai.com/api/download/models/90854",
"download_url_fallback": "https://huggingface.co/stablediffusion-cn/Anything-V5.0/resolve/main/AnythingV5Ink_v5PrtRE.safetensors",
"civitai_model_id": "9409",
"civitai_version_id": "90854",
"install_path": "checkpoints/"
},
{
"id": "ponyDiffusionV6XL_v6.safetensors",
"label": "Pony Diffusion V6 XL",
"nsfw": true,
"recommended_nsfw": true,
"anime": true,
"description": "Best overall anime NSFW model. SDXL finetune trained on 2.6M Danbooru/e621 images. Massive LoRA ecosystem. Use score_9, score_8_up quality tags. Clip Skip 2 required.",
"size_gb": 6.46,
"resolution": "1024x1024",
"architecture": "pony_xl",
"download_url": "https://huggingface.co/Magamanny/Pony-Diffusion-V6-XL/resolve/main/ponyDiffusionV6XL_v6StartWithThisOne.safetensors",
"download_url_fallback": "https://civitai.com/api/download/models/290640",
"civitai_model_id": "257749",
"civitai_version_id": "290640",
"install_path": "checkpoints/",
"vram_required_gb": 8,
"clip_skip": 2,
"prompt_guide": {
"quality_tags": "score_9, score_8_up, score_7_up",
"style_tags": "source_anime, source_cartoon, source_pony",
"rating_tags": "rating_explicit, rating_questionable, rating_safe",
"negative_recommendation": "score_6, score_5, score_4, worst quality, low quality, text, watermark, signature",
"tip": "Uses Danbooru/e621 booru tags. Character knowledge from booru tagging system."
}
},
{
"id": "noobaiXL_epsPred11.safetensors",
"label": "NoobAI-XL (EPS v1.1)",
"nsfw": true,
"recommended_nsfw": true,
"anime": true,
"description": "Newest & best prompt adherence. 13M+ Danbooru/e621 images. Knows thousands of anime characters/artists by name. Use 'very awa, masterpiece, best quality' tags. EPS-prediction version (standard, easy to use).",
"size_gb": 7.0,
"resolution": "1024x1024",
"architecture": "noobai_xl",
"download_url": "https://huggingface.co/Laxhar/noobai-XL-1.1/resolve/main/NoobAI-XL-v1.1.safetensors",
"download_url_fallback": "https://civitai.com/api/download/models/1022833",
"civitai_model_id": "833294",
"civitai_version_id": "1022833",
"install_path": "checkpoints/",
"vram_required_gb": 8,
"clip_skip": 2,
"prompt_guide": {
"quality_tags": "very awa, masterpiece, best quality, amazing quality",
"character_tags": "Use Danbooru character names directly, e.g. 'hatsune miku', 'rem (re:zero)'",
"negative_recommendation": "worst quality, bad quality, low quality, normal quality, text, signature, jpeg artifacts, bad anatomy, watermark",
"tip": "Best character knowledge of any model. Can reproduce 10,000+ anime characters without LoRA. Use Danbooru tags."
}
},
{
"id": "noobaiXL_vPred10.safetensors",
"label": "NoobAI-XL (V-Pred v1.0)",
"nsfw": true,
"anime": true,
"description": "V-Prediction variant of NoobAI-XL. Better color accuracy and quality than EPS version but requires v-pred compatible UI (ComfyUI, Forge, reForge). NOT compatible with standard A1111.",
"size_gb": 7.11,
"resolution": "1024x1024",
"architecture": "noobai_xl_vpred",
"download_url": "https://huggingface.co/Laxhar/noobai-XL-1.0/resolve/main/NoobAI-XL-Vpred-v1.0.safetensors",
"download_url_fallback": "https://civitai.com/api/download/models/1093948",
"civitai_model_id": "833294",
"civitai_version_id": "1093948",
"install_path": "checkpoints/",
"vram_required_gb": 8,
"clip_skip": 2,
"prompt_guide": {
"quality_tags": "very awa, masterpiece, best quality, amazing quality",
"negative_recommendation": "worst quality, bad quality, low quality, normal quality, text, signature, jpeg artifacts, bad anatomy, watermark",
"tip": "Same prompting as EPS version. Requires v-pred scheduler config. Better color vibrancy."
}
},
{
"id": "meinamix_meinaV12Final.safetensors",
"label": "MeinaMix V12 (Final)",
"nsfw": true,
"recommended_nsfw": true,
"anime": true,
"description": "Best SD1.5 anime model. Stunning results with minimal prompting. Ultra-fast on any GPU. Final version. Balanced between realistic textures and anime style.",
"size_gb": 2.0,
"resolution": "512x768",
"architecture": "sd15",
"download_url": "https://civitai.com/api/download/models/948574",
"download_url_fallback": "https://huggingface.co/andro-flock/MeinaMix-V12_-Final/resolve/main/meinamix_v12Final.safetensors",
"civitai_model_id": "7240",
"civitai_version_id": "948574",
"install_path": "checkpoints/",
"vram_required_gb": 4,
"clip_skip": 2,
"prompt_guide": {
"quality_tags": "masterpiece, best quality",
"negative_recommendation": "(worst quality, low quality), (zombie, interlocked fingers)",
"tip": "Great art with minimal prompting. Hires.fix dramatically improves face/eye quality. V12 is more creative with lighter negatives."
}
}
],
"video": [
{
"id": "svd_xt_1_1.safetensors",
"label": "Stable Video Diffusion XT 1.1",
"recommended": true,
"nsfw": false,
"description": "Latest SVD model with 25 frames, 1024x576 resolution.",
"size_gb": 9.56,
"resolution": "1024x576",
"frames": 25,
"download_url": "https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt-1-1/resolve/main/svd_xt_1_1.safetensors",
"install_path": "checkpoints/",
"requires_addons": [],
"recommends_addons": [
"ComfyUI-VideoHelperSuite"
]
},
{
"id": "svd_xt.safetensors",
"label": "Stable Video Diffusion XT",
"nsfw": false,
"description": "Extended temporal model with 25 frames.",
"size_gb": 9.56,
"resolution": "1024x576",
"frames": 25,
"download_url": "https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt/resolve/main/svd_xt.safetensors",
"install_path": "checkpoints/"
},
{
"id": "svd.safetensors",
"label": "Stable Video Diffusion",
"nsfw": false,
"description": "Base SVD model with 14 frames.",
"size_gb": 9.56,
"resolution": "1024x576",
"frames": 14,
"download_url": "https://huggingface.co/stabilityai/stable-video-diffusion-img2vid/resolve/main/svd.safetensors",
"install_path": "checkpoints/"
},
{
"id": "ltx-video-2b-v0.9.1.safetensors",
"label": "LTX-Video 2B v0.9.1 (I2V/T2V)",
"recommended": true,
"protected": true,
"nsfw": false,
"description": "Lightricks LTX-Video checkpoint + T5 text encoder. Fast, lightweight - best for RTX 4080.",
"size_gb": 10.5,
"resolution": "varies",
"frames": 80,
"install_path": "checkpoints/",
"requires_addons": [
"ComfyUI-LTXVideo"
],
"recommends_addons": [
"ComfyUI-VideoHelperSuite"
],
"install": {
"type": "hf_files",
"requires_custom_nodes": [
"ComfyUI-LTXVideo"
],
"hint": "After install: use LTX workflows/nodes in ComfyUI to load the checkpoint.",
"files": [
{
"repo_id": "Lightricks/LTX-Video",
"filename": "ltx-video-2b-v0.9.1.safetensors",
"dest": "checkpoints/ltx-video-2b-v0.9.1.safetensors"
},
{
"repo_id": "comfyanonymous/flux_text_encoders",
"filename": "t5xxl_fp16.safetensors",
"dest": "clip/t5xxl_fp16.safetensors"
}
]
}
},
{
"id": "hunyuanvideo_t2v_720p_gguf_q4_k_m_pack",
"label": "HunyuanVideo T2V 720p GGUF Q4_K_M Pack",
"recommended": true,
"nsfw": false,
"description": "GGUF UNet + required encoders + VAE. Optimized for RTX 4080 (16GB). Requires ComfyUI-GGUF nodes.",
"size_gb": 9.5,
"resolution": "720p",
"frames": 80,
"install_path": "checkpoints/",
"requires_addons": [
"ComfyUI-GGUF"
],
"recommends_addons": [
"ComfyUI-VideoHelperSuite"
],
"install": {
"type": "hf_files",
"requires_custom_nodes": [
"ComfyUI-GGUF"
],
"hint": "After install: install ComfyUI-GGUF via ComfyUI Manager, restart ComfyUI, then load HunyuanVideo GGUF workflows.",
"files": [
{
"repo_id": "city96/HunyuanVideo-gguf",
"filename": "hunyuan-video-t2v-720p-Q4_K_M.gguf",
"dest": "unet/hunyuan-video-t2v-720p-Q4_K_M.gguf"
},
{
"repo_id": "Comfy-Org/HunyuanVideo_repackaged",
"filename": "split_files/text_encoders/clip_l.safetensors",
"dest": "text_encoders/clip_l.safetensors"
},
{
"repo_id": "Comfy-Org/HunyuanVideo_repackaged",
"filename": "split_files/text_encoders/llava_llama3_fp8_scaled.safetensors",
"dest": "text_encoders/llava_llama3_fp8_scaled.safetensors"
},
{
"repo_id": "Comfy-Org/HunyuanVideo_repackaged",
"filename": "split_files/vae/hunyuan_video_vae_bf16.safetensors",
"dest": "vae/hunyuan_video_vae_bf16.safetensors"
}
]
}
},
{
"id": "wan2.2_5b_fp16_pack",
"label": "Wan 2.2 5B FP16 Pack",
"recommended": true,
"nsfw": false,
"description": "Official Comfy-Org repack. Strong motion + modern open video. Good for RTX 4080.",
"size_gb": 21.5,
"resolution": "varies",
"frames": 80,
"install_path": "checkpoints/",
"requires_addons": [],
"recommends_addons": [
"ComfyUI-VideoHelperSuite"
],
"install": {
"type": "hf_files",
"hint": "After install: use ComfyUI Wan2.2 workflows (Load Diffusion Model = wan2.2_ti2v_5B_fp16).",
"files": [
{
"repo_id": "Comfy-Org/Wan_2.2_ComfyUI_Repackaged",
"filename": "split_files/diffusion_models/wan2.2_ti2v_5B_fp16.safetensors",
"dest": "diffusion_models/wan2.2_ti2v_5B_fp16.safetensors"
},
{
"repo_id": "Comfy-Org/Wan_2.2_ComfyUI_Repackaged",
"filename": "split_files/text_encoders/umt5_xxl_fp8_e4m3fn_scaled.safetensors",
"dest": "text_encoders/umt5_xxl_fp8_e4m3fn_scaled.safetensors"
},
{
"repo_id": "Comfy-Org/Wan_2.2_ComfyUI_Repackaged",
"filename": "split_files/vae/wan2.2_vae.safetensors",
"dest": "vae/wan2.2_vae.safetensors"
}
]
}
},
{
"id": "mochi_preview_fp8_pack",
"label": "Mochi 1 Preview FP8 Pack",
"recommended": false,
"nsfw": false,
"description": "Mochi diffusion FP8 + T5XXL FP8 + Mochi VAE. Heavier model - may push 16GB VRAM limits.",
"size_gb": 28.0,
"resolution": "480p",
"frames": 80,
"install_path": "checkpoints/",
"requires_addons": [],
"recommends_addons": [
"ComfyUI-VideoHelperSuite"
],
"install": {
"type": "hf_files",
"hint": "After install: update ComfyUI and use Mochi workflows. May require lowering settings on 16GB cards.",
"files": [
{
"repo_id": "Comfy-Org/mochi_preview_repackaged",
"filename": "split_files/diffusion_models/mochi_preview_fp8_scaled.safetensors",
"dest": "diffusion_models/mochi_preview_fp8_scaled.safetensors"
},
{
"repo_id": "Comfy-Org/mochi_preview_repackaged",
"filename": "split_files/text_encoders/t5xxl_fp8_e4m3fn_scaled.safetensors",
"dest": "text_encoders/t5xxl_fp8_e4m3fn_scaled.safetensors"
},
{
"repo_id": "Comfy-Org/mochi_preview_repackaged",
"filename": "split_files/vae/mochi_vae.safetensors",
"dest": "vae/mochi_vae.safetensors"
}
]
}
},
{
"id": "cogvideox1.5_5b_i2v_snapshot",
"label": "CogVideoX 1.5 5B I2V (Diffusers)",
"recommended": false,
"nsfw": false,
"description": "Downloads entire Diffusers-style repo. Requires ComfyUI CogVideoX wrapper. May need tuning on 16GB.",
"size_gb": 20.0,
"resolution": "varies",
"frames": 80,
"install_path": "checkpoints/",
"requires_addons": [
"ComfyUI-CogVideoXWrapper"
],
"recommends_addons": [
"ComfyUI-VideoHelperSuite"
],
"install": {
"type": "hf_snapshot",
"repo_id": "THUDM/CogVideoX1.5-5B-I2V",
"dest_dir": "diffusers/CogVideoX1.5-5B-I2V",
"requires_custom_nodes": [
"ComfyUI-CogVideoXWrapper"
],
"hint": "After install: configure your CogVideoX ComfyUI wrapper to point to this diffusers folder."
}
}
],
"edit": [
{
"id": "sd_xl_base_1.0_inpainting_0.1.safetensors",
"label": "SDXL Inpainting 0.1 (Checkpoint)",
"recommended": true,
"protected": true,
"nsfw": false,
"description": "High-quality inpainting backbone for natural edits (object removal, region replace) at 1024px.",
"size_gb": 5.14,
"resolution": "1024x1024",
"download_url": "https://huggingface.co/wangqyqq/sd_xl_base_1.0_inpainting_0.1.safetensors/resolve/main/sd_xl_base_1.0_inpainting_0.1.safetensors",
"install_path": "checkpoints/"
},
{
"id": "sd-v1-5-inpainting.ckpt",
"label": "SD 1.5 Inpainting (Fast fallback)",
"recommended": true,
"nsfw": false,
"description": "Fast and stable 512px inpainting fallback. Great for low-VRAM servers.",
"size_gb": 4.27,
"resolution": "512x512",
"download_url": "https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-inpainting/resolve/main/sd-v1-5-inpainting.ckpt",
"install_path": "checkpoints/"
},
{
"id": "control_v11p_sd15_inpaint.safetensors",
"label": "ControlNet SD1.5 Inpaint (Guidance)",
"recommended": true,
"nsfw": false,
"description": "ControlNet inpaint guidance to preserve structure and blend edits naturally (SD1.5).",
"size_gb": 1.45,
"download_url": "https://huggingface.co/lllyasviel/control_v11p_sd15_inpaint/resolve/main/diffusion_pytorch_model.safetensors",
"install_path": "controlnet/"
},
{
"id": "sam_vit_h_4b8939.pth",
"label": "Segment Anything (SAM ViT-H)",
"recommended": false,
"nsfw": false,
"description": "Optional auto-mask helper (Segment Anything Model). Useful for background removal / object selection.",
"size_gb": 2.56,
"download_url": "https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth",
"install_path": "sams/"
},
{
"id": "u2net.onnx",
"label": "Background Remove (U2Net ONNX)",
"recommended": false,
"nsfw": false,
"description": "Optional background removal helper used by rembg-style workflows.",
"size_gb": 0.17,
"download_url": "https://github.com/danielgatis/rembg/releases/download/v0.0.0/u2net.onnx",
"install_path": "rembg/"
}
],
"enhance": [
{
"id": "4x-UltraSharp.pth",
"label": "4x UltraSharp (Upscale)",
"recommended": true,
"protected": true,
"nsfw": false,
"description": "Sharp, clean 4x upscaler for general photos.",
"size_gb": 0.08,
"download_url": "https://huggingface.co/philz1337x/upscaler/resolve/main/4x-UltraSharp.pth",
"install_path": "upscale_models/"
},
{
"id": "RealESRGAN_x4plus.pth",
"label": "RealESRGAN x4+ (Photo)",
"recommended": true,
"nsfw": false,
"description": "Excellent photo upscaling with natural texture recovery.",
"size_gb": 0.064,
"download_url": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth",
"install_path": "upscale_models/"
},
{
"id": "realesr-general-x4v3.pth",
"label": "Real-ESRGAN General x4v3",
"recommended": false,
"nsfw": false,
"description": "General-purpose Real-ESRGAN model, good for mixed content.",
"size_gb": 0.064,
"download_url": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth",
"install_path": "upscale_models/"
},
{
"id": "SwinIR_4x.pth",
"label": "SwinIR 4x (Restore)",
"recommended": false,
"nsfw": false,
"description": "Restoration upscaler for compression and mild blur cleanup.",
"size_gb": 0.12,
"download_url": "https://github.com/JingyunLiang/SwinIR/releases/download/v0.0/003_realSR_BSRGAN_DFOWMFC_s64w8_SwinIR-L_x4_GAN.pth",
"install_path": "upscale_models/",
"rename_to": "SwinIR_4x.pth"
},
{
"id": "GFPGANv1.4.pth",
"label": "GFPGAN v1.4 (Face Restore)",
"recommended": false,
"protected": true,
"nsfw": false,
"description": "Optional face restoration after heavy edits or upscaling.",
"size_gb": 0.35,
"download_url": "https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth",
"install_path": "gfpgan/"
}
],
"addons": [
{
"id": "ComfyUI-VideoHelperSuite",
"label": "Video Helper Suite (VHS)",
"recommended": true,
"protected": true,
"description": "Essential video tools: MP4/WebM export, video loading, frame manipulation. Enables proper video output instead of animated WEBP.",
"install": {
"type": "git_repo",
"repo_url": "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite",
"dest_dir": "custom_nodes/ComfyUI-VideoHelperSuite",
"hint": "Restart ComfyUI after install. Requires ffmpeg in PATH for video encoding."
},
"provides_nodes": [
"VHS_VideoCombine",
"VHS_LoadVideo",
"VHS_SplitVideo"
]
},
{
"id": "ComfyUI-LTXVideo",
"label": "LTX-Video Nodes",
"recommended": true,
"protected": true,
"description": "Native LTX-Video nodes for optimal performance with LTX-Video checkpoints.",
"install": {
"type": "git_repo",
"repo_url": "https://github.com/Lightricks/ComfyUI-LTXVideo",
"dest_dir": "custom_nodes/ComfyUI-LTXVideo",
"hint": "Restart ComfyUI after install."
},
"provides_nodes": [
"LTXVLoader",
"LTXVSampler",
"LTXVConditioning"
]
},
{
"id": "ComfyUI-GGUF",
"label": "GGUF Model Loader",
"recommended": true,
"description": "Load GGUF quantized models. Required for HunyuanVideo GGUF and other quantized models.",
"install": {
"type": "git_repo",
"repo_url": "https://github.com/city96/ComfyUI-GGUF",
"dest_dir": "custom_nodes/ComfyUI-GGUF",
"hint": "Restart ComfyUI after install."
},
"provides_nodes": [
"UnetLoaderGGUF",
"DualCLIPLoaderGGUF"
]
},
{
"id": "ComfyUI-CogVideoXWrapper",
"label": "CogVideoX Wrapper",
"recommended": false,
"description": "Nodes to run CogVideoX Diffusers pipelines in ComfyUI.",
"install": {
"type": "git_repo",
"repo_url": "https://github.com/kijai/ComfyUI-CogVideoXWrapper",
"dest_dir": "custom_nodes/ComfyUI-CogVideoXWrapper",
"hint": "Restart ComfyUI after install."
},
"provides_nodes": [
"CogVideoXDiffusersLoader",
"CogVideoXSampler",
"CogVideoXDecode"
]
},
{
"id": "ComfyUI-Impact-Pack",
"label": "Impact Pack",
"recommended": true,
"protected": true,
"description": "Essential nodes for segmentation, face detection, and advanced image workflows.",
"install": {
"type": "git_repo",
"repo_url": "https://github.com/ltdrdata/ComfyUI-Impact-Pack",
"dest_dir": "custom_nodes/ComfyUI-Impact-Pack",
"hint": "Restart ComfyUI after install. Some features require additional model downloads."
},
"provides_nodes": [
"SAMLoader",
"FaceDetailer",
"BboxDetectorSEGS"
]
}
]
},
"civitai": {
"_comment": "Recommended Civitai models - use version ID for download",
"image": [
{
"id": "pony_diffusion_v6_xl",
"label": "Pony Diffusion V6 XL",
"recommended": true,
"nsfw": true,
"description": "The base model for character consistency and prompt adherence. Best for anime/illustration.",
"size_gb": 6.46,
"resolution": "1024x1024",
"civitai_url": "https://civitai.com/models/257749/pony-diffusion-v6-xl",
"civitai_version_id": "290640",
"install_path": "checkpoints/"
},
{
"id": "cyberrealistic_pony",
"label": "CyberRealistic Pony",
"recommended": true,
"nsfw": true,
"description": "Best blend of Pony's prompt understanding with photorealism. Excellent for realistic NSFW.",
"size_gb": 6.46,
"resolution": "1024x1024",
"civitai_url": "https://civitai.com/models/443821/cyberrealistic-pony",
"civitai_version_id": "544666",
"install_path": "checkpoints/"
},
{
"id": "realvisxl_v50",
"label": "RealVisXL V5.0",
"recommended": true,
"nsfw": false,
"description": "The gold standard for photorealistic skin texture and lighting. SDXL-based.",
"size_gb": 6.94,
"resolution": "1024x1024",
"civitai_url": "https://civitai.com/models/139562/realvisxl-v50",
"civitai_version_id": "361593",
"install_path": "checkpoints/"
},
{
"id": "juggernaut_xl",
"label": "Juggernaut XL",
"recommended": true,
"nsfw": false,
"description": "Cinematic and moody photorealism. Excellent for dramatic lighting and scenes.",
"size_gb": 6.94,
"resolution": "1024x1024",
"civitai_url": "https://civitai.com/models/133005/juggernaut-xl",
"civitai_version_id": "471120",
"install_path": "checkpoints/"
},
{
"id": "flux1_checkpoint",
"label": "Flux.1 Checkpoint (Easy to Use)",
"nsfw": false,
"description": "High-quality Flux checkpoint packaged for easy use with ComfyUI or Forge.",
"size_gb": 23.8,
"resolution": "1024x1024",
"civitai_url": "https://civitai.com/models/628682/flux-1-checkpoint-easy-to-use",
"civitai_version_id": "704954",
"install_path": "checkpoints/"
},
{
"id": "adetailer_face",
"label": "ADetailer Face Models",
"nsfw": false,
"description": "Face detection and enhancement models for better face quality in generations.",
"size_gb": 0.5,
"civitai_url": "https://civitai.com/models/195550",
"civitai_version_id": "219687",
"install_path": "models/adetailer/"
}
],
"video": [
{
"id": "ltx_video_workflow",
"label": "LTX Video (Image to Video)",
"recommended": true,
"nsfw": false,
"description": "Fast, lightweight video generation workflow. Best for local RTX cards (8GB+ VRAM).",
"size_gb": 5.0,
"resolution": "768x512",
"frames": 24,
"civitai_url": "https://civitai.com/models/995093/ltx-image-to-video-with-stg-caption-and-clip-extend-workflow",
"civitai_version_id": "1119428",
"install_path": "models/ltx/"
},
{
"id": "mochi_1_pack",
"label": "Mochi 1 Video Pack",
"recommended": true,
"nsfw": false,
"description": "High motion fidelity video model. Excellent for smooth animations and motion.",
"size_gb": 10.0,
"resolution": "848x480",
"frames": 30,
"civitai_url": "https://civitai.com/models/886896/donut-mochi-pack-video-generation",
"civitai_version_id": "992820",
"install_path": "models/mochi/"
},
{
"id": "animatediff_sdxl",
"label": "AnimateDiff SDXL (Odinson)",
"nsfw": false,
"description": "Workflow to animate SDXL images using AnimateDiff. Turn still images into videos.",
"size_gb": 2.5,
"resolution": "1024x1024",
"frames": 16,
"civitai_url": "https://civitai.com/models/331700/odinson-sdxl-animatediff",
"civitai_version_id": "373089",
"install_path": "models/animatediff/"
},
{
"id": "animatediff_lightning",
"label": "AnimateDiff Lightning",
"nsfw": false,
"description": "Fast AnimateDiff model with 4-step generation. Good for quick video previews.",
"size_gb": 1.5,
"resolution": "512x512",
"frames": 16,
"civitai_url": "https://civitai.com/models/500187/animatediff-lightning",
"civitai_version_id": "554533",
"install_path": "models/animatediff/"
}
]
},
"openai_compat": {
"chat": [
{
"id": "local-model",
"label": "Local Model (auto-detect)",
"recommended": true,
"description": "Automatically detect and use the first available model from your vLLM/TGI server."
}
]
},
"openai": {
"chat": [
{
"id": "gpt-4o",
"label": "GPT-4o",
"recommended": true,
"description": "Latest GPT-4 optimized model with vision capabilities.",
"context_window": 128000
},
{
"id": "gpt-4o-mini",
"label": "GPT-4o Mini",
"description": "Smaller, faster GPT-4 variant.",
"context_window": 128000
},
{
"id": "gpt-4-turbo",
"label": "GPT-4 Turbo",
"description": "GPT-4 Turbo with vision support.",
"context_window": 128000
},
{
"id": "gpt-3.5-turbo",
"label": "GPT-3.5 Turbo",
"description": "Fast and cost-effective GPT-3.5 model.",
"context_window": 16385
}
]
},
"claude": {
"chat": [
{
"id": "claude-opus-4-5-20251101",
"label": "Claude Opus 4.5",
"recommended": true,
"description": "Most capable Claude model with advanced reasoning.",
"context_window": 200000
},
{
"id": "claude-sonnet-4-5-20250929",
"label": "Claude Sonnet 4.5",
"description": "Balanced performance and speed.",
"context_window": 200000
},
{
"id": "claude-sonnet-3-5-20241022",
"label": "Claude Sonnet 3.5",
"description": "Previous generation Sonnet model.",
"context_window": 200000
},
{
"id": "claude-haiku-3-5-20241022",
"label": "Claude Haiku 3.5",
"description": "Fast and efficient Claude model.",
"context_window": 200000
}
]
},
"watsonx": {
"chat": [
{
"id": "meta-llama/llama-3-1-70b-instruct",
"label": "Llama 3.1 70B Instruct",
"recommended": true,
"description": "IBM-hosted Llama 3.1 70B model.",
"context_window": 128000
},
{
"id": "meta-llama/llama-3-1-8b-instruct",
"label": "Llama 3.1 8B Instruct",
"description": "Smaller, faster Llama 3.1 variant.",
"context_window": 128000
},
{
"id": "ibm/granite-13b-chat-v2",
"label": "IBM Granite 13B Chat v2",
"description": "IBM's Granite model optimized for chat.",
"context_window": 8192
},
{
"id": "mistralai/mixtral-8x7b-instruct-v01",
"label": "Mixtral 8x7B Instruct",
"description": "Mistral's Mixture of Experts model.",
"context_window": 32768
}
]
}
},
"generation_presets": {
"_comment": "Curated generation presets for specific use cases. Use with compatible models.",
"anime_fan_service_adult": {
"id": "anime_fan_service_adult",
"label": "Anime Fan Service (Adult)",
"description": "Preset for mature anime illustrations. Optimized for ecchi and fan service content with tasteful presentation.",
"content_rating": "mature",
"requires_mature_mode": true,
"recommended_models": [
"abyssOrangeMix3_aom3a1b.safetensors",
"counterfeit_v30.safetensors",
"anything_v5PrtRE.safetensors"
],
"sampler_settings": {
"sampler": "dpm++_2m_karras",
"steps": 25,
"cfg_scale": 6.0,
"clip_skip": 2
},
"prompt_injection": {
"positive_prefix": "masterpiece, best quality, ultra-detailed, anime style, illustration, vibrant colors, professional lighting, ",
"positive_suffix": ", highly detailed face, beautiful eyes, dynamic pose",
"negative": "lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, deformed, disfigured, mutation, mutated, ugly, disgusting, out of frame, duplicate, poorly drawn face, poorly drawn hands"
},
"safety_guidelines": [
"All depicted characters must be visibly adult (18+)",
"Content must remain within ecchi/fan service boundaries",
"No explicit sexual acts or genitalia",
"Focus on artistic presentation and aesthetics"
]
},
"anime_sfw": {
"id": "anime_sfw",
"label": "Anime (SFW)",
"description": "General-purpose anime preset for safe-for-work illustrations.",
"content_rating": "sfw",
"requires_mature_mode": false,
"recommended_models": [
"counterfeit_v30.safetensors",
"anything_v5PrtRE.safetensors"
],
"sampler_settings": {
"sampler": "dpm++_2m_karras",
"steps": 20,
"cfg_scale": 7.0,
"clip_skip": 2
},
"prompt_injection": {
"positive_prefix": "masterpiece, best quality, ultra-detailed, anime style, illustration, ",
"positive_suffix": ", highly detailed, beautiful composition",
"negative": "lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, nsfw, nude, explicit"
}
},
"anime_romantic": {
"id": "anime_romantic",
"label": "Anime Romantic Scene",
"description": "Preset for romantic anime scenes. Tasteful intimacy without explicit content.",
"content_rating": "mature",
"requires_mature_mode": true,
"recommended_models": [
"abyssOrangeMix3_aom3a1b.safetensors",
"counterfeit_v30.safetensors"
],
"sampler_settings": {
"sampler": "dpm++_2m_karras",
"steps": 28,
"cfg_scale": 5.5,
"clip_skip": 2
},
"prompt_injection": {
"positive_prefix": "masterpiece, best quality, ultra-detailed, anime style, romantic atmosphere, soft lighting, intimate moment, ",
"positive_suffix": ", emotional, tender, beautiful composition, cinematic lighting",
"negative": "lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, deformed, ugly, explicit, pornographic, vulgar"
},
"safety_guidelines": [
"Focus on emotional connection and romantic atmosphere",
"Tasteful presentation of intimacy",
"All characters must be visibly adult (18+)",
"Suggestive but not explicit content"
]
},
"anime_portrait_sfw": {
"id": "anime_portrait_sfw",
"label": "Anime Portrait (SFW)",
"description": "Safe-for-work anime portrait preset. Optimized for character art with clean composition.",
"content_rating": "safe",
"requires_mature_mode": false,
"recommended_models": [
"meinamix_meinaV12Final.safetensors",
"noobaiXL_epsPred11.safetensors",
"ponyDiffusionV6XL_v6.safetensors"
],
"sampler_settings": {
"default_aspect_ratio": "2:3",
"clip_skip": 2
},
"prompt_injection": {
"positive_prefix": "masterpiece, best quality, highly detailed, beautiful",
"positive_suffix": "beautiful eyes, detailed face, soft lighting",
"negative": "(worst quality, low quality:1.4), bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, jpeg artifacts, signature, watermark"
}
},
"anime_fan_service_xl": {
"id": "anime_fan_service_xl",
"label": "Anime Fan Service (XL Models)",
"description": "Mature anime fan service preset optimized for Pony XL and NoobAI-XL models with model-specific prompt tags.",
"content_rating": "questionable",
"requires_mature_mode": true,
"recommended_models": [
"ponyDiffusionV6XL_v6.safetensors",
"noobaiXL_epsPred11.safetensors",
"meinamix_meinaV12Final.safetensors"
],
"sampler_settings": {
"default_aspect_ratio": "2:3",
"clip_skip": 2
},
"prompt_injection": {
"positive_prefix_pony": "score_9, score_8_up, score_7_up, source_anime",
"positive_prefix_noobai": "very awa, masterpiece, best quality, amazing quality",
"positive_prefix_sd15": "masterpiece, best quality, ultra-detailed",
"positive_suffix": "beautiful detailed eyes, dynamic pose, detailed background",
"negative_pony": "score_6, score_5, score_4, worst quality, low quality, text, watermark, signature, bad anatomy",
"negative_noobai": "worst quality, bad quality, low quality, normal quality, text, signature, jpeg artifacts, bad anatomy, watermark",
"negative_sd15": "(worst quality, low quality:1.4), monochrome, zombie, interlocked fingers, bad anatomy"
},
"safety_guidelines": [
"All depicted characters must appear 18+",
"No real person likenesses",
"User is responsible for generated content"
]
},
"anime_nsfw_explicit": {
"id": "anime_nsfw_explicit",
"label": "Anime NSFW Explicit",
"description": "Explicit anime content preset with model-specific quality tags and safety guidelines.",
"content_rating": "explicit",
"requires_mature_mode": true,
"recommended_models": [
"ponyDiffusionV6XL_v6.safetensors",
"noobaiXL_epsPred11.safetensors",
"abyssOrangeMix3_aom3a1b.safetensors",
"meinamix_meinaV12Final.safetensors"
],
"sampler_settings": {
"default_aspect_ratio": "2:3",
"clip_skip": 2,
"temperature_note": "Higher CFG (6-8 for SD1.5, 5-6 for SDXL) for more precise anatomy"
},
"prompt_injection": {
"positive_prefix_pony": "score_9, score_8_up, score_7_up, source_anime, rating_explicit",
"positive_prefix_noobai": "very awa, masterpiece, best quality, amazing quality, rating:explicit",
"positive_prefix_sd15": "masterpiece, best quality, ultra-detailed, nsfw",
"positive_suffix": "detailed body, beautiful detailed eyes, dynamic composition",
"negative_pony": "score_6, score_5, score_4, worst quality, low quality, text, watermark, censored, mosaic censoring",
"negative_noobai": "worst quality, bad quality, low quality, normal quality, text, signature, jpeg artifacts, bad anatomy, censored",
"negative_sd15": "(worst quality, low quality:1.4), monochrome, zombie, interlocked fingers, bad anatomy, censored, mosaic censoring"
},
"safety_guidelines": [
"All depicted characters must appear 18+",
"No real person likenesses",
"No minors or minor-adjacent depictions under any circumstances",
"User is solely responsible for generated content",
"Respect local laws and platform ToS"
]
}
}
}
|