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