Skip to content

Commit

Permalink
Merge pull request #15 from MahiyaKhan/mahiya
Browse files Browse the repository at this point in the history
new UI
  • Loading branch information
AquibPy authored Jul 27, 2024
2 parents ac54bc8 + 45cce47 commit 2be81cd
Show file tree
Hide file tree
Showing 8 changed files with 538 additions and 245 deletions.
6 changes: 5 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
def home():
return render_template('index.html')

@app.route('/chatbot')
def chatbot():
return render_template('chatbot.html')

@app.route('/predict',methods=['POST'])
def predict():
if request.method == 'POST':
Expand All @@ -20,4 +24,4 @@ def predict():


if __name__ == '__main__':
app.run(host='0.0.0.0',port=5000)
app.run(host='0.0.0.0',port=5000,debug=True)
Binary file modified static/img/Background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/img/background-result.jpg
Binary file not shown.
Binary file added static/img/background-result.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/joker2.mp4
Binary file not shown.
Loading

0 comments on commit 2be81cd

Please sign in to comment.