HawkEye098432 commited on
Commit
c96170a
1 Parent(s): 75c99e3

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -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()