Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
patti-j
/
omdena-mental-health
like
1
Runtime error
App
Files
Files
Community
41b221f
omdena-mental-health
/
app.py
patti-j
Update app.py
c89315b
over 1 year ago
raw
Copy download link
history
blame
161 Bytes
import
gradio
as
gr
def
response
(
message
):
return
"Hello "
+ message +
"!!"
iface = gr.Interface(fn=response, inputs=
"text"
, outputs=
"text"
)
iface.launch()