Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
iface = gr.Interface(
|
2 |
fn=process_file,
|
3 |
inputs=gr.File(label="Upload your file"),
|
@@ -5,4 +8,4 @@ iface = gr.Interface(
|
|
5 |
live=False
|
6 |
)
|
7 |
|
8 |
-
iface.launch()
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from processing import process_file
|
3 |
+
|
4 |
iface = gr.Interface(
|
5 |
fn=process_file,
|
6 |
inputs=gr.File(label="Upload your file"),
|
|
|
8 |
live=False
|
9 |
)
|
10 |
|
11 |
+
iface.launch(title="Process")
|