Spaces:
Runtime error
Runtime error
Nadine Rueegg
commited on
Commit
β’
c24b308
1
Parent(s):
7629b39
add fake app.py to test
Browse files- 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 |
+
|