charliebaby2023 commited on
Commit
693724d
·
verified ·
1 Parent(s): 4b0b6eb

Update frontend/webui/ui.py

Browse files
Files changed (1) hide show
  1. 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
- # Start with the models you want to load (these could come from your config)
15
- model_list = ["model-a", "model-b", "model-c"]
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