Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
import os
|
2 |
import streamlit as st
|
3 |
import json
|
4 |
import requests
|
@@ -10,7 +9,7 @@ from PIL import Image
|
|
10 |
st.set_page_config(
|
11 |
page_title="GnosticDev AI",
|
12 |
page_icon="馃",
|
13 |
-
layout="
|
14 |
initial_sidebar_state="expanded",
|
15 |
)
|
16 |
|
@@ -20,7 +19,7 @@ selected = option_menu(
|
|
20 |
options=["System Prompt", "Chatbot", "Image Captioning"],
|
21 |
icons=["gear", "chat", "camera"],
|
22 |
default_index=0,
|
23 |
-
orientation="vertical" #
|
24 |
)
|
25 |
|
26 |
# Inicializar el estado de la sesi贸n
|
|
|
|
|
1 |
import streamlit as st
|
2 |
import json
|
3 |
import requests
|
|
|
9 |
st.set_page_config(
|
10 |
page_title="GnosticDev AI",
|
11 |
page_icon="馃",
|
12 |
+
layout="wide", # Aseg煤rate de que el layout sea 'wide'
|
13 |
initial_sidebar_state="expanded",
|
14 |
)
|
15 |
|
|
|
19 |
options=["System Prompt", "Chatbot", "Image Captioning"],
|
20 |
icons=["gear", "chat", "camera"],
|
21 |
default_index=0,
|
22 |
+
orientation="vertical" # Aseg煤rate de que est茅 en vertical
|
23 |
)
|
24 |
|
25 |
# Inicializar el estado de la sesi贸n
|