vishwask commited on
Commit
e28982d
·
verified ·
1 Parent(s): 3d27061

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
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
- result = qa_chain(hindi_to_english(prompt))
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():