From d518365c875c218e267d992a8de090d95c4034d5 Mon Sep 17 00:00:00 2001 From: ajaysi Date: Fri, 24 Apr 2026 15:47:42 +0530 Subject: [PATCH] fix: add missing budget_cap argument to create_project in update_project handler --- backend/api/podcast/handlers/projects.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/api/podcast/handlers/projects.py b/backend/api/podcast/handlers/projects.py index e699fbc5..5d6ab649 100644 --- a/backend/api/podcast/handlers/projects.py +++ b/backend/api/podcast/handlers/projects.py @@ -136,9 +136,10 @@ async def update_project( user_id=user_id, project_id=project_id, idea="Untitled Podcast", - status="scripting", # Assume we're updating an existing project + status="scripting", duration=10, speakers=1, + budget_cap=0.0, ) except Exception as create_err: logger.error(f"[Podcast] Failed to create project {project_id}: {create_err}")