Ferdi commited on
Commit
46c1e83
1 Parent(s): 6bfb5b9

reduce size of chatwindow

Browse files
Files changed (1) hide show
  1. src/app.py +1 -2
src/app.py CHANGED
@@ -36,8 +36,7 @@ with gr.Blocks(gr.themes.Soft(primary_hue=gr.themes.colors.slate, secondary_hue=
36
  model_load_btn = gr.Button('Load model', variant='primary',scale=2)
37
  load_success_msg = gr.Textbox(show_label=False,lines=1, placeholder="Model loading ...")
38
 
39
- chatbot = gr.Chatbot([], elem_id="chatbot",
40
- label='Chatbox', height=725, )
41
 
42
  txt = gr.Textbox(label= "Question",lines=2,placeholder="Enter your question and press shift+enter ")
43
 
 
36
  model_load_btn = gr.Button('Load model', variant='primary',scale=2)
37
  load_success_msg = gr.Textbox(show_label=False,lines=1, placeholder="Model loading ...")
38
 
39
+ chatbot = gr.Chatbot([], elem_id="chatbot", label='Chatbox', height=600)
 
40
 
41
  txt = gr.Textbox(label= "Question",lines=2,placeholder="Enter your question and press shift+enter ")
42