Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
akutty
/
erav2s13
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Mojo
commited on
Apr 22, 2024
Commit
b267f13
·
1 Parent(s):
f2a848f
Added the first file in Hugging face spaces
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return f"Hello {name}!"
5
+
6
+
7
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
8
+
iface.launch()
9
+
10
+