Mauriciotuks commited on
Commit
f71f585
·
verified ·
1 Parent(s): a4a74b6

Create app.py

Browse files

git add app.py && git commit -m 'Add application file' && git push

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 saluer(nom):
4
+ return "Bonjour " + nom + " !"
5
+
6
+ interface = gr.Interface(fn=saluer, inputs="text", outputs="text")
7
+ interface.launch()