lozanopastor commited on
Commit
4522138
Β·
verified Β·
1 Parent(s): b516a1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,7 +15,6 @@ os.getenv("GROQ_API_KEY")
15
 
16
  css_style = """
17
  <style>
18
- .title {font-size: 50px; margin: 5px}
19
  .step-number { font-size: 24px; font-weight: bold; }
20
  .response-box { padding: 20px; background-color: #f8f9fa; border-radius: 10px; border-left: 5px solid #252850; margin: 20px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
21
  .metadata-box { padding: 20px; background-color: #f0f2f6; border-radius: 10px; margin-bottom: 20px; }
@@ -143,8 +142,9 @@ def procesar_consulta(user_question):
143
 
144
  def main():
145
  st.set_page_config(page_title="PDF Consultor πŸ”", page_icon="πŸ”", layout="wide")
146
- st.markdown('<h1 style="font-size:50px; margin:5px;">PDF Consultor πŸ”</p>', unsafe_allow_html=True)
147
  st.markdown(css_style, unsafe_allow_html=True)
 
 
148
 
149
  estados = {
150
  'documento_cargado': False,
 
15
 
16
  css_style = """
17
  <style>
 
18
  .step-number { font-size: 24px; font-weight: bold; }
19
  .response-box { padding: 20px; background-color: #f8f9fa; border-radius: 10px; border-left: 5px solid #252850; margin: 20px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
20
  .metadata-box { padding: 20px; background-color: #f0f2f6; border-radius: 10px; margin-bottom: 20px; }
 
142
 
143
  def main():
144
  st.set_page_config(page_title="PDF Consultor πŸ”", page_icon="πŸ”", layout="wide")
 
145
  st.markdown(css_style, unsafe_allow_html=True)
146
+ st.markdown('<h1 class="title">PDF Consultor πŸ”</h1>', unsafe_allow_html=True)
147
+
148
 
149
  estados = {
150
  'documento_cargado': False,