From 829effec1a1b80320ccaf2c501be8015169b6fa3 Mon Sep 17 00:00:00 2001 From: nkh0472 <67589323+nkh0472@users.noreply.github.com> Date: Mon, 28 Apr 2025 15:46:13 +0800 Subject: [PATCH] docs: fix new default pdf_backend (#158) Signed-off-by: nkh0472 <67589323+nkh0472@users.noreply.github.com> --- docs/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage.md b/docs/usage.md index 8ea76a6..22dd70a 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -14,7 +14,7 @@ On top of the source of file (see below), both endpoints support the same parame - `force_ocr` (bool): If enabled, replace any existing text with OCR-generated text over the full content. Defaults to `False`. - `ocr_engine` (str): OCR engine to use. Allowed values: `easyocr`, `tesseract_cli`, `tesseract`, `rapidocr`, `ocrmac`. Defaults to `easyocr`. - `ocr_lang` (List[str]): List of languages used by the OCR engine. Note that each OCR engine has different values for the language names. Defaults to empty. -- `pdf_backend` (str): PDF backend to use. Allowed values: `pypdfium2`, `dlparse_v1`, `dlparse_v2`. Defaults to `dlparse_v2`. +- `pdf_backend` (str): PDF backend to use. Allowed values: `pypdfium2`, `dlparse_v1`, `dlparse_v2`, `dlparse_v4`. Defaults to `dlparse_v4`. - `table_mode` (str): Table mode to use. Allowed values: `fast`, `accurate`. Defaults to `fast`. - `abort_on_error` (bool): If enabled, abort on error. Defaults to false. - `return_as_file` (boo): If enabled, return the output as a file. Defaults to false.