Skip to content

Commit d1439aa

Browse files
committed
Add extra model paths
1 parent 2f89716 commit d1439aa

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ __pycache__/
66
/models/
77
/temp/
88
!custom_nodes/example_node.py.example
9-
extra_model_paths.yaml
109
/.vs
1110
.idea/
1211
venv/

extra_model_paths.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#Rename this to extra_model_paths.yaml and ComfyUI will load it
2+
3+
4+
#config for a1111 ui
5+
#all you have to do is change the base_path to where yours is installed
6+
a111:
7+
base_path: path/to/stable-diffusion-webui/
8+
9+
checkpoints: models/Stable-diffusion
10+
configs: models/Stable-diffusion
11+
vae: models/VAE
12+
loras: |
13+
models/Lora
14+
models/LyCORIS
15+
upscale_models: |
16+
models/ESRGAN
17+
models/RealESRGAN
18+
models/SwinIR
19+
embeddings: embeddings
20+
hypernetworks: models/hypernetworks
21+
controlnet: models/ControlNet
22+
23+
#config for comfyui
24+
#your base path should be either an existing comfy install or a central folder where you store all of your models, loras, etc.
25+
26+
#comfyui:
27+
# base_path: path/to/comfyui/
28+
# checkpoints: models/checkpoints/
29+
# clip: models/clip/
30+
# clip_vision: models/clip_vision/
31+
# configs: models/configs/
32+
# controlnet: models/controlnet/
33+
# embeddings: models/embeddings/
34+
# loras: models/loras/
35+
# upscale_models: models/upscale_models/
36+
# vae: models/vae/
37+
38+
other_ui:
39+
base_path: /dlabscratch1/wendler/models/sdxl-turbo
40+
checkpoints: ./
41+
#vae: models/vae
42+
#gligen: models/gligen
43+
#custom_nodes: path/custom_nodes

0 commit comments

Comments
 (0)