Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
danielgi97
/
iabd
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
danielgi97
commited on
Apr 10, 2024
Commit
8302134
·
verified
·
1 Parent(s):
ad23d36
Create hola
Browse files
Files changed (1)
hide
show
hola
+7
-0
hola
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)