JairoCesar commited on
Commit
415eeba
·
verified ·
1 Parent(s): 28a4514

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -166,6 +166,12 @@ def search_with_gemini(query, event_list):
166
  st.title("👨‍⚕️ Buscador inteligente en Notificación SIVIGILA - Colombia")
167
  st.markdown("Busque una enfermedad por nombre, sinónimo, código CIE-10 o CIE-11 para obtener información de notificación.")
168
 
 
 
 
 
 
 
169
  if 'search_results' not in st.session_state:
170
  st.session_state.search_results = None
171
  if 'last_query' not in st.session_state:
 
166
  st.title("👨‍⚕️ Buscador inteligente en Notificación SIVIGILA - Colombia")
167
  st.markdown("Busque una enfermedad por nombre, sinónimo, código CIE-10 o CIE-11 para obtener información de notificación.")
168
 
169
+ col1, col2, col3 = st.columns([1, 2, 1]) # Columnas para centrar la imagen
170
+ with col2:
171
+ st.image("buho.png", width=150) # Ajusta el ancho (width) a tu gusto
172
+
173
+
174
+
175
  if 'search_results' not in st.session_state:
176
  st.session_state.search_results = None
177
  if 'last_query' not in st.session_state: