soiz1 commited on
Commit
a029d83
·
verified ·
1 Parent(s): ba3b035

Create app.py

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