Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cahya
/
proxy
like
0
Runtime error
App
Files
Files
Community
ade2333
proxy
/
app
/
whisper.py
cahya
add initial files
41649f8
almost 2 years ago
raw
Copy download link
history
blame
Safe
165 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch(server_port=
7870
)