ALVHB95 commited on
Commit
c35c4b6
·
1 Parent(s): 5a94802
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -104,7 +104,7 @@ qa_chain = ConversationalRetrievalChain.from_llm(
104
  get_chat_history = lambda h : h
105
  )
106
 
107
- def get_text_response(user_message,history):
108
  response = qa_chain.predict(user_message = user_message)
109
  return response
110
 
 
104
  get_chat_history = lambda h : h
105
  )
106
 
107
+ def qa_response(user_message,history):
108
  response = qa_chain.predict(user_message = user_message)
109
  return response
110