File size: 142 Bytes
b3dd5c8
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

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

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