mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -03:00
13 lines
371 B
Python
13 lines
371 B
Python
"""Constants used by the metadata collector"""
|
|
|
|
# Individual category constants
|
|
MODELS = "models"
|
|
PROMPTS = "prompts"
|
|
SAMPLING = "sampling"
|
|
LORAS = "loras"
|
|
SIZE = "size"
|
|
IMAGES = "images" # Added new category for image results
|
|
|
|
# Collection of categories for iteration
|
|
METADATA_CATEGORIES = [MODELS, PROMPTS, SAMPLING, LORAS, SIZE, IMAGES] # Added IMAGES to categories
|