Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gradio
/
chatbot_component_main
like
1
Running
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
df5976a
chatbot_component_main
/
run.py
aliabd
HF Staff
Upload folder using huggingface_hub
7fb760d
almost 2 years ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
gr.Chatbot(value=[[
"Hello World"
,
"Hey Gradio!"
],[
"β€οΈ"
,
"π"
],[
"π₯"
,
"π€"
]])
demo.launch()