Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
decodingdatascience
/
helloapp16thnov
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
decodingdatascience
commited on
Nov 16, 2024
Commit
4bc1cdc
·
verified
·
1 Parent(s):
ec6b7e7
added new file
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!"
6
+
7
+
8
+
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9
+
10
+
11
+
demo.launch()