ginipick commited on
Commit
fb2486e
·
verified ·
1 Parent(s): e197df8

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ demo = gr.Interface(
4
+ fn=lambda: "Hello World",
5
+ inputs=None,
6
+ outputs="text",
7
+ title="Hello World"
8
+ )
9
+
10
+ demo.launch()