Spaces:
Runtime error
Runtime error
Upload 10 files
Browse files
app.py
CHANGED
@@ -53,11 +53,6 @@ except:
|
|
53 |
|
54 |
# Sidebar allows a list of past chats
|
55 |
with st.sidebar:
|
56 |
-
# Centrar el logo y eliminar el título de RoboCopy
|
57 |
-
col1, col2, col3 = st.columns([1, 2, 1])
|
58 |
-
with col2:
|
59 |
-
st.image("assets/robocopy_logo.png", width=300)
|
60 |
-
|
61 |
st.write('# Chats Anteriores')
|
62 |
if st.session_state.get('chat_id') is None:
|
63 |
st.session_state.chat_id = st.selectbox(
|
@@ -108,12 +103,13 @@ for message in st.session_state.messages:
|
|
108 |
if not st.session_state.messages:
|
109 |
system_prompt = get_puv_system_prompt()
|
110 |
|
111 |
-
# Mostrar la carátula inicial
|
112 |
st.markdown("""
|
113 |
<div style='text-align: center; padding: 1rem 0;'>
|
|
|
114 |
<h1 style='font-size: 24px; margin-bottom: 0.5rem;'>💎 RoboCopy PUV Creator</h1>
|
115 |
<p style='font-size: 16px; color: white;'>By Jesús Cabrera</p>
|
116 |
-
<p style='font-size: 14px; background-color:
|
117 |
🎯 Experto en crear Propuestas de Valor Únicas que convierten audiencia en clientes
|
118 |
</p>
|
119 |
</div>
|
|
|
53 |
|
54 |
# Sidebar allows a list of past chats
|
55 |
with st.sidebar:
|
|
|
|
|
|
|
|
|
|
|
56 |
st.write('# Chats Anteriores')
|
57 |
if st.session_state.get('chat_id') is None:
|
58 |
st.session_state.chat_id = st.selectbox(
|
|
|
103 |
if not st.session_state.messages:
|
104 |
system_prompt = get_puv_system_prompt()
|
105 |
|
106 |
+
# Mostrar la carátula inicial con el logo centrado
|
107 |
st.markdown("""
|
108 |
<div style='text-align: center; padding: 1rem 0;'>
|
109 |
+
<img src="assets/robocopy_logo.png" width="300" style="margin-bottom: 20px;">
|
110 |
<h1 style='font-size: 24px; margin-bottom: 0.5rem;'>💎 RoboCopy PUV Creator</h1>
|
111 |
<p style='font-size: 16px; color: white;'>By Jesús Cabrera</p>
|
112 |
+
<p style='font-size: 14px; background-color: rgba(78, 205, 196, 0.1); padding: 8px; border-radius: 5px; margin-top: 10px; color: white;'>
|
113 |
🎯 Experto en crear Propuestas de Valor Únicas que convierten audiencia en clientes
|
114 |
</p>
|
115 |
</div>
|