molher commited on
Commit
0673028
·
1 Parent(s): 321969c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def saludar(nombre):
4
+ return f'Hola {nombre}'
5
+ inf=gr.Interface(saludar,inputs=text,outputs='text'
6
+
7
+ inf.launch()