TorchFakes / app.py
molher's picture
Update app.py
3876f09
raw
history blame
136 Bytes
import gradio as gr
def saludar(nombre):
return f'Hola {nombre}'
inf=gr.Interface(saludar,inputs='text',outputs='text')
inf.launch()