File size: 194 Bytes
a029d83
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

def say_hello():
    return "Hello, world!"

demo = gr.Interface(
    fn=say_hello,
    inputs=None,
    outputs="text",
    title="Hello World Gradio App"
)

demo.launch()