File size: 174 Bytes
2e78bab
 
105fc53
 
2e78bab
d1fb809
105fc53
 
 
d1fb809
2e78bab
105fc53
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

def hello(name):
    return f"Hello {name}! Space is working!"

demo = gr.Interface(
    fn=hello,
    inputs="text",
    outputs="text"
)

demo.launch()