Update app.py
Browse files
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 |
|