ehristoforu commited on
Commit
81b2d5f
·
verified ·
1 Parent(s): e7a64ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -4,7 +4,6 @@ from page1 import text
4
  from page2 import image
5
  from page3 import details
6
  from page4 import sdxl
7
- from page5 import a1111
8
 
9
  def main():
10
 
@@ -12,8 +11,8 @@ def main():
12
  with st.sidebar:
13
  selection = option_menu(
14
  menu_title="ForgeStudio",
15
- options=["Home", "Vanilla Chat", "Chat with Image", "Image Creator", "AUTOMATIC1111"],
16
- icons=["house", "pencil", "chat", "image", "computer"],
17
  menu_icon="cast",
18
  default_index=0
19
  )
@@ -28,8 +27,6 @@ def main():
28
 
29
  elif selection == "Image Creator":
30
  sdxl()
31
- elif selection == "AUTOMATIC1111":
32
- a1111()
33
 
34
 
35
 
 
4
  from page2 import image
5
  from page3 import details
6
  from page4 import sdxl
 
7
 
8
  def main():
9
 
 
11
  with st.sidebar:
12
  selection = option_menu(
13
  menu_title="ForgeStudio",
14
+ options=["Home", "Vanilla Chat", "Chat with Image", "Image Creator"],
15
+ icons=["house", "pencil", "chat", "image"],
16
  menu_icon="cast",
17
  default_index=0
18
  )
 
27
 
28
  elif selection == "Image Creator":
29
  sdxl()
 
 
30
 
31
 
32