llamaChatBot / app.py
Th3BossC's picture
initial commit
23d152f
raw
history blame
260 Bytes
from chatBot import create_app
from threading import Thread
from flask import render_template
app = create_app()
@app.route('/home')
def index():
return render_template('layout.html')
def run():
app.run(host='0.0.0.0', port=7860, debug=False)
run()