Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -90,9 +90,9 @@ def get_conversational_chain():
|
|
90 |
|
91 |
def extract_metadata(vector_store):
|
92 |
metadata_questions = {
|
93 |
-
"title": "¿
|
94 |
"entity": "¿A qué entidad u organización pertenece este documento?",
|
95 |
-
"date": "¿
|
96 |
}
|
97 |
|
98 |
metadata = {}
|
@@ -199,13 +199,13 @@ def main():
|
|
199 |
botones_rapidos = st.columns(3)
|
200 |
with botones_rapidos[0]:
|
201 |
if st.form_submit_button("📝 Resumen ejecutivo"):
|
202 |
-
user_question = "
|
203 |
with botones_rapidos[1]:
|
204 |
if st.form_submit_button("🏛️ Entidad relacionada"):
|
205 |
user_question = "¿A qué organización o entidad pertenece este documento?"
|
206 |
with botones_rapidos[2]:
|
207 |
if st.form_submit_button("📅 Fechas clave"):
|
208 |
-
user_question = "
|
209 |
|
210 |
if user_question and enviar:
|
211 |
procesar_consulta(user_question)
|
|
|
90 |
|
91 |
def extract_metadata(vector_store):
|
92 |
metadata_questions = {
|
93 |
+
"title": "¿Cual es o podría ser el título del documento?",
|
94 |
"entity": "¿A qué entidad u organización pertenece este documento?",
|
95 |
+
"date": "¿En qué fecha se implantará el contenido del documento? Si no se especifica ninguna, responde 'No se especifica'"
|
96 |
}
|
97 |
|
98 |
metadata = {}
|
|
|
199 |
botones_rapidos = st.columns(3)
|
200 |
with botones_rapidos[0]:
|
201 |
if st.form_submit_button("📝 Resumen ejecutivo"):
|
202 |
+
user_question = "¿Cual es o podría ser el título del documento?"
|
203 |
with botones_rapidos[1]:
|
204 |
if st.form_submit_button("🏛️ Entidad relacionada"):
|
205 |
user_question = "¿A qué organización o entidad pertenece este documento?"
|
206 |
with botones_rapidos[2]:
|
207 |
if st.form_submit_button("📅 Fechas clave"):
|
208 |
+
user_question = "¿En qué fecha se implantará el contenido del documento? Si no se especifica ninguna, responde 'No se especifica'
|
209 |
|
210 |
if user_question and enviar:
|
211 |
procesar_consulta(user_question)
|