nruto commited on
Commit
eaa425b
·
verified ·
1 Parent(s): 8d6fb92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -13,7 +13,8 @@ def respond(
13
  ):
14
  # Check for specific questions and provide predefined answers
15
  if message.lower() == "who created this chat bot":
16
- return "This chatbot was created by khellon patel (naruto)."
 
17
 
18
  messages = [{"role": "system", "content": system_message}]
19
 
 
13
  ):
14
  # Check for specific questions and provide predefined answers
15
  if message.lower() == "who created this chat bot":
16
+ print("Specific question detected: 'Who created this chat bot'")
17
+ return "This chatbot was created by Khellon Patel (naruto)."
18
 
19
  messages = [{"role": "system", "content": system_message}]
20