Spaces:
Runtime error
Runtime error
Update Copilot.py
Browse files- Copilot.py +3 -3
Copilot.py
CHANGED
|
@@ -10,16 +10,16 @@ def main():
|
|
| 10 |
with st.sidebar:
|
| 11 |
selection = option_menu(
|
| 12 |
menu_title="OpenCopilot",
|
| 13 |
-
options=["
|
| 14 |
icons=["house", "pencil", "chat", "image"],
|
| 15 |
-
menu_icon="bing",
|
| 16 |
default_index=0
|
| 17 |
)
|
| 18 |
|
| 19 |
if selection == "Vanilla Chat":
|
| 20 |
text()
|
| 21 |
|
| 22 |
-
elif selection == "
|
| 23 |
image()
|
| 24 |
|
| 25 |
elif selection == "Image Creator":
|
|
|
|
| 10 |
with st.sidebar:
|
| 11 |
selection = option_menu(
|
| 12 |
menu_title="OpenCopilot",
|
| 13 |
+
options=["Vanilla Chat", "Chat with Image", "Image Creator"],
|
| 14 |
icons=["house", "pencil", "chat", "image"],
|
| 15 |
+
menu_icon="bi bi-bing",
|
| 16 |
default_index=0
|
| 17 |
)
|
| 18 |
|
| 19 |
if selection == "Vanilla Chat":
|
| 20 |
text()
|
| 21 |
|
| 22 |
+
elif selection == "Vision Chat":
|
| 23 |
image()
|
| 24 |
|
| 25 |
elif selection == "Image Creator":
|