Update app.py
Browse files
app.py
CHANGED
@@ -142,8 +142,8 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
|
|
142 |
|
143 |
#top_p, temperature
|
144 |
with gr.Accordion("", open=False):
|
145 |
-
top_p = gr.Slider( minimum=-0, maximum=1.0, value=1.0, step=0.05, interactive=
|
146 |
-
temperature = gr.Slider( minimum=-0, maximum=5.0, value=1.0, step=0.1, interactive=
|
147 |
chat_counter = gr.Number(value=0, visible=False, precision=0)
|
148 |
|
149 |
#Event handling
|
|
|
142 |
|
143 |
#top_p, temperature
|
144 |
with gr.Accordion("", open=False):
|
145 |
+
top_p = gr.Slider( minimum=-0, maximum=1.0, value=1.0, step=0.05, interactive=False, visible=False)
|
146 |
+
temperature = gr.Slider( minimum=-0, maximum=5.0, value=1.0, step=0.1, interactive=False, visible=False)
|
147 |
chat_counter = gr.Number(value=0, visible=False, precision=0)
|
148 |
|
149 |
#Event handling
|