Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
64 |
-
|
65 |
-
|
|
|
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 |
|