mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -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.
16 lines
412 B
Python
16 lines
412 B
Python
"""Recipe parsers package."""
|
|
|
|
from .recipe_format import RecipeFormatParser
|
|
from .comfy import ComfyMetadataParser
|
|
from .meta_format import MetaFormatParser
|
|
from .automatic import AutomaticMetadataParser
|
|
from .civitai_image import CivitaiApiMetadataParser
|
|
|
|
__all__ = [
|
|
'RecipeFormatParser',
|
|
'ComfyMetadataParser',
|
|
'MetaFormatParser',
|
|
'AutomaticMetadataParser',
|
|
'CivitaiApiMetadataParser',
|
|
]
|