Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -51,10 +51,11 @@ except:
|
|
51 |
|
52 |
# Sidebar allows a list of past chats
|
53 |
with st.sidebar:
|
54 |
-
#
|
55 |
-
st.
|
56 |
-
|
57 |
-
|
|
|
58 |
st.write('# Past Chats')
|
59 |
if st.session_state.get('chat_id') is None:
|
60 |
st.session_state.chat_id = st.selectbox(
|
|
|
51 |
|
52 |
# Sidebar allows a list of past chats
|
53 |
with st.sidebar:
|
54 |
+
# Centrar el logo y eliminar el título de RoboCopy
|
55 |
+
col1, col2, col3 = st.columns([1, 2, 1])
|
56 |
+
with col2:
|
57 |
+
st.image("assets/robocopy_logo.png", width=200)
|
58 |
+
|
59 |
st.write('# Past Chats')
|
60 |
if st.session_state.get('chat_id') is None:
|
61 |
st.session_state.chat_id = st.selectbox(
|