alphayomega commited on
Commit
994b773
1 Parent(s): d5126e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -11
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 título y enlaces
14
  st.markdown(
15
  """
16
  <style>
17
  .menu-container {
18
  padding: 20px;
19
- background-color: #f4f4f4;
20
  border-bottom: 1px solid #e1e1e1;
21
  }
22
  .menu-title {
@@ -51,15 +51,8 @@ st.markdown(
51
  unsafe_allow_html=True
52
  )
53
 
54
- def icon(emoji: str):
55
- """Muestra un emoji como ícono de página estilo Notion."""
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(