Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HawkEye098432
/
so-vits
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
HawkEye098432
commited on
Jun 17, 2023
Commit
c96170a
·
1 Parent(s):
75c99e3
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
def concatenate_strings(string1, string2):
2
+
return string1 + " " + string2
3
+
4
+
iface = gr.Interface(fn=concatenate_strings, inputs=["text", "text"], outputs="text")
5
+
6
+
iface.launch()