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)"),