manabb commited on
Commit
31b4a7f
·
verified ·
1 Parent(s): abef4b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -19,6 +19,9 @@ def check_compliance(file):
19
 
20
  gr.Interface(
21
  fn=check_compliance,
22
- inputs=gr.File(label="Upload Proposal",file_types=[".docx"])
 
 
 
23
  outputs=gr.Textbox(lines=15, label="Compliance Result"),
24
  ).launch()
 
19
 
20
  gr.Interface(
21
  fn=check_compliance,
22
+ inputs=gr.File(
23
+ label="Upload Proposal",
24
+ file_types=[".docx"]
25
+ )
26
  outputs=gr.Textbox(lines=15, label="Compliance Result"),
27
  ).launch()