diff --git a/invokeai/backend/model_manager/starter_models.py b/invokeai/backend/model_manager/starter_models.py index 31b16d9c8a..947ae47fed 100644 --- a/invokeai/backend/model_manager/starter_models.py +++ b/invokeai/backend/model_manager/starter_models.py @@ -294,8 +294,8 @@ STARTER_MODELS: list[StarterModel] = [ StarterModel( name="canny-sdxl", base=BaseModelType.StableDiffusionXL, - source="diffusers/controlnet-canny-sdxl-1.0", - description="Controlnet weights trained on sdxl-1.0 with canny conditioning.", + source="xinsir/controlnet-canny-sdxl-1.0", + description="Controlnet weights trained on sdxl-1.0 with canny conditioning, by Xinsir.", type=ModelType.ControlNet, ), StarterModel( @@ -326,6 +326,20 @@ STARTER_MODELS: list[StarterModel] = [ description="Controlnet weights trained on sdxl-1.0 with Zoe's preprocessor (32 bits).", type=ModelType.ControlNet, ), + StarterModel( + name="controlnet-openpose-sdxl", + base=BaseModelType.StableDiffusionXL, + source="xinsir/controlnet-openpose-sdxl-1.0", + description="Controlnet weights trained on sdxl-1.0 compatible with the DWPose processor.", + type=ModelType.ControlNet, + ), + StarterModel( + name="controlnet-scribble-sdxl", + base=BaseModelType.StableDiffusionXL, + source="xinsir/controlnet-scribble-sdxl-1.0", + description="Controlnet weights trained on sdxl-1.0 compatible with various lineart processors and black/white sketches.", + type=ModelType.ControlNet, + ), # endregion # region T2I Adapter StarterModel(