Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -69,6 +69,7 @@ def get_conversation_chain(vectorstore:FAISS) -> ConversationalRetrievalChain:
|
|
69 |
|
70 |
|
71 |
def handle_userinput(user_question:str):
|
|
|
72 |
response = st.session_state.conversation({"question": user_question})
|
73 |
st.session_state.chat_history = response["chat_history"]
|
74 |
|
|
|
69 |
|
70 |
|
71 |
def handle_userinput(user_question:str):
|
72 |
+
import trs_en_to_fa
|
73 |
response = st.session_state.conversation({"question": user_question})
|
74 |
st.session_state.chat_history = response["chat_history"]
|
75 |
|