Update chatbot.py
Browse files- chatbot.py +1 -1
chatbot.py
CHANGED
@@ -76,4 +76,4 @@ def demo_chain(input_text):
|
|
76 |
)
|
77 |
|
78 |
chat_reply = conversation.invoke(input=input_text, max_new_tokens = 100)
|
79 |
-
return chat_reply[
|
|
|
76 |
)
|
77 |
|
78 |
chat_reply = conversation.invoke(input=input_text, max_new_tokens = 100)
|
79 |
+
return chat_reply['response']
|