ArturG9 commited on
Commit
6eff0f4
1 Parent(s): 8afb4b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -85,6 +85,7 @@ def main(vectorstore):
85
 
86
  def handle_userinput(user_question,vectorstore):
87
  Rag_chain = create_conversational_rag_chain(vectorstore)
 
88
  response = Rag_chain.invoke(
89
  {"input": user_question},
90
 
 
85
 
86
  def handle_userinput(user_question,vectorstore):
87
  Rag_chain = create_conversational_rag_chain(vectorstore)
88
+ msgs = StreamlitChatMessageHistory(key="special_app_key")
89
  response = Rag_chain.invoke(
90
  {"input": user_question},
91