Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
josiauhlol
/
Phospeech
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cde8439
Phospeech
/
app.py
josiauhlol
Update app.py
cde8439
over 1 year ago
raw
Copy download link
history
blame
Safe
141 Bytes
import
gradio
as
gr
def
greet
(
audio
):
return
audio
demo = gr.Interface(fn=greet, inputs=
"audio"
, outputs=
"audio"
)
demo.launch()