Jn-Huang Claude Sonnet 4.5 commited on
Commit
49689a5
·
1 Parent(s): fea2e62

Update default temperature from 0.6 to 0.7

Browse files

Changed the default temperature parameter in the chat interface slider
to align with the generate_response function default.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <[email protected]>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -172,7 +172,7 @@ demo = gr.ChatInterface(
172
  "to the appendix in our [paper](https://arxiv.org/abs/2505.23058)."
173
  ),
174
  gr.Slider(16, 2048, value=512, step=16, label="max_new_tokens"),
175
- gr.Slider(0.1, 1.5, value=0.6, step=0.05, label="temperature"),
176
  ],
177
  title="Be.FM: Open Foundation Models for Human Behavior (8B)",
178
  )
 
172
  "to the appendix in our [paper](https://arxiv.org/abs/2505.23058)."
173
  ),
174
  gr.Slider(16, 2048, value=512, step=16, label="max_new_tokens"),
175
+ gr.Slider(0.1, 1.5, value=0.7, step=0.05, label="temperature"),
176
  ],
177
  title="Be.FM: Open Foundation Models for Human Behavior (8B)",
178
  )