marcossalinas commited on
Commit
728557c
·
1 Parent(s): 409f844

Create app.py

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