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:
CalamitousFelicitousness
2026-08-07 02:08:06 +01:00
parent c9e1398c71
commit 6375b42ff7
8 changed files with 63 additions and 1 deletions
+4
View File
@@ -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)