datafreak commited on
Commit
5eaa060
·
verified ·
1 Parent(s): aa75b87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ final_prompt = ChatPromptTemplate.from_messages(
55
 
56
  chain = final_prompt | chat
57
 
58
- def response(text):
59
  answer = chain.invoke(text)
60
  return answer.content
61
 
 
55
 
56
  chain = final_prompt | chat
57
 
58
+ def response(text, history):
59
  answer = chain.invoke(text)
60
  return answer.content
61