瀏覽代碼

feat(web_api)!: Make `is_json_md_dump` default to False

shniubobo 9 月之前
父節點
當前提交
635418b6bd
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      projects/web_api/app.py

+ 3 - 3
projects/web_api/app.py

@@ -145,7 +145,7 @@ async def pdf_parse(
     pdf_file: UploadFile = None,
     pdf_file: UploadFile = None,
     pdf_path: str = None,
     pdf_path: str = None,
     parse_method: str = "auto",
     parse_method: str = "auto",
-    is_json_md_dump: bool = True,
+    is_json_md_dump: bool = False,
     output_dir: str = "output",
     output_dir: str = "output",
     return_layout: bool = False,
     return_layout: bool = False,
     return_info: bool = False,
     return_info: bool = False,
@@ -162,8 +162,8 @@ async def pdf_parse(
     :param parse_method: Parsing method, can be auto, ocr, or txt. Default is auto. If
     :param parse_method: Parsing method, can be auto, ocr, or txt. Default is auto. If
         results are not satisfactory, try ocr
         results are not satisfactory, try ocr
     :param is_json_md_dump: Whether to write parsed data to .json and .md files. Default
     :param is_json_md_dump: Whether to write parsed data to .json and .md files. Default
-        is True. Different stages of data will be written to different .json files (3 in
-        total), md content will be saved to .md file
+        to False. Different stages of data will be written to different .json files (3
+        in total), md content will be saved to .md file
     :param output_dir: Output directory for results. A folder named after the PDF file
     :param output_dir: Output directory for results. A folder named after the PDF file
         will be created to store all results
         will be created to store all results
     :param return_layout: Whether to return parsed PDF layout. Default to False
     :param return_layout: Whether to return parsed PDF layout. Default to False