Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
demetz
/
ChatbotLab
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
834791f
ChatbotLab
/
app.py
demetz
Update app.py
834791f
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
157 Bytes
import
gradio
as
gr
def
echo
(
message, history
):
return
message
print
(
"Hello, world!"
)
chatbot = gr.ChatInterface(echo,
type
=
"messages"
)
chatbot.launch()