From a1c72251a1165f589562dbb4a7fdfbf62aec95e4 Mon Sep 17 00:00:00 2001 From: Akrem Abayed Date: Tue, 5 Dec 2023 14:34:19 +0100 Subject: [PATCH] default to agentaai/templates_v2 --- agenta-backend/agenta_backend/routers/app_router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agenta-backend/agenta_backend/routers/app_router.py b/agenta-backend/agenta_backend/routers/app_router.py index b687d2c305..b7d7e50cbf 100644 --- a/agenta-backend/agenta_backend/routers/app_router.py +++ b/agenta-backend/agenta_backend/routers/app_router.py @@ -352,7 +352,7 @@ async def create_app_and_variant_from_template( logger.debug("Step 5: Retrieve template from db") template_db = await db_manager.get_template(payload.template_id) - repo_name = os.environ.get("AGENTA_TEMPLATE_REPO", "agentaai/lambda_templates") + repo_name = os.environ.get("AGENTA_TEMPLATE_REPO", "agentaai/templates_v2") image_name = f"{repo_name}:{template_db.name}" logger.debug(