ComfyUI_mittimiLoadPresetLite
This node can easily switch between models and prompts by saving presets.
Nodes (9)
Stitch two preset bundles into one
The checkpoint loader that takes orders from another node
Load an image and get its recipe back
Your whole generation behind one dropdown
Name:0.8> into your prompt and it just works
The LoRA loader that skips the CLIP
Save PNGs with the whole recipe baked in — and CivitAI will read it
Turn your current settings into a reusable preset
> tags handled for you
ComfyUI_mittimiLoadPresetLite
For basic usage instructions, please see here. https://github.com/mittimi/ComfyUI_mittimiLoadPreset2
The differences from the above should be clear if you review the sample workflow.
=== note ===
If RES4LYF is installed, it will not function properly. Adding the last three lines of the following code to RES4LYF's init.py will restore normal operation.
new_scheduler_name = "bong_tangent"
if new_scheduler_name not in SCHEDULER_HANDLERS:
bong_tangent_handler = SchedulerHandler(handler=sigmas.bong_tangent_scheduler, use_ms=True)
SCHEDULER_HANDLERS[new_scheduler_name] = bong_tangent_handler
SCHEDULER_NAMES.append(new_scheduler_name)
new_scheduler_name = "beta57"
if new_scheduler_name not in SCHEDULER_NAMES:
SCHEDULER_NAMES.append(new_scheduler_name)
The source is as follows. https://github.com/ClownsharkBatwing/RES4LYF/issues/161