Update app.py
Browse files
app.py
CHANGED
|
@@ -17,8 +17,8 @@ def download_file():
|
|
| 17 |
return file_contents
|
| 18 |
|
| 19 |
# Define the inputs and outputs for the Gradio interface
|
| 20 |
-
inputs = gr.
|
| 21 |
-
output = gr.
|
| 22 |
|
| 23 |
# Create the Gradio interface
|
| 24 |
gr.Interface(
|
|
|
|
| 17 |
return file_contents
|
| 18 |
|
| 19 |
# Define the inputs and outputs for the Gradio interface
|
| 20 |
+
inputs = gr.File(label="Upload File")
|
| 21 |
+
output = gr.File(label="Download File")
|
| 22 |
|
| 23 |
# Create the Gradio interface
|
| 24 |
gr.Interface(
|