Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,7 @@ from page1 import text
|
|
4 |
from page2 import image
|
5 |
from page3 import details
|
6 |
from page4 import sdxl
|
|
|
7 |
|
8 |
def main():
|
9 |
|
@@ -11,8 +12,8 @@ def main():
|
|
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,6 +28,8 @@ def main():
|
|
27 |
|
28 |
elif selection == "Image Creator":
|
29 |
sdxl()
|
|
|
|
|
30 |
|
31 |
|
32 |
|
|
|
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 |
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 |
|
29 |
elif selection == "Image Creator":
|
30 |
sdxl()
|
31 |
+
elif selection == "AUTOMATIC1111":
|
32 |
+
a1111()
|
33 |
|
34 |
|
35 |
|