I am using threaded=True in my python flask chatbot application and that's working fine with few people.
But, The real question is my chatbot is going to interact with thousands of people at the same time in that case is it enough to only use threaded=true in my application?
app = Flask(__name__)
if __name__ == "__main__":
app.run(threaded=True)