mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-22 10:31:19 +08: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',
|
|
]
|