Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
smola/higgs_audio_v2
LLMhacker
/
higgs_audio_v2
like
0
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
91a3092
higgs_audio_v2
/
app.py
zachzzc
initial commit
91a3092
verified
21 days ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()