mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
17 lines
323 B
Python
17 lines
323 B
Python
"""Constants used across recipe parsers."""
|
|
|
|
# Import VALID_LORA_TYPES from utils.constants
|
|
from ..utils.constants import VALID_LORA_TYPES
|
|
|
|
# Constants for generation parameters
|
|
GEN_PARAM_KEYS = [
|
|
'prompt',
|
|
'negative_prompt',
|
|
'steps',
|
|
'sampler',
|
|
'cfg_scale',
|
|
'seed',
|
|
'size',
|
|
'clip_skip',
|
|
]
|