jph00 commited on
Commit
a61f902
1 Parent(s): dc2d8b0
Files changed (1) hide show
  1. app.py +4 -0
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import gradio as gr
2
+ def greet(): return "Hello"
3
+ gr.Interface(fn=greet, inputs=[], outputs="text").launch()
4
+