imzdong commited on
Commit
5e3e797
1 Parent(s): 2726886

change with of window

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ def predict(input, history=[]):
46
  responses = [(u,b) for u,b in zip(history[::2], history[1::2])]
47
  return responses, history
48
 
49
- with gr.Blocks(css="#chatbot{height:350px} .overflow-y-auto{height:500px}") as demo:
50
  chatbot = gr.Chatbot(elem_id="chatbot")
51
  state = gr.State([])
52
 
 
46
  responses = [(u,b) for u,b in zip(history[::2], history[1::2])]
47
  return responses, history
48
 
49
+ with gr.Blocks(css="#chatbot{height:650px} .overflow-y-auto{height:800px}") as demo:
50
  chatbot = gr.Chatbot(elem_id="chatbot")
51
  state = gr.State([])
52