Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
antomtnez
/
MyNewSpace
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
antomtnez
commited on
Oct 16, 2024
Commit
b4c55eb
·
verified
·
1 Parent(s):
8f226f3
Create app.py file
Browse files
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 saluda(nombre):
4
+
return "Hola" + nombre + "!"
5
+
6
+
demo = gr.Interface(fn=saluda, inputs="text", outputs="text")
7
+
demo.launch(share=True)