File size: 136 Bytes
0673028
 
 
 
3876f09
0673028
 
1
2
3
4
5
6
7
import gradio as gr

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

inf.launch()