not-lain commited on
Commit
a8d5e97
·
verified ·
1 Parent(s): b1528e0

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def talk(text):
5
+ return "hi "+ text
6
+ gr.Interface(talk , "text","text").launch()