import gradio as gradio def greet(name): return f'Hello {name}' gradio.Interface(fn=greet, inputs="text", outputs="text").launch()