mirror of
https://github.com/vladmandic/automatic
synced 2026-09-20 01:31:13 +02:00
feat(model): register minimax h3 as a text2image base model
Reference entries for the bf16 repo and the sdnq uint4 quant load the modular pipeline through the standard dispatch. Image tabs run the model in still mode with audio off; the video tab keeps its own overrides through the shared per-generation hook. Detailer is not supported and is disabled with a warning.
This commit is contained in:
@@ -493,6 +493,10 @@ def load_diffuser_force(detected_model_type: str, checkpoint_info: CheckpointInf
|
||||
from pipelines.model_wanai import load_wan
|
||||
sd_model = load_wan(checkpoint_info, diffusers_load_config)
|
||||
allow_post_quant = False
|
||||
elif model_type in ['MiniMaxH3']:
|
||||
from pipelines.model_minimax import load_minimax
|
||||
sd_model = load_minimax(checkpoint_info, diffusers_load_config)
|
||||
allow_post_quant = False
|
||||
elif model_type in ['ChronoEdit']:
|
||||
from pipelines.model_chrono import load_chrono
|
||||
sd_model = load_chrono(checkpoint_info, diffusers_load_config)
|
||||
|
||||
Reference in New Issue
Block a user