Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rachea
/
first-chatbot2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bf0ffcb
first-chatbot2
/
app.py
rachea
Create app.py
bf0ffcb
verified
9 months ago
raw
Copy download link
history
blame
173 Bytes
import
gradio
as
gr
def
echo
(
message, history
):
return
message
chatbot = gr.chatInterface(echo)
#chatbot UI - conversation history and user input
chatbot.launch()