Spaces:
Sleeping
Sleeping
from flask import Flask, render_template, request, jsonify, Response | |
app = Flask(__name__) | |
def index(): | |
return render_template('index.html') | |
def chatbot(): | |
return render_template('chatbot.html') | |
if __name__ == '__main__': | |
app.run(debug=True) |