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