Spaces:
Runtime error
Runtime error
Update extra_model_paths.yaml.example
Browse files- extra_model_paths.yaml.example +20 -44
extra_model_paths.yaml.example
CHANGED
|
@@ -1,47 +1,23 @@
|
|
| 1 |
-
#
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
-
#
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
-
|
| 10 |
-
|
| 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 |
-
# # You can use is_default to mark that these folders should be listed first, and used as the default dirs for eg downloads
|
| 29 |
-
# #is_default: true
|
| 30 |
-
# checkpoints: models/checkpoints/
|
| 31 |
-
# clip: models/clip/
|
| 32 |
-
# clip_vision: models/clip_vision/
|
| 33 |
-
# configs: models/configs/
|
| 34 |
-
# controlnet: models/controlnet/
|
| 35 |
-
# diffusion_models: |
|
| 36 |
-
# models/diffusion_models
|
| 37 |
-
# models/unet
|
| 38 |
-
# embeddings: models/embeddings/
|
| 39 |
-
# loras: models/loras/
|
| 40 |
-
# upscale_models: models/upscale_models/
|
| 41 |
-
# vae: models/vae/
|
| 42 |
-
|
| 43 |
-
#other_ui:
|
| 44 |
-
# base_path: path/to/ui
|
| 45 |
-
# checkpoints: models/checkpoints
|
| 46 |
-
# gligen: models/gligen
|
| 47 |
-
# custom_nodes: path/custom_nodes
|
|
|
|
| 1 |
+
# ComfyUI model paths configuration
|
| 2 |
|
| 3 |
+
comfyui:
|
| 4 |
+
base_path: /home/user/app/
|
| 5 |
+
# Mark this folder as the default model directory
|
| 6 |
+
is_default: true
|
| 7 |
|
| 8 |
+
# Model directories (from your logs)
|
| 9 |
+
checkpoints: models/checkpoints/
|
| 10 |
+
clip: models/text_encoders/
|
| 11 |
+
clip_vision: models/text_encoders/
|
| 12 |
+
configs: models/configs/
|
| 13 |
+
controlnet: models/controlnet/
|
| 14 |
+
diffusion_models: |
|
| 15 |
+
models/diffusion_models
|
| 16 |
+
models/unet
|
| 17 |
+
embeddings: models/embeddings/
|
| 18 |
+
loras: models/lora/
|
| 19 |
+
upscale_models: models/upscale_models/
|
| 20 |
+
vae: models/vae/
|
| 21 |
|
| 22 |
+
# Custom nodes directory
|
| 23 |
+
custom_nodes: models/custom_nodes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|