Update chatbot.py
Browse files- chatbot.py +1 -0
chatbot.py
CHANGED
@@ -66,6 +66,7 @@ def demo_miny_memory():
|
|
66 |
|
67 |
def demo_chain(input_text, memory):
|
68 |
conversation = ConversationChain(
|
|
|
69 |
llm=llm,
|
70 |
verbose=langchain.globals.get_verbose(),
|
71 |
history=memory
|
|
|
66 |
|
67 |
def demo_chain(input_text, memory):
|
68 |
conversation = ConversationChain(
|
69 |
+
prompt=PROMPT,
|
70 |
llm=llm,
|
71 |
verbose=langchain.globals.get_verbose(),
|
72 |
history=memory
|