import gradio as gr def saludar(nombre): return f'Hola {nombre}' inf=gr.Interface(saludar,inputs='text',outputs='text') inf.launch()