import gradio as gr def greet(yourname): return "Hello and welcome " + yourname + "!!" demo = gr.Interface(fn=greet, inputs="text", outputs="text") demo.launch()