File size: 147 Bytes
7abf4f0
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def test(input: str):
    return "Hello, " + input

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