Severian commited on
Commit
34d1a6c
·
verified ·
1 Parent(s): 4e6ae23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -133,7 +133,7 @@ with gr.Blocks(theme='Nymbo/Alyx_Theme') as demo:
133
 
134
  with gr.Row():
135
  model = gr.Dropdown(choices=MODELS, label="Select Model", value=MODELS[0])
136
- thinking_budget = gr.Slider(minimum=1, maximum=100, value=10, step=1, label="Thinking Budget", info="maximum times a model can think")
137
 
138
  chatbot = gr.Chatbot(label="Chat", show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel", type="messages")
139
 
 
133
 
134
  with gr.Row():
135
  model = gr.Dropdown(choices=MODELS, label="Select Model", value=MODELS[0])
136
+ thinking_budget = gr.Slider(minimum=1, maximum=100, value=42, step=1, label="Thinking Budget", info="maximum times a model can think", interactive=False)
137
 
138
  chatbot = gr.Chatbot(label="Chat", show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel", type="messages")
139