anshupatel4298 commited on
Commit
861233d
·
verified ·
1 Parent(s): 488323e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -97,6 +97,6 @@ def chatbot_response(user_message):
97
  logging.debug(f"Final chatbot response: {res}")
98
  return res
99
 
100
- # Entry point for the WSGI server
101
- if _name_ == "_main_":
102
- app.run()
 
97
  logging.debug(f"Final chatbot response: {res}")
98
  return res
99
 
100
+
101
+ if __name__ == "__main__":
102
+ app.run(debug=True)