Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
121Mauricio
/
IO-AI
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Mauriciotuks
commited on
Aug 8, 2025
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
app.py
+7
-0
app.py
ADDED
Viewed
@@ -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()