Update chatbot.py
Browse files- chatbot.py +1 -1
chatbot.py
CHANGED
@@ -70,7 +70,7 @@ def demo_chain(input_text, memory):
|
|
70 |
prompt=PROMPT,
|
71 |
llm=llm,
|
72 |
verbose=langchain.globals.get_verbose(),
|
73 |
-
|
74 |
)
|
75 |
|
76 |
chat_reply = conversation.predict(input=input_text)
|
|
|
70 |
prompt=PROMPT,
|
71 |
llm=llm,
|
72 |
verbose=langchain.globals.get_verbose(),
|
73 |
+
memory=memory
|
74 |
)
|
75 |
|
76 |
chat_reply = conversation.predict(input=input_text)
|