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...
ysharma
HF staff
commited on
Aug 5, 2024
Commit
5aaaee9
·
verified
·
1 Parent(s):
ca3052f
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
with gr.Blocks() as demo:
3
+
chatbot = gr.Chatbot(examples=[{'content':"hi there!"}])
4
+
msg = gr.Textbox()
5
+
clear = gr.Button("Clear")
6
+
demo.queue().launch()