Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,8 @@ def converse(user_input, chat_history=[]):
|
|
20 |
# convert the tokens to text, and then split the responses into lines
|
21 |
response = chat_tkn.decode(chat_history[0]).split("<|endoftext|>")
|
22 |
#response.remove("")
|
23 |
-
print("response
|
|
|
24 |
|
25 |
# write some HTML
|
26 |
html = "<div class='chatbot'>"
|
|
|
20 |
# convert the tokens to text, and then split the responses into lines
|
21 |
response = chat_tkn.decode(chat_history[0]).split("<|endoftext|>")
|
22 |
#response.remove("")
|
23 |
+
print("starting to print response")
|
24 |
+
print(response)
|
25 |
|
26 |
# write some HTML
|
27 |
html = "<div class='chatbot'>"
|