From 76dba66fe697c5348c0c22302caf418b829a9a5a Mon Sep 17 00:00:00 2001 From: Reuben Morais Date: Thu, 12 Aug 2021 11:31:20 +0200 Subject: [PATCH] Request TFLite model from Model Zoo --- coqui_stt_model_manager/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coqui_stt_model_manager/server.py b/coqui_stt_model_manager/server.py index e091393..829fac2 100644 --- a/coqui_stt_model_manager/server.py +++ b/coqui_stt_model_manager/server.py @@ -64,7 +64,7 @@ def index(): print(f"Current installs: {current_installs}") return render_template( "index.html", - model_zoo_url=f"http://coqui.ai/models?callback_url=http://{host}:{port}/install_model", + model_zoo_url=f"http://coqui.ai/models?callback_url=http://{host}:{port}/install_model&prefer_tflite=1", installed_models=list(app.config["MODEL_MANAGER"].list_models()), models_being_installed=current_installs, )