mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
Additional info: Now prioritizes using the Civitai Images API to fetch image and generation metadata. Even NSFW images can now be imported via URL.
25 lines
609 B
Python
25 lines
609 B
Python
"""Recipe metadata parser package for ComfyUI-Lora-Manager."""
|
|
|
|
from .base import RecipeMetadataParser
|
|
from .factory import RecipeParserFactory
|
|
from .constants import GEN_PARAM_KEYS, VALID_LORA_TYPES
|
|
from .parsers import (
|
|
RecipeFormatParser,
|
|
ComfyMetadataParser,
|
|
MetaFormatParser,
|
|
AutomaticMetadataParser,
|
|
CivitaiApiMetadataParser
|
|
)
|
|
|
|
__all__ = [
|
|
'RecipeMetadataParser',
|
|
'RecipeParserFactory',
|
|
'GEN_PARAM_KEYS',
|
|
'VALID_LORA_TYPES',
|
|
'RecipeFormatParser',
|
|
'ComfyMetadataParser',
|
|
'MetaFormatParser',
|
|
'AutomaticMetadataParser',
|
|
'CivitaiApiMetadataParser'
|
|
]
|