devilent2 commited on
Commit
5d8cdf1
1 Parent(s): 927931c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -5,10 +5,15 @@ import time
5
 
6
  graudio=gr.Audio(type="filepath",show_download_button=True)
7
 
 
 
8
 
9
- demo = gr.Interface(fake_diffusion,
 
 
 
10
  inputs=[graudio],
11
- outputs="image")
12
 
13
  if __name__ == "__main__":
14
  demo.launch()
 
5
 
6
  graudio=gr.Audio(type="filepath",show_download_button=True)
7
 
8
+ def test():
9
+ return 'test'
10
 
11
+
12
+
13
+
14
+ demo = gr.Interface(,test
15
  inputs=[graudio],
16
+ outputs=[])
17
 
18
  if __name__ == "__main__":
19
  demo.launch()