@beastmode-develeap/beastmode 0.1.81 → 0.1.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/web/board.html +3 -1
- package/package.json +1 -1
package/dist/web/board.html
CHANGED
|
@@ -5281,7 +5281,8 @@ function SettingsPage() {
|
|
|
5281
5281
|
const humanGates = config.human_gates || {};
|
|
5282
5282
|
|
|
5283
5283
|
const MODEL_OPTIONS = [
|
|
5284
|
-
'claude-opus-4-
|
|
5284
|
+
'claude-opus-4-7', 'claude-sonnet-4-6', 'claude-haiku-4-5',
|
|
5285
|
+
'claude-opus-4-6',
|
|
5285
5286
|
];
|
|
5286
5287
|
|
|
5287
5288
|
const PRESET_OPTIONS = ['full', 'lean', 'prototype', 'infra', 'docs'];
|
|
@@ -5394,6 +5395,7 @@ function SettingsPage() {
|
|
|
5394
5395
|
<div><div class="setting-label" style="text-transform:capitalize">${stage.replace(/_/g, ' ')}</div></div>
|
|
5395
5396
|
<div class="setting-control">
|
|
5396
5397
|
<select class="form-input" style="width:200px" value=${models[stage] || 'claude-sonnet-4-6'}
|
|
5398
|
+
|
|
5397
5399
|
onChange=${e => updateField('models.' + stage, e.target.value)}>
|
|
5398
5400
|
${MODEL_OPTIONS.map(m => html`<option key=${m} value=${m}>${m}</option>`)}
|
|
5399
5401
|
</select>
|