Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
csalabs
/
AI-EMBD
like
0
Runtime error
App
Files
Files
Community
main
AI-EMBD
/
app.py
csalabs
Update app.py
304569e
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
162 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
" I am from CSA"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()