File size: 178 Bytes
6571424
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

def hello(name):
    return f"Hello {name} 👋"

gr.Interface(
    fn=hello,
    inputs="text",
    outputs="text",
    title="My First HF Space"
).launch()