feat: add Nunchaku group to reference

Replace manual Model/TE checkboxes in Quantization Settings with a
dedicated "Nunchaku" tab in the Extra Networks menu where users can
directly select nunchaku-quantized model variants. Detection is now
using a +nunchaku path marker for disambiguation.
This commit is contained in:
CalamitousFelicitousness
2026-02-05 15:08:46 +00:00
parent bf1e763156
commit 935a4fcb03
6 changed files with 214 additions and 8 deletions
+6
View File
@@ -171,6 +171,12 @@ async function filterExtraNetworksForTab(searchTerm) {
.toLowerCase()
.includes('quantized') ? '' : 'none';
});
} else if (searchTerm === 'nunchaku/') {
cards.forEach((elem) => {
elem.style.display = elem.dataset.tags
.toLowerCase()
.includes('nunchaku') ? '' : 'none';
});
} else if (searchTerm === 'local/') {
cards.forEach((elem) => {
elem.style.display = elem.dataset.name