From 0b4b82dec5815a7e7365552514865fd2ae5f4a36 Mon Sep 17 00:00:00 2001 From: lutzapps Date: Sun, 27 Oct 2024 09:18:43 +0700 Subject: [PATCH] Fix Bug in 'model_utils.py' - wrong module reference in import --- official-templates/better-ai-launcher/app/utils/model_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/official-templates/better-ai-launcher/app/utils/model_utils.py b/official-templates/better-ai-launcher/app/utils/model_utils.py index 87e168d..b7d4537 100644 --- a/official-templates/better-ai-launcher/app/utils/model_utils.py +++ b/official-templates/better-ai-launcher/app/utils/model_utils.py @@ -7,7 +7,7 @@ import re import time import math # lutzapps - modify for new shared_models module and overwrite for this module -from shared_models import (ensure_shared_models_folders, SHARED_MODELS_DIR) +from utils.shared_models import (ensure_shared_models_folders, SHARED_MODELS_DIR) #SHARED_MODELS_DIR = '/workspace/shared_models'