From ab94c06e751add3d41952ad492f5bd9a74123227 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Mon, 29 Jul 2024 13:15:02 +0200 Subject: [PATCH] =?UTF-8?q?Skickar=20med=20use=5Fmodel=20n=C3=A4r=20index.?= =?UTF-8?q?html=20rendreras?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smartassist/src/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartassist/src/backend.py b/smartassist/src/backend.py index 17ad2b3..e98261b 100644 --- a/smartassist/src/backend.py +++ b/smartassist/src/backend.py @@ -42,7 +42,7 @@ def index(): logger.debug("Client HTML (first few characters): %s", client_html[:50]) # Print to see if it's loading # logger.debug("Client HTML (all characters): %s", client_html) # Print to see if it's loading - return render_template('index.html', api_endpoint=api_endpoint, client_content=client_html) + return render_template('index.html', api_endpoint=api_endpoint, use_model = use_model, client_content=client_html) @app.route('/') def serve_static(filename):