From bb3b79e22a0010729d8b4d615e8b2e1314d582d4 Mon Sep 17 00:00:00 2001 From: nishika26 Date: Wed, 14 May 2025 14:34:33 +0530 Subject: [PATCH] quick fix --- backend/app/api/routes/threads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/api/routes/threads.py b/backend/app/api/routes/threads.py index 28275487..cc5ded31 100644 --- a/backend/app/api/routes/threads.py +++ b/backend/app/api/routes/threads.py @@ -333,7 +333,7 @@ async def threads_sync( @router.post("/threads/start") async def start_thread( - request: OpenAIThreadCreate, + request: dict, background_tasks: BackgroundTasks, db: Session = Depends(get_db), _current_user: UserOrganization = Depends(get_current_user_org),