OCR API배치 OCR이 페이지에서배치 OCR POST /api/ocr/claude-vision-batch 여러 이미지를 한 번에 OCR 처리합니다. 요청 interface BatchOCRRequest { images: { image_base64: string; media_type: string; }[]; language?: string;} 응답 interface BatchOCRResponse { results: { text: string; index: number; }[];}