Spaces:
Build error
Build error
| from chatbot import chatbot | |
| from flask import Flask, render_template, request | |
| app = Flask(__name__) | |
| app.static_folder = 'static' | |
| def home(): | |
| return render_template("index.html") | |
| def get_bot_response(): | |
| userText = request.args.get('msg') | |
| return str(chatbot.get_response(userText)) | |
| if __name__ == "__main__": | |
| app.run() |