Spaces:
Sleeping
Sleeping
Bug Fix
Browse files
app.py
CHANGED
@@ -575,7 +575,7 @@ def set_chains(ss: SessionState, summarization_mode) -> SessionState:
|
|
575 |
ss.conversation_chain = ConversationChain(
|
576 |
llm = ss.llm,
|
577 |
prompt = chat_prompt,
|
578 |
-
|
579 |
input_key = "query",
|
580 |
output_key = "output_text",
|
581 |
verbose = True,
|
|
|
575 |
ss.conversation_chain = ConversationChain(
|
576 |
llm = ss.llm,
|
577 |
prompt = chat_prompt,
|
578 |
+
memory = ss.memory,
|
579 |
input_key = "query",
|
580 |
output_key = "output_text",
|
581 |
verbose = True,
|