Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,6 +19,9 @@ def check_compliance(file):
|
|
| 19 |
|
| 20 |
gr.Interface(
|
| 21 |
fn=check_compliance,
|
| 22 |
-
inputs=gr.File(
|
|
|
|
|
|
|
|
|
|
| 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()
|