【求助帖】gradio 的文件上传控件,文件类型限制失效。#11248284577cs #185

Open
opened 2024-10-12 10:14:10 +08:00 by 11248284577cs · 2 comments
# 创建一个文件上传控件
file_upload = gr.File(label="上传文件", file_types=['.pdf', '.txt', '.doc'])

这个代码在gradio 4.44.1 生效。在gradio5.0.1不上小
表现为在gradio5.0.1时候,选择一个txt文件会提示
Invalid file type. Please upload a file that is one of these formats: ['pdf', 'txt', 'doc']

# 创建一个文件上传控件 file_upload = gr.File(label="上传文件", file_types=['.pdf', '.txt', '.doc']) 这个代码在gradio 4.44.1 生效。在gradio5.0.1不上小 表现为在gradio5.0.1时候,选择一个txt文件会提示 Invalid file type. Please upload a file that is one of these formats: ['pdf', 'txt', 'doc']

gradio5.0.1可使用如下方式创建

file_upload = gr.File(label="上传文件", file_types=['application/pdf', 'text/plain', 'application/msword'])
gradio5.0.1可使用如下方式创建 ``` file_upload = gr.File(label="上传文件", file_types=['application/pdf', 'text/plain', 'application/msword']) ```

我是不是把你这个问题解决了,如果没有的话,请联系 => 先知

我是不是把你这个问题解决了,如果没有的话,请联系 => 先知
Sign in to join this conversation.
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: HswOAuth/llm_course#185
No description provided.