Spaces:
Runtime error
Runtime error
make two chat boxes the same
Browse files
app.py
CHANGED
@@ -224,11 +224,11 @@ custom_css = """
|
|
224 |
}
|
225 |
|
226 |
#system-message {
|
227 |
-
min-height:
|
228 |
}
|
229 |
|
230 |
#system-message textarea {
|
231 |
-
min-height:
|
232 |
}
|
233 |
|
234 |
#chat-message {
|
@@ -270,7 +270,7 @@ with gr.Blocks(theme=theme, analytics_enabled=False, css=custom_css) as demo:
|
|
270 |
label="System prompt",
|
271 |
)
|
272 |
|
273 |
-
with gr.Column(scale=
|
274 |
with gr.Box():
|
275 |
output = gr.Markdown()
|
276 |
chatbot = gr.Chatbot(elem_id="chat-message", label="Chat")
|
|
|
224 |
}
|
225 |
|
226 |
#system-message {
|
227 |
+
min-height: 527px;
|
228 |
}
|
229 |
|
230 |
#system-message textarea {
|
231 |
+
min-height: 462px;
|
232 |
}
|
233 |
|
234 |
#chat-message {
|
|
|
270 |
label="System prompt",
|
271 |
)
|
272 |
|
273 |
+
with gr.Column(scale=1):
|
274 |
with gr.Box():
|
275 |
output = gr.Markdown()
|
276 |
chatbot = gr.Chatbot(elem_id="chat-message", label="Chat")
|