mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-09-19 01:28:13 +08:00
feat(gradio_app): add examples accordion to the PDF conversion interface
Introduce an examples accordion within the Gradio application to provide users with a selection of sample PDFs for demonstration purposes. The added functionality allows users to quickly test the PDF conversion feature with various document types.
This commit is contained in:
@@ -150,6 +150,13 @@ if __name__ == "__main__":
|
||||
change_bu = gr.Button("Convert")
|
||||
clear_bu = gr.ClearButton([pdf_show], value="Clear")
|
||||
pdf_show = PDF(label="Please upload pdf", interactive=True, height=800)
|
||||
with gr.Accordion("Examples:"):
|
||||
example_root = os.path.join(os.path.dirname(__file__), "examples")
|
||||
gr.Examples(
|
||||
examples=[os.path.join(example_root, _) for _ in os.listdir(example_root) if
|
||||
_.endswith("pdf")],
|
||||
inputs=pdf_show,
|
||||
)
|
||||
|
||||
with gr.Column(variant='panel', scale=5):
|
||||
output_file = gr.File(label="convert result", interactive=False)
|
||||
|
||||
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Reference in New Issue
Block a user