anshupatel4298 commited on
Commit
1143014
·
verified ·
1 Parent(s): 7e111a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,7 +11,7 @@ import time
11
  nltk.download('punkt')
12
  nltk.download('wordnet')
13
 
14
- app = Flask(__name__) # Corrected from _name_ to __name__
15
 
16
  # Set up logging
17
  logging.basicConfig(level=logging.DEBUG)
@@ -99,4 +99,5 @@ def chatbot_response(user_message):
99
  return res
100
 
101
  if __name__ == "__main__":
 
102
  app.run(host='0.0.0.0', port=5000, debug=False) # Ensure it's running on all interfaces
 
11
  nltk.download('punkt')
12
  nltk.download('wordnet')
13
 
14
+ app = Flask(__name__)
15
 
16
  # Set up logging
17
  logging.basicConfig(level=logging.DEBUG)
 
99
  return res
100
 
101
  if __name__ == "__main__":
102
+ # Run the app on all interfaces
103
  app.run(host='0.0.0.0', port=5000, debug=False) # Ensure it's running on all interfaces