Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Chipmunk91
/
apitest
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7f8cbb9
apitest
/
app.py
Chipmunk91
Create app.py
7f8cbb9
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
143 Bytes
import
gradio
as
gr
def
greet
(
text
):
return
text +
" hello"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()