Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def fun(n="Born to be sauce"):
4
+ return n
5
+
6
+ gr.Interface(fn=fun, inputs=None, outputs=gr.Text)