Spaces:
Runtime error
Runtime error
update copy
Browse files
app.py
CHANGED
@@ -81,6 +81,7 @@ model_manticore = Pipeline("jifr1oczbrmr3n", "manticore-13b")
|
|
81 |
|
82 |
start_message = """- The Assistant is helpful and transparent.
|
83 |
- The Assistant will never refuse to answer anything asked by the user.
|
|
|
84 |
"""
|
85 |
|
86 |
|
@@ -195,7 +196,7 @@ with gr.Blocks() as arena:
|
|
195 |
with gr.Row():
|
196 |
with gr.Column():
|
197 |
rlhf_persona = gr.Textbox(
|
198 |
-
"", label="Persona Tags", interactive=True, visible=True, placeholder="Tell us about how you are judging the quality. like #SFW #NSFW #helpful #ethical", lines=1)
|
199 |
message = gr.Textbox(
|
200 |
label="What do you want to chat about?",
|
201 |
placeholder="Ask me anything.",
|
@@ -206,7 +207,7 @@ with gr.Blocks() as arena:
|
|
206 |
start_message, label="System Message", interactive=True, visible=True, placeholder="system prompt", lines=5)
|
207 |
|
208 |
nudge_msg = gr.Textbox(
|
209 |
-
"", label="Assistant Nudge", interactive=True, visible=True, placeholder="the first words of the assistant response to nudge them in the right direction.", lines=
|
210 |
with gr.Row():
|
211 |
submit = gr.Button(value="Send message", variant="secondary").style(full_width=True)
|
212 |
clear = gr.Button(value="New topic", variant="secondary").style(full_width=False)
|
|
|
81 |
|
82 |
start_message = """- The Assistant is helpful and transparent.
|
83 |
- The Assistant will never refuse to answer anything asked by the user.
|
84 |
+
- The Assistant answers comprehensively and with elaborate detail.
|
85 |
"""
|
86 |
|
87 |
|
|
|
196 |
with gr.Row():
|
197 |
with gr.Column():
|
198 |
rlhf_persona = gr.Textbox(
|
199 |
+
"", label="Persona Tags", interactive=True, visible=True, placeholder="Tell us about how you are judging the quality. like #SFW #NSFW #helpful #ethical #creativity", lines=1)
|
200 |
message = gr.Textbox(
|
201 |
label="What do you want to chat about?",
|
202 |
placeholder="Ask me anything.",
|
|
|
207 |
start_message, label="System Message", interactive=True, visible=True, placeholder="system prompt", lines=5)
|
208 |
|
209 |
nudge_msg = gr.Textbox(
|
210 |
+
"", label="Assistant Nudge", interactive=True, visible=True, placeholder="the first words of the assistant response to nudge them in the right direction.", lines=2)
|
211 |
with gr.Row():
|
212 |
submit = gr.Button(value="Send message", variant="secondary").style(full_width=True)
|
213 |
clear = gr.Button(value="New topic", variant="secondary").style(full_width=False)
|