Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SebLih
/
iris
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eedd915
iris
/
app.py
SebLih
Update app.py
eedd915
over 3 years ago
raw
Copy download link
history
blame
155 Bytes
import
gradio
as
gr
def
greet
(
input_text
):
return
"Hello!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(inline =
False
)