Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
andreeabodea
/
test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6ed41e8
test
/
app.py
andreeabodea
Update app.py
6ed41e8
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello, "
+ name +
"!"
iface = gr.Interface(
fn=greet,
inputs=[
"text"
],
outputs=[
"text"
],
)
iface.launch()