Xaot6 commited on
Commit
796edc7
1 Parent(s): 8ebf02a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
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")