Latest stable branch includes sermon analysis endpoint, but not required for new installations

This commit is contained in:
2024-11-12 17:25:56 -08:00
parent 0ab32bf4e2
commit 87f0dc54c5
16 changed files with 376 additions and 70 deletions
+4
View File
@@ -744,6 +744,10 @@ def make_view(response_list=[]):
response = jsonify(response_list)
@app.get("/fe")
def frontend():
return send_file('kjv_fe.html')
@app.get("/search") # user-facing keyword search. To be moved to backend, possibly replaced with semantic search.
def search():
keywords = request.args.get("kw", None)