Update app.py
Browse files
app.py
CHANGED
@@ -179,11 +179,10 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
179 |
st.markdown(prompt)
|
180 |
with st.chat_message("assistant"):
|
181 |
with st.spinner(text="Looking for relevant answer"):
|
182 |
-
|
183 |
message_placeholder = st.empty()
|
184 |
full_response = ""
|
185 |
message_history = "\n".join(list(get_message_history())[-3:])
|
186 |
-
|
187 |
output = [result['result']]
|
188 |
|
189 |
def generate_pdf():
|
|
|
179 |
st.markdown(prompt)
|
180 |
with st.chat_message("assistant"):
|
181 |
with st.spinner(text="Looking for relevant answer"):
|
|
|
182 |
message_placeholder = st.empty()
|
183 |
full_response = ""
|
184 |
message_history = "\n".join(list(get_message_history())[-3:])
|
185 |
+
result = qa_chain(english_to_hindi(prompt))
|
186 |
output = [result['result']]
|
187 |
|
188 |
def generate_pdf():
|