AI-Compilations / app.py
arcsu1's picture
first commit
3d6de05
raw
history blame contribute delete
328 Bytes
from flask import Flask, render_template, request, jsonify, Response
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
@app.route('/chatbot', methods=['GET'])
def chatbot():
return render_template('chatbot.html')
if __name__ == '__main__':
app.run(debug=True)