Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
HawkEye098432
/
so-vits
like
0
Runtime error
App
Files
Files
Community
c96170a
so-vits
/
app.py
HawkEye098432
Create app.py
c96170a
over 1 year ago
raw
Copy download link
history
blame
180 Bytes
def
concatenate_strings
(
string1, string2
):
return
string1 +
" "
+ string2
iface = gr.Interface(fn=concatenate_strings, inputs=[
"text"
,
"text"
], outputs=
"text"
)
iface.launch()