gustavogmoraes commited on
Commit
97ef44b
1 Parent(s): 21207c0
Files changed (2) hide show
  1. app.py +1 -1
  2. models/loras.py +8 -20
app.py CHANGED
@@ -91,7 +91,7 @@ for url in download_vae:
91
  CIVITAI_API_KEY
92
  )
93
 
94
- for url in [url.strip() for url in download_lora.split(',')]:
95
  if not os.path.exists(f"./loras/{url.split('/')[-1]}"):
96
  download_things(
97
  directory_loras,
 
91
  CIVITAI_API_KEY
92
  )
93
 
94
+ for url in download_lora:
95
  if not os.path.exists(f"./loras/{url.split('/')[-1]}"):
96
  download_things(
97
  directory_loras,
models/loras.py CHANGED
@@ -1,22 +1,10 @@
1
  LORA_LIST = (
2
- "https://civitai.com/api/download/models/553433, " # finger
3
- "https://civitai.com/api/download/models/50503, "
4
- "https://civitai.com/api/download/models/133160, "
5
- "https://civitai.com/api/download/models/29332, "
6
- "https://huggingface.co/Leopain/color/resolve/main/Coloring_book_-_LineArt.safetensors, "
7
- "https://civitai.com/api/download/models/135867, "
8
- "https://civitai.com/api/download/models/145907, "
9
- "https://huggingface.co/Linaqruf/anime-detailer-xl-lora/resolve/main/anime-detailer-xl.safetensors?download=true, "
10
- "https://huggingface.co/Linaqruf/style-enhancer-xl-lora/resolve/main/style-enhancer-xl.safetensors?download=true, "
11
- "https://civitai.com/api/download/models/28609, "
12
- "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SD15-8steps-CFG-lora.safetensors?download=true, "
13
- "https://huggingface.co/ByteDance/Hyper-SD/resolve/main/Hyper-SDXL-8steps-CFG-lora.safetensors?download=true, "
14
- "https://civitai.com/api/download/models/30666, "
15
- "https://civitai.com/api/download/models/134498, " # chibi https://civitai.com/models/123374/chibi-comic-style-q
16
- "https://civitai.com/api/download/models/162417, "
17
- "https://civitai.com/api/download/models/177277, "
18
- "https://civitai.com/api/download/models/263721, "
19
- "https://civitai.com/api/download/models/331598, "
20
- "https://civitai.com/api/download/models/416329, " # kobokanaeru
21
- "https://civitai.com/api/download/models/160240. " # all in one
22
  )
 
1
  LORA_LIST = (
2
+ "https://civitai.com/api/download/models/553433", # finger
3
+ "https://civitai.com/api/download/models/50503",
4
+ "https://civitai.com/api/download/models/133160",
5
+ "https://civitai.com/api/download/models/29332",
6
+ "https://huggingface.co/Leopain/color/resolve/main/Coloring_book_-_LineArt.safetensors",
7
+ "https://civitai.com/api/download/models/135867",
8
+ "https://civitai.com/api/download/models/145907",
9
+ "https://huggingface.co/Linaqruf/anime-detailer-xl"
 
 
 
 
 
 
 
 
 
 
 
 
10
  )