Spaces:
Sleeping
Sleeping
alphayomega
commited on
Commit
•
994b773
1
Parent(s):
d5126e9
Update app.py
Browse files
app.py
CHANGED
@@ -10,13 +10,13 @@ _ = load_dotenv(find_dotenv())
|
|
10 |
# Configurar la página de Streamlit
|
11 |
st.set_page_config(page_icon="📃", layout="wide", page_title="Groq & LLaMA3.1 Chat Bot...")
|
12 |
|
13 |
-
# Menú superior con
|
14 |
st.markdown(
|
15 |
"""
|
16 |
<style>
|
17 |
.menu-container {
|
18 |
padding: 20px;
|
19 |
-
background-color:
|
20 |
border-bottom: 1px solid #e1e1e1;
|
21 |
}
|
22 |
.menu-title {
|
@@ -51,15 +51,8 @@ st.markdown(
|
|
51 |
unsafe_allow_html=True
|
52 |
)
|
53 |
|
54 |
-
|
55 |
-
|
56 |
-
st.write(
|
57 |
-
f'<span style="font-size: 78px; line-height: 1">{emoji}</span>',
|
58 |
-
unsafe_allow_html=True,
|
59 |
-
)
|
60 |
-
|
61 |
-
# Encabezado de la aplicación
|
62 |
-
st.subheader("Groq Chat with LLaMA3.1 App", divider="rainbow", anchor=False)
|
63 |
|
64 |
# Inicializar cliente Groq
|
65 |
client = Groq(
|
|
|
10 |
# Configurar la página de Streamlit
|
11 |
st.set_page_config(page_icon="📃", layout="wide", page_title="Groq & LLaMA3.1 Chat Bot...")
|
12 |
|
13 |
+
# Menú superior con fondo transparente
|
14 |
st.markdown(
|
15 |
"""
|
16 |
<style>
|
17 |
.menu-container {
|
18 |
padding: 20px;
|
19 |
+
background-color: transparent; /* Fondo transparente */
|
20 |
border-bottom: 1px solid #e1e1e1;
|
21 |
}
|
22 |
.menu-title {
|
|
|
51 |
unsafe_allow_html=True
|
52 |
)
|
53 |
|
54 |
+
# Rayita debajo del menú
|
55 |
+
st.markdown("<hr>", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
# Inicializar cliente Groq
|
58 |
client = Groq(
|