Update app.py
Browse files
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):
|