From 8d9b5bf3974f80db65e8669b739247945983cf43 Mon Sep 17 00:00:00 2001 From: Lars Date: Mon, 13 Apr 2026 15:24:46 +0200 Subject: [PATCH] fix: execute-stream must be GET not POST (EventSource always uses GET) --- backend/routers/prompts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routers/prompts.py b/backend/routers/prompts.py index 9c8b09c..4904f01 100644 --- a/backend/routers/prompts.py +++ b/backend/routers/prompts.py @@ -1445,7 +1445,7 @@ from prompt_executor import execute_prompt_with_data from models import UnifiedPromptCreate, UnifiedPromptUpdate -@router.post("/execute-stream") +@router.get("/execute-stream") async def execute_unified_prompt_stream( prompt_slug: str = Query(..., description="Slug of prompt to execute"), token: Optional[str] = Query(None, description="Auth token (temporary solution for SSE)"),