fzmnm commited on
Commit
5c204c4
·
verified ·
1 Parent(s): d8a2b75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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()