zxcgqq commited on
Commit
b8a1d68
·
1 Parent(s): 18200eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -3,6 +3,8 @@ import gradio as gr
3
 
4
  with gr.Blocks(css="#chatbot {overflow:auto; height:500px;}") as demo:
5
 
 
 
6
 
7
  with gr.Row() as input_raws:
8
  with gr.Column(scale=0.7):
 
3
 
4
  with gr.Blocks(css="#chatbot {overflow:auto; height:500px;}") as demo:
5
 
6
+ chatbot = gr.Chatbot(elem_id="chatbot")
7
+ state = gr.State([])
8
 
9
  with gr.Row() as input_raws:
10
  with gr.Column(scale=0.7):