Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lfff24
/
lff342
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
lfff24
commited on
Aug 27, 2023
Commit
6a5cc17
·
1 Parent(s):
3a23120
Add application file
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 "Hello " + name + "!! How are you?"
5
+
6
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+
iface.launch()
8
+
9
+
10
+