Spaces:
Sleeping
Sleeping
0.27 UX tweaks
Browse files
app.py
CHANGED
@@ -188,12 +188,12 @@ with gr.Blocks() as demo:
|
|
188 |
with gr.Column():
|
189 |
gr.HTML("<center><h1>🤖le Royale</h1></center>")
|
190 |
gr.Markdown(arena_notes)
|
191 |
-
system_prompt = gr.Textbox(lines=1, label="System Prompt", value="You are a helpful chatbot
|
192 |
with gr.Row(variant="panel"):
|
193 |
with gr.Column(scale=1):
|
194 |
submit_btn = gr.Button(value="Generate", variant="primary")
|
195 |
clear_btn = gr.Button(value="Clear", variant="secondary")
|
196 |
-
input_text = gr.Textbox(lines=1, label="Prompt", value="", scale=3, show_copy_button=True)
|
197 |
with gr.Row(variant="panel"):
|
198 |
with gr.Column():
|
199 |
chatbot_a = gr.Chatbot(label="Model A", show_copy_button=True, height=500)
|
|
|
188 |
with gr.Column():
|
189 |
gr.HTML("<center><h1>🤖le Royale</h1></center>")
|
190 |
gr.Markdown(arena_notes)
|
191 |
+
system_prompt = gr.Textbox(lines=1, label="System Prompt", value="You are a helpful chatbot that adheres to the prompted request.", show_copy_button=True)
|
192 |
with gr.Row(variant="panel"):
|
193 |
with gr.Column(scale=1):
|
194 |
submit_btn = gr.Button(value="Generate", variant="primary")
|
195 |
clear_btn = gr.Button(value="Clear", variant="secondary")
|
196 |
+
input_text = gr.Textbox(lines=1, label="Prompt", value="Write a Nike style ad headline about the shame of being second best.", scale=3, show_copy_button=True)
|
197 |
with gr.Row(variant="panel"):
|
198 |
with gr.Column():
|
199 |
chatbot_a = gr.Chatbot(label="Model A", show_copy_button=True, height=500)
|