mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 13:42:12 -03:00
14 lines
353 B
Python
14 lines
353 B
Python
"""Constants used by the metadata collector"""
|
|
|
|
# Metadata categories
|
|
MODELS = "models"
|
|
PROMPTS = "prompts"
|
|
SAMPLING = "sampling"
|
|
LORAS = "loras"
|
|
SIZE = "size"
|
|
IMAGES = "images"
|
|
IS_SAMPLER = "is_sampler" # New constant to mark sampler nodes
|
|
|
|
# Complete list of categories to track
|
|
METADATA_CATEGORIES = [MODELS, PROMPTS, SAMPLING, LORAS, SIZE, IMAGES]
|