Skip to content

Commit

Permalink
Merge pull request #998 from Agenta-AI/fix-default-repo
Browse files Browse the repository at this point in the history
default to agentaai/templates_v2
  • Loading branch information
aakrem authored Dec 5, 2023
2 parents e71d07b + a1c7225 commit a27395c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agenta-backend/agenta_backend/routers/app_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit a27395c

Please sign in to comment.