Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aliabd
/
test_wheel
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aliabd
HF Staff
commited on
Nov 2, 2022
Commit
68167ac
·
1 Parent(s):
2d2bda5
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-2
app.py
CHANGED
Viewed
@@ -1,3 +1,4 @@
1
import gradio as gr
2
-
3
-
gr.Interface(lambda
x:x,
"
text
"
,
"text").launch()
1
import gradio as gr
2
+
def greet(name):
3
+
return
"
hello
"
+ name
4
+
gr.Interface(greet, "text", "text").launch()