Update app.py
Browse files
app.py
CHANGED
@@ -89,7 +89,7 @@ with gr.Blocks(css=css) as demo:
|
|
89 |
|
90 |
with gr.Accordion("Advanced Settings", open=False):
|
91 |
system_message = gr.Textbox(
|
92 |
-
value="You must act in a conversational matter and always include <think> ... </think> <output> </output> tokens.",
|
93 |
label="System message"
|
94 |
)
|
95 |
max_tokens = gr.Slider(
|
@@ -101,8 +101,8 @@ with gr.Blocks(css=css) as demo:
|
|
101 |
)
|
102 |
temperature = gr.Slider(
|
103 |
minimum=0.1,
|
104 |
-
maximum=
|
105 |
-
value=0.
|
106 |
step=0.1,
|
107 |
label="Temperature"
|
108 |
)
|
|
|
89 |
|
90 |
with gr.Accordion("Advanced Settings", open=False):
|
91 |
system_message = gr.Textbox(
|
92 |
+
value="You must act in a conversational matter and always include at the start <think> ... </think> <output> ... </output> tokens.",
|
93 |
label="System message"
|
94 |
)
|
95 |
max_tokens = gr.Slider(
|
|
|
101 |
)
|
102 |
temperature = gr.Slider(
|
103 |
minimum=0.1,
|
104 |
+
maximum=2.0,
|
105 |
+
value=0.85,
|
106 |
step=0.1,
|
107 |
label="Temperature"
|
108 |
)
|