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...
32d5a39
ChatbotLab
/
app.py
demetz
Update app.py
32d5a39
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
121 Bytes
import
gradio
as
gr
def
echo
(
messsage,history
):
return
messsage
chatbot=gr.ChatInterface(echo)
chatbot.launch()