Add FLUX Fill starter model.

This commit is contained in:
Ryan Dick
2025-03-04 20:08:17 +00:00
committed by psychedelicious
parent 2806b60701
commit f7cfbd1323

View File

@@ -624,6 +624,16 @@ llava_onevision = StarterModel(
)
# endregion
# region FLUX Fill
flux_fill = StarterModel(
name="FLUX Fill",
base=BaseModelType.Flux,
source="black-forest-labs/FLUX.1-Fill-dev::flux1-fill-dev.safetensors",
description="FLUX Fill model (for inpainting).",
type=ModelType.Main,
)
# endregion
# List of starter models, displayed on the frontend.
# The order/sort of this list is not changed by the frontend - set it how you want it here.
STARTER_MODELS: list[StarterModel] = [
@@ -694,6 +704,7 @@ STARTER_MODELS: list[StarterModel] = [
siglip,
flux_redux,
llava_onevision,
flux_fill,
]
sd1_bundle: list[StarterModel] = [
@@ -742,6 +753,7 @@ flux_bundle: list[StarterModel] = [
flux_canny_control_lora,
flux_depth_control_lora,
flux_redux,
flux_fill,
]
STARTER_BUNDLES: dict[str, list[StarterModel]] = {