mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
24 lines
665 B
JavaScript
24 lines
665 B
JavaScript
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"
|
|
}; |