Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
| 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 |
|