broadfield commited on
Commit
e98e451
·
verified ·
1 Parent(s): fc796f8

Adding file test: ./main_chatbot.py

Browse files
Files changed (1) hide show
  1. main_chatbot.py +7 -0
main_chatbot.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # main_chatbot.py
2
+
3
+ def greet():
4
+ return "Hello! How can I assist you today?"
5
+
6
+ if __name__ == "__main__":
7
+ print(greet())