Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -102,7 +102,8 @@ app = gr.ChatInterface(
|
|
102 |
# run_examples_on_click=False, # there is a bug with example questions that it does not toggle stop_btn on. toggling this option can circumvent this issue. however, it is not supported in 5.0.1
|
103 |
additional_inputs=[
|
104 |
gr.Slider(minimum=0.1, maximum=4.0, value=temperature, step=0.05, label='Temperature'),
|
105 |
-
]
|
|
|
106 |
)
|
107 |
|
108 |
app.queue()
|
|
|
102 |
# run_examples_on_click=False, # there is a bug with example questions that it does not toggle stop_btn on. toggling this option can circumvent this issue. however, it is not supported in 5.0.1
|
103 |
additional_inputs=[
|
104 |
gr.Slider(minimum=0.1, maximum=4.0, value=temperature, step=0.05, label='Temperature'),
|
105 |
+
],
|
106 |
+
cache_examples=False,
|
107 |
)
|
108 |
|
109 |
app.queue()
|