Skip to content

Commit f7cfbd1

Browse files
RyanJDickpsychedelicious
authored andcommitted
Add FLUX Fill starter model.
1 parent 2806b60 commit f7cfbd1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

invokeai/backend/model_manager/starter_models.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,16 @@ class StarterModelBundles(BaseModel):
624624
)
625625
# endregion
626626

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+
627637
# List of starter models, displayed on the frontend.
628638
# The order/sort of this list is not changed by the frontend - set it how you want it here.
629639
STARTER_MODELS: list[StarterModel] = [
@@ -694,6 +704,7 @@ class StarterModelBundles(BaseModel):
694704
siglip,
695705
flux_redux,
696706
llava_onevision,
707+
flux_fill,
697708
]
698709

699710
sd1_bundle: list[StarterModel] = [
@@ -742,6 +753,7 @@ class StarterModelBundles(BaseModel):
742753
flux_canny_control_lora,
743754
flux_depth_control_lora,
744755
flux_redux,
756+
flux_fill,
745757
]
746758

747759
STARTER_BUNDLES: dict[str, list[StarterModel]] = {

0 commit comments

Comments
 (0)