chatbotflask / main.py
Arafath10's picture
Update main.py
ecc8582 verified
raw
history blame contribute delete
415 Bytes
#from chatbot import chatbot
from flask import Flask, render_template, request
app = Flask(__name__)
app.static_folder = 'static'
@app.route("/")
def home():
return render_template("index.html")
@app.route("/get")
def get_bot_response():
userText = request.args.get('msg')
#return str(chatbot.get_response(userText))
return "hi this is sample response"
if __name__ == "__main__":
app.run()