Update main.py
Browse files
main.py
CHANGED
@@ -19,6 +19,11 @@ def index():
|
|
19 |
def chatbot():
|
20 |
return render_template('med_chatbot.html')
|
21 |
|
|
|
|
|
|
|
|
|
|
|
22 |
@app.route('/get', methods=['POST'])
|
23 |
def get_response():
|
24 |
user_question = request.form['msg'] # Get the user's message from the form data
|
|
|
19 |
def chatbot():
|
20 |
return render_template('med_chatbot.html')
|
21 |
|
22 |
+
@app.route('/identification')
|
23 |
+
def chatbot():
|
24 |
+
return render_template('skin_disease_identification.html')
|
25 |
+
|
26 |
+
|
27 |
@app.route('/get', methods=['POST'])
|
28 |
def get_response():
|
29 |
user_question = request.form['msg'] # Get the user's message from the form data
|