Nadine Rueegg commited on
Commit
c24b308
β€’
1 Parent(s): 7629b39

add fake app.py to test

Browse files
Files changed (1) hide show
  1. src/app.py +10 -0
src/app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ import gradio as gr
4
+
5
+ def greet(name):
6
+ return "Hello " + name + "!!"
7
+
8
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+ iface.launch()
10
+