mirror of
https://github.com/vladmandic/automatic
synced 2026-09-13 01:59:42 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user