nolo99 commited on
Commit
d072276
1 Parent(s): 967b746

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -132,7 +132,8 @@ def main():
132
 
133
  user_question = st.text_input("Adelante pregunta")
134
  if user_question:
135
- handle_userinput(user_question)
 
136
 
137
 
138
 
 
132
 
133
  user_question = st.text_input("Adelante pregunta")
134
  if user_question:
135
+ with st.spinner("Procesando respuesta"):
136
+ handle_userinput(user_question)
137
 
138
 
139