From 8a6f2ae2d84facff03a8f6ee5eed6dd076cf4611 Mon Sep 17 00:00:00 2001 From: kyy Date: Thu, 6 Nov 2025 14:37:15 +0900 Subject: [PATCH] =?UTF-8?q?OCR=20=EC=97=94=EC=A7=84=20=EB=B9=84=EB=8F=99?= =?UTF-8?q?=EA=B8=B0=20=EC=B2=98=EB=A6=AC=20=EC=A0=84=ED=99=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- router/deepseek_router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/deepseek_router.py b/router/deepseek_router.py index 01ef0b6..4463056 100644 --- a/router/deepseek_router.py +++ b/router/deepseek_router.py @@ -27,7 +27,7 @@ async def perform_ocr( raise HTTPException(status_code=400, detail="파일 내용이 비어있습니다.") # 모든 처리 로직을 OCR 엔진에 위임 - result = process_document( + result = await process_document( file_bytes=file_content, content_type=document.content_type, filename=document.filename,