ali121300 commited on
Commit
01677ee
·
verified ·
1 Parent(s): b56342f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -60,9 +60,8 @@ def main():
60
  st.write("vectore store")
61
  qa_chain=get_chain(db)
62
  st.write("compelete build model")
63
-
64
- if st.button("Answer"):
65
- with st.spinner("Answering"):
66
  get_conversation(query_user=user_question,qa_chain=qa_chain)
67
 
68
 
 
60
  st.write("vectore store")
61
  qa_chain=get_chain(db)
62
  st.write("compelete build model")
63
+ if st.button("Answer"):
64
+ with st.spinner("Answering"):
 
65
  get_conversation(query_user=user_question,qa_chain=qa_chain)
66
 
67