Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fangshengren
/
space2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fangshengren
commited on
Apr 14, 2024
Commit
6bf835b
·
verified
·
1 Parent(s):
9944f3f
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
2
+
3
+
import gradio as gr
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+
8
+
iface.launch()