feat(filters): add model type filter

This commit is contained in:
Will Miao
2025-11-18 16:43:44 +08:00
parent 57f369a6de
commit e9d55fe146
17 changed files with 179 additions and 17 deletions

View File

@@ -55,6 +55,12 @@ export const BASE_MODELS = {
UNKNOWN: "Other"
};
export const MODEL_TYPE_DISPLAY_NAMES = {
lora: "LoRA",
locon: "LyCORIS",
dora: "DoRA",
};
export const BASE_MODEL_ABBREVIATIONS = {
// Stable Diffusion 1.x models
[BASE_MODELS.SD_1_4]: 'SD1',