ali121300 commited on
Commit
9c636da
1 Parent(s): 01677ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -60,9 +60,10 @@ def main():
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
 
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
+ qa_chain=get_chain(db)
66
+ get_conversation(query_user=user_question,qa_chain=qa_chain)
67
 
68
 
69