Namazlol commited on
Commit
b42c214
·
verified ·
1 Parent(s): 7f63c3e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def get_audio():
4
+ return "https://huggingface.co/spaces/your-username/my-audio-hosting/blob/main/mysong.mp3"
5
+
6
+ demo = gr.Interface(fn=get_audio, inputs=[], outputs="audio")
7
+ demo.launch()