fix: Remove extra_vars parameter from resolve_placeholders call - function doesn't support it yet
All checks were successful
Deploy Development / deploy (push) Successful in 48s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 13s

This commit is contained in:
Lars 2026-04-03 21:44:39 +02:00
parent acd4830795
commit 585f189b13

View File

@ -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