Spaces:
Running
Running
Update frontend/webui/ui.py
Browse files- frontend/webui/ui.py +11 -5
frontend/webui/ui.py
CHANGED
@@ -9,11 +9,17 @@ from paths import FastStableDiffusionPaths
|
|
9 |
from state import get_settings
|
10 |
|
11 |
app_settings = get_settings()
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
def update_model_array(text_input):
|
18 |
model_list.append(text_input)
|
19 |
updated = model_list
|
|
|
9 |
from state import get_settings
|
10 |
|
11 |
app_settings = get_settings()
|
12 |
+
pony_models = [
|
13 |
+
"Lykon/Pony-Diffusion",
|
14 |
+
"andite/anything-v4.0",
|
15 |
+
"stablediffusionapi/pony-lcm-turbo",
|
16 |
+
]
|
17 |
+
standard_models = [
|
18 |
+
"runwayml/stable-diffusion-v1-5",
|
19 |
+
"stabilityai/stable-diffusion-2-1-base",
|
20 |
+
"SG161222/Realistic_Vision_V5.1_noVAE",
|
21 |
+
]
|
22 |
+
model_array = pony_models + standard_models
|
23 |
def update_model_array(text_input):
|
24 |
model_list.append(text_input)
|
25 |
updated = model_list
|