mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-23 22:22:11 -03:00
Add filters - checkpoint
This commit is contained in:
24
static/js/utils/constants.js
Normal file
24
static/js/utils/constants.js
Normal file
@@ -0,0 +1,24 @@
|
||||
export const BASE_MODELS = {
|
||||
SD_1_5: "SD1.5",
|
||||
SD_2_0: "SD2.0",
|
||||
SD_2_1: "SD2.1",
|
||||
SDXL: "SDXL",
|
||||
FLUX_1_D: "Flux.1 D",
|
||||
IL: "IL",
|
||||
PONY: "Pony",
|
||||
HUNYUAN_VIDEO: "Hunyuan Video",
|
||||
UNKNOWN: "Unknown"
|
||||
};
|
||||
|
||||
// Base model display names and their corresponding class names (for styling)
|
||||
export const BASE_MODEL_CLASSES = {
|
||||
[BASE_MODELS.SD_1_5]: "sd-1-5",
|
||||
[BASE_MODELS.SD_2_0]: "sd-2-0",
|
||||
[BASE_MODELS.SD_2_1]: "sd-2-1",
|
||||
[BASE_MODELS.SDXL]: "sdxl",
|
||||
[BASE_MODELS.FLUX_1_D]: "flux",
|
||||
[BASE_MODELS.IL]: "il",
|
||||
[BASE_MODELS.PONY]: "pony",
|
||||
[BASE_MODELS.HUNYUAN_VIDEO]: "hunyuan",
|
||||
[BASE_MODELS.UNKNOWN]: "unknown"
|
||||
};
|
||||
Reference in New Issue
Block a user