Update app.py
Browse files
app.py
CHANGED
@@ -88,7 +88,7 @@ with gr.Blocks(css=CSS) as demo:
|
|
88 |
submit = gr.Button(value="Send message", variant="secondary").style(full_width=True)
|
89 |
clear = gr.Button(value="New topic", variant="secondary").style(full_width=False)
|
90 |
stop = gr.Button(value="Stop", variant="secondary").style(full_width=False)
|
91 |
-
with gr.Accordion("Show Model Parameters"):
|
92 |
with gr.Row():
|
93 |
with gr.Column():
|
94 |
max_tokens = gr.Slider(20, 1000, label="Max Tokens", step=20, value=500)
|
|
|
88 |
submit = gr.Button(value="Send message", variant="secondary").style(full_width=True)
|
89 |
clear = gr.Button(value="New topic", variant="secondary").style(full_width=False)
|
90 |
stop = gr.Button(value="Stop", variant="secondary").style(full_width=False)
|
91 |
+
with gr.Accordion("Show Model Parameters", open=False, info="Click to show adjustable parameters like Temperature"):
|
92 |
with gr.Row():
|
93 |
with gr.Column():
|
94 |
max_tokens = gr.Slider(20, 1000, label="Max Tokens", step=20, value=500)
|