ysharma HF staff commited on
Commit
5aaaee9
·
verified ·
1 Parent(s): ca3052f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -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()