mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-07-21 21:01:24 +08:00
11 lines
273 B
Python
11 lines
273 B
Python
from typing import Final
|
|
|
|
always_disabled_extensions: Final[list[str]] = [
|
|
"sd-webui-controlnet",
|
|
"multidiffusion-upscaler-for-automatic1111",
|
|
]
|
|
|
|
prefer_official_extensions: Final[dict[str, str]] = {
|
|
"ADetailer": "https://github.com/Haoming02/ADetailer-Neo",
|
|
}
|