Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yuvi-debug
/
chatbot_examples
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5aaaee9
chatbot_examples
/
app.py
ysharma
HF staff
Create app.py
5aaaee9
verified
8 months ago
raw
Copy download link
history
blame
Safe
183 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
chatbot = gr.Chatbot(examples=[{
'content'
:
"hi there!"
}])
msg = gr.Textbox()
clear = gr.Button(
"Clear"
)
demo.queue().launch()