changxin commited on
Commit
d0764a2
·
1 Parent(s): ce9c3eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ with demo:
14
  with gr.Tabs():
15
  with gr.TabItem("读取word"):
16
  file_input = gr.File(file_count="single",label="请选择需要读取的word文件",show_label=True)
17
- text_output = gr.gr.DataFrame(label="输出读取文本",show_label=True)
18
  dq_button = gr.Button("开始读取>>")
19
  dq_button.click(wd, inputs=file_input, outputs=text_output,api_name="word-text")
20
 
 
14
  with gr.Tabs():
15
  with gr.TabItem("读取word"):
16
  file_input = gr.File(file_count="single",label="请选择需要读取的word文件",show_label=True)
17
+ text_output = gr.DataFrame(label="输出读取文本",show_label=True)
18
  dq_button = gr.Button("开始读取>>")
19
  dq_button.click(wd, inputs=file_input, outputs=text_output,api_name="word-text")
20