Parcourir la source

fix: change default value of example files input option to true

myhloli il y a 4 mois
Parent
commit
2b57757b13
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      mineru/cli/gradio_app.py

+ 1 - 1
mineru/cli/gradio_app.py

@@ -182,7 +182,7 @@ def to_pdf(file_path):
     type=bool,
     help="Enable example files for input."
          "The example files to be input need to be placed in the `example` folder within the directory where the command is currently executed.",
-    default=False,
+    default=True,
 )
 @click.option(
     '--enable-sglang-engine',