From b88fba01a9d2e2a60a08a4b0ac5300807b0df290 Mon Sep 17 00:00:00 2001 From: forzayt Date: Wed, 15 Apr 2026 22:08:45 +0530 Subject: [PATCH] chore: update stable diffusion repository URL to nlile fork The original Stability-AI repository may be unavailable or problematic. Switch to the nlile fork to ensure reliable dependency fetching. --- modules/launch_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/launch_utils.py b/modules/launch_utils.py index 20c7dc127..35da6623d 100644 --- a/modules/launch_utils.py +++ b/modules/launch_utils.py @@ -346,7 +346,7 @@ def prepare_environment(): openclip_package = os.environ.get('OPENCLIP_PACKAGE', "https://github.com/mlfoundations/open_clip/archive/bb6e834e9c70d9c27d0dc3ecedeebeaeb1ffad6b.zip") assets_repo = os.environ.get('ASSETS_REPO', "https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets.git") - stable_diffusion_repo = os.environ.get('STABLE_DIFFUSION_REPO', "https://github.com/Stability-AI/stablediffusion.git") + stable_diffusion_repo = os.environ.get('STABLE_DIFFUSION_REPO', "https://github.com/nlile/stablediffusion.git") stable_diffusion_xl_repo = os.environ.get('STABLE_DIFFUSION_XL_REPO', "https://github.com/Stability-AI/generative-models.git") k_diffusion_repo = os.environ.get('K_DIFFUSION_REPO', 'https://github.com/crowsonkb/k-diffusion.git') blip_repo = os.environ.get('BLIP_REPO', 'https://github.com/salesforce/BLIP.git')