warakan commited on
Commit
ad5862b
1 Parent(s): af95a43

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ aList = []
3
+ def app2List(num):
4
+ num =int(num)
5
+ aList.append(num)
6
+ return aList
7
+
8
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+ iface.launch()