Spaces:
Paused
Paused
#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)) | |
return "hi this is sample response" | |
if __name__ == "__main__": | |
app.run() |