mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-23 22:22:11 -03:00
Update prompt configuration and enhance Lora management functionality
- Expanded the prompt.json file with new configurations for KSampler, CheckpointLoaderSimple, and various CLIPTextEncode nodes. - Introduced additional Lora management features, including a new Lora Stacker and improved trigger word handling. - Enhanced the loras_widget.js to log the generated prompt when saving recipes directly, aiding in debugging and user feedback. - Improved overall structure and organization of the prompt configurations for better maintainability.
This commit is contained in:
14
py/workflow_params/__init__.py
Normal file
14
py/workflow_params/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# This package contains modules for workflow parameter extraction and processing
|
||||
from .workflow_parser import WorkflowParser, parse_workflow
|
||||
from .extension_manager import ExtensionManager, get_extension_manager
|
||||
from .node_processors import NodeProcessor, NODE_PROCESSORS, register_processor
|
||||
|
||||
__all__ = [
|
||||
"WorkflowParser",
|
||||
"parse_workflow",
|
||||
"ExtensionManager",
|
||||
"get_extension_manager",
|
||||
"NodeProcessor",
|
||||
"NODE_PROCESSORS",
|
||||
"register_processor"
|
||||
]
|
||||
Reference in New Issue
Block a user