Update app.py
Browse files
app.py
CHANGED
@@ -34,6 +34,7 @@ def wiki(name):
|
|
34 |
return out
|
35 |
|
36 |
def greet(name):
|
|
|
37 |
if "who are you" in name or "what is you" in name or "your name" in name or"who r u" in name:
|
38 |
|
39 |
return "Im Ai Based Chatbot Created by ssebowa.org"
|
|
|
34 |
return out
|
35 |
|
36 |
def greet(name):
|
37 |
+
name = name.lower()
|
38 |
if "who are you" in name or "what is you" in name or "your name" in name or"who r u" in name:
|
39 |
|
40 |
return "Im Ai Based Chatbot Created by ssebowa.org"
|