mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 07:05:43 -03:00
- Add SuiImageParamsParser for sui_image_params JSON format - Register new parser in RecipeParserFactory - Fix metadata_provider auto-initialization when not ready - Add 10 test cases for SuiImageParamsParser Fixes batch import failure for images with sui_image_params metadata.
18 lines
491 B
Python
18 lines
491 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
|
|
from .sui_image_params import SuiImageParamsParser
|
|
|
|
__all__ = [
|
|
'RecipeFormatParser',
|
|
'ComfyMetadataParser',
|
|
'MetaFormatParser',
|
|
'AutomaticMetadataParser',
|
|
'CivitaiApiMetadataParser',
|
|
'SuiImageParamsParser',
|
|
]
|