UntilDot commited on
Commit
33eae63
·
verified ·
1 Parent(s): 0ded64d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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()