Update app.py
Browse files
app.py
CHANGED
@@ -261,7 +261,7 @@ with gr.Blocks(css=demo_css, theme=theme) as demo:
|
|
261 |
|
262 |
state = gr.State([])
|
263 |
|
264 |
-
|
265 |
top_p = gr.Slider(minimum=0, maximum=1.0, value=0.5, step=0.05, interactive=False, visible=False)
|
266 |
temperature = gr.Slider(minimum=0, maximum=5.0, value=0.1, step=0.1, interactive=False, visible=False)
|
267 |
chat_counter = gr.Number(value=0, visible=False, precision=0)
|
|
|
261 |
|
262 |
state = gr.State([])
|
263 |
|
264 |
+
with gr.Accordion("", open=False, visible=False):
|
265 |
top_p = gr.Slider(minimum=0, maximum=1.0, value=0.5, step=0.05, interactive=False, visible=False)
|
266 |
temperature = gr.Slider(minimum=0, maximum=5.0, value=0.1, step=0.1, interactive=False, visible=False)
|
267 |
chat_counter = gr.Number(value=0, visible=False, precision=0)
|