soiz1 commited on
Commit
de32864
·
verified ·
1 Parent(s): 8facdeb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +45 -0
app.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import subprocess
3
+
4
+ HF_TOKEN = os.getenv("HF_TOKEN")
5
+ HEADERS = f'--header="Authorization: Bearer {HF_TOKEN}"'
6
+ BASE_URLS = {
7
+ "text_encoder": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/text_encoder/",
8
+ "clip": "https://huggingface.co/openai/clip-vit-large-patch14/resolve/main/",
9
+ "stable_diffusion": "https://huggingface.co/stabilityai/stable-diffusion-3.5-large/resolve/main/"
10
+ }
11
+
12
+ FILES = {
13
+ "text_encoder": [
14
+ "model.fp16.safetensors",
15
+ "model.safetensors"
16
+ ],
17
+ "clip": [
18
+ "model.safetensors"
19
+ ],
20
+ "stable_diffusion": [
21
+ "sd3.5_large.safetensors"
22
+ ]
23
+ }
24
+
25
+ DOWNLOAD_PATHS = {
26
+ "text_encoder": "models/text_encoder",
27
+ "clip": "models/clip",
28
+ "stable_diffusion": "models/Stable-diffusion"
29
+ }
30
+
31
+ def download_models():
32
+ for category, files in FILES.items():
33
+ path = os.path.join("/stable-diffusion-webui-forge", DOWNLOAD_PATHS[category])
34
+ os.makedirs(path, exist_ok=True)
35
+ for file in files:
36
+ url = BASE_URLS[category] + file
37
+ command = f'wget {HEADERS} -O {os.path.join(path, file)} {url}'
38
+ print(f"Downloading {file} to {path}")
39
+ subprocess.run(command, shell=True, check=True)
40
+
41
+ if __name__ == "__main__":
42
+ print("Starting model download...")
43
+ download_models()
44
+ print("Download completed. Launching WebUI...")
45
+ subprocess.run(["python3", "launch.py", "--share", "--disable-torch-cuda"])