Update app.py
Browse files
app.py
CHANGED
@@ -154,12 +154,12 @@ with gr.Blocks() as demo:
|
|
154 |
|
155 |
# Parameters and Prompt Details section below the chat
|
156 |
with gr.Row(equal_height=True):
|
157 |
-
with gr.Column(scale=1, min_width=300):
|
158 |
with gr.Accordion("Current Prompt Details", open=False):
|
159 |
system_prompt_display = gr.TextArea(
|
160 |
label="System Prompt",
|
161 |
interactive=False,
|
162 |
-
lines=
|
163 |
)
|
164 |
current_messages_display = gr.JSON(
|
165 |
label="Full Conversation Context",
|
|
|
154 |
|
155 |
# Parameters and Prompt Details section below the chat
|
156 |
with gr.Row(equal_height=True):
|
157 |
+
with gr.Column(scale=1, min_width=300, height=500):
|
158 |
with gr.Accordion("Current Prompt Details", open=False):
|
159 |
system_prompt_display = gr.TextArea(
|
160 |
label="System Prompt",
|
161 |
interactive=False,
|
162 |
+
lines=20
|
163 |
)
|
164 |
current_messages_display = gr.JSON(
|
165 |
label="Full Conversation Context",
|