style(gradio-app): add missing file type in upload

- Add missing '.jpg' file type to the list of allowed file types for upload
This commit is contained in:
myhloli
2024-11-08 18:31:32 +08:00
parent e78edb193e
commit 8ea2381334
+1 -1
View File
@@ -191,7 +191,7 @@ if __name__ == "__main__":
gr.HTML(header)
with gr.Row():
with gr.Column(variant='panel', scale=5):
file = gr.File(label="Please upload a PDF or image", file_types=[".pdf", ".png", ".jpeg", "jpg"])
file = gr.File(label="Please upload a PDF or image", file_types=[".pdf", ".png", ".jpeg", ".jpg"])
max_pages = gr.Slider(1, 10, 5, step=1, label="Max convert pages")
with gr.Row():
layout_mode = gr.Dropdown(["layoutlmv3", "doclayout_yolo"], label="Layout model", value="layoutlmv3")