Skip to content

Commit 45cce47

Browse files
committed
new UI
1 parent ac54bc8 commit 45cce47

8 files changed

+538
-245
lines changed

app.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
def home():
1010
return render_template('index.html')
1111

12+
@app.route('/chatbot')
13+
def chatbot():
14+
return render_template('chatbot.html')
15+
1216
@app.route('/predict',methods=['POST'])
1317
def predict():
1418
if request.method == 'POST':
@@ -20,4 +24,4 @@ def predict():
2024

2125

2226
if __name__ == '__main__':
23-
app.run(host='0.0.0.0',port=5000)
27+
app.run(host='0.0.0.0',port=5000,debug=True)

static/img/Background.png

-75.2 KB
Loading

static/img/background-result.jpg

-4.24 MB
Binary file not shown.

static/img/background-result.png

1010 KB
Loading

static/img/joker2.mp4

206 KB
Binary file not shown.

0 commit comments

Comments
 (0)