File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
invokeai/backend/model_manager Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -624,6 +624,16 @@ class StarterModelBundles(BaseModel):
624
624
)
625
625
# endregion
626
626
627
+ # region FLUX Fill
628
+ flux_fill = StarterModel (
629
+ name = "FLUX Fill" ,
630
+ base = BaseModelType .Flux ,
631
+ source = "black-forest-labs/FLUX.1-Fill-dev::flux1-fill-dev.safetensors" ,
632
+ description = "FLUX Fill model (for inpainting)." ,
633
+ type = ModelType .Main ,
634
+ )
635
+ # endregion
636
+
627
637
# List of starter models, displayed on the frontend.
628
638
# The order/sort of this list is not changed by the frontend - set it how you want it here.
629
639
STARTER_MODELS : list [StarterModel ] = [
@@ -694,6 +704,7 @@ class StarterModelBundles(BaseModel):
694
704
siglip ,
695
705
flux_redux ,
696
706
llava_onevision ,
707
+ flux_fill ,
697
708
]
698
709
699
710
sd1_bundle : list [StarterModel ] = [
@@ -742,6 +753,7 @@ class StarterModelBundles(BaseModel):
742
753
flux_canny_control_lora ,
743
754
flux_depth_control_lora ,
744
755
flux_redux ,
756
+ flux_fill ,
745
757
]
746
758
747
759
STARTER_BUNDLES : dict [str , list [StarterModel ]] = {
You can’t perform that action at this time.
0 commit comments