Update app.py
Browse files
app.py
CHANGED
@@ -48,6 +48,9 @@ def chatbot_response(user_message):
|
|
48 |
|
49 |
global chat_history_ids
|
50 |
global bot_input_ids
|
|
|
|
|
|
|
51 |
# Check if the user input is a question
|
52 |
is_question = "?" in user_message
|
53 |
|
|
|
48 |
|
49 |
global chat_history_ids
|
50 |
global bot_input_ids
|
51 |
+
|
52 |
+
print("chat: " + chat_history_ids)
|
53 |
+
print("bot: " + bot_input_ids)
|
54 |
# Check if the user input is a question
|
55 |
is_question = "?" in user_message
|
56 |
|