rwitz commited on
Commit
9c355fc
β€’
1 Parent(s): f1aba4e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -103,12 +103,12 @@ with gr.Blocks() as demo:
103
  with gr.Row():
104
  # First column for Model A
105
  with gr.Column():
106
- chatbot1 = gr.Chatbot(label='Model A',height=1000)
107
  upvote_btn_a = gr.Button(value="πŸ‘ Upvote A", interactive=False)
108
 
109
  # Second column for Model B
110
  with gr.Column():
111
- chatbot2 = gr.Chatbot(label='Model B',height=1000)
112
  upvote_btn_b = gr.Button(value="πŸ‘ Upvote B", interactive=False)
113
 
114
  # Textbox and submit button at the bottom
 
103
  with gr.Row():
104
  # First column for Model A
105
  with gr.Column():
106
+ chatbot1 = gr.Chatbot(label='Model A')style(height=600)
107
  upvote_btn_a = gr.Button(value="πŸ‘ Upvote A", interactive=False)
108
 
109
  # Second column for Model B
110
  with gr.Column():
111
+ chatbot2 = gr.Chatbot(label='Model B')style(height=600)
112
  upvote_btn_b = gr.Button(value="πŸ‘ Upvote B", interactive=False)
113
 
114
  # Textbox and submit button at the bottom