Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
OdinStef
/
Chatapp
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1cfe4bf
Chatapp
/
app.py
OdinStef
Update app.py
63d4dde
about 2 years ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello !!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)