From 585f189b1375b2f910be12d665659088805a3de8 Mon Sep 17 00:00:00 2001 From: Lars Date: Fri, 3 Apr 2026 21:44:39 +0200 Subject: [PATCH] fix: Remove extra_vars parameter from resolve_placeholders call - function doesn't support it yet --- backend/workflow_executor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/workflow_executor.py b/backend/workflow_executor.py index 1b1a39c..6a8054b 100644 --- a/backend/workflow_executor.py +++ b/backend/workflow_executor.py @@ -315,9 +315,9 @@ async def load_prompt_template(prompt_slug: str, context: Dict[str, Any]) -> str profile_id = context.get("profile_id") resolved = resolve_placeholders( template=template, - profile_id=profile_id, - extra_vars=context.get("variables", {}) + profile_id=profile_id ) + # TODO Phase 3: Support custom variables from workflow context return resolved