Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,6 +33,13 @@ def get_chain(db):
|
|
33 |
llm,db.as_retriever (search_kwargs={'k':2}),return_source_documents=True)
|
34 |
return qa_chain
|
35 |
####################################################################################################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
def main():
|
37 |
st.set_page_config(
|
38 |
page_title="Chat Bot PDFs",
|
@@ -51,6 +58,7 @@ def main():
|
|
51 |
|
52 |
if st.button("Answer"):
|
53 |
with st.spinner("Answering"):
|
|
|
54 |
|
55 |
|
56 |
#if st.button("CLEAR"):
|
|
|
33 |
llm,db.as_retriever (search_kwargs={'k':2}),return_source_documents=True)
|
34 |
return qa_chain
|
35 |
####################################################################################################################
|
36 |
+
def get_conversation(query_user):
|
37 |
+
chat_history=[]
|
38 |
+
query_1="این سوال را به زبان فارسی تشریح کن:"
|
39 |
+
query=query_1+query_user
|
40 |
+
result= qa_chain({'question': query, 'chat_history': chat_history})
|
41 |
+
st.write('Answer of you question:' +result['answer'] +'\n')
|
42 |
+
####################################################################################################################
|
43 |
def main():
|
44 |
st.set_page_config(
|
45 |
page_title="Chat Bot PDFs",
|
|
|
58 |
|
59 |
if st.button("Answer"):
|
60 |
with st.spinner("Answering"):
|
61 |
+
get_conversation(query_user=user_question)
|
62 |
|
63 |
|
64 |
#if st.button("CLEAR"):
|