Update app.py
Browse files
app.py
CHANGED
@@ -13,6 +13,10 @@ app = Flask(__name__)
|
|
13 |
def index():
|
14 |
return render_template("index.html")
|
15 |
|
|
|
|
|
|
|
|
|
16 |
@app.route("/chat", methods=["POST"])
|
17 |
def chat():
|
18 |
data = request.get_json()
|
|
|
13 |
def index():
|
14 |
return render_template("index.html")
|
15 |
|
16 |
+
@app.route("/docs")
|
17 |
+
def docs():
|
18 |
+
return render_template("docs.html")
|
19 |
+
|
20 |
@app.route("/chat", methods=["POST"])
|
21 |
def chat():
|
22 |
data = request.get_json()
|